Symbol: fc_cell_t
usr/src/uts/sun4/io/efcode/fcode.c
645
if (copyin((void *)arg, &tc, 3 * sizeof (fc_cell_t))) {
usr/src/uts/sun4/io/efcode/fcode.c
657
csize = (FCC_FIXED_CELLS + nargs + nresults) * sizeof (fc_cell_t);
usr/src/uts/sun4/io/efcode/fcode.c
662
if (copyin((void *)arg, cp, csize - (nresults * sizeof (fc_cell_t)))) {
usr/src/uts/sun4/io/efcode/fcode.c
713
error = copyout(&cp->error, &ap->error, sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
715
sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
731
error = copyout(&cp->error, &ap->error, sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
733
sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
735
sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
756
error = copyout(&cp->nresults, &ap->nresults, sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
757
error |= copyout(&cp->error, &ap->error, sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
758
error |= copyout(&cp->priv_error, &ap->priv_error, sizeof (fc_cell_t));
usr/src/uts/sun4/io/efcode/fcode.c
761
cp->nresults * sizeof (fc_cell_t));
usr/src/uts/sun4/sys/fc_plat.h
64
#define fc_ptr2cell(p) ((fc_cell_t)((uintptr_t)((void *)(p))))
usr/src/uts/sun4/sys/fc_plat.h
65
#define fc_int2cell(i) ((fc_cell_t)((int)(i)))
usr/src/uts/sun4/sys/fc_plat.h
66
#define fc_uint2cell(u) ((fc_cell_t)((unsigned int)(u)))
usr/src/uts/sun4/sys/fc_plat.h
67
#define fc_uint32_t2cell(u) ((fc_cell_t)((unsigned int)((uint32_t)(u))))
usr/src/uts/sun4/sys/fc_plat.h
68
#define fc_uint16_t2cell(w) ((fc_cell_t)((unsigned int)((uint16_t)(w))))
usr/src/uts/sun4/sys/fc_plat.h
69
#define fc_uint8_t2cell(b) ((fc_cell_t)((unsigned int)((uint8_t)(b))))
usr/src/uts/sun4/sys/fc_plat.h
70
#define fc_size2cell(u) ((fc_cell_t)((size_t)(u)))
usr/src/uts/sun4/sys/fc_plat.h
71
#define fc_ssize2cell(i) ((fc_cell_t)((ssize_t)(i)))
usr/src/uts/sun4/sys/fc_plat.h
72
#define fc_phandle2cell(ph) ((fc_cell_t)((unsigned int)((phandle_t)(ph))))
usr/src/uts/sun4/sys/fc_plat.h
73
#define fc_dnode2cell(d) ((fc_cell_t)((unsigned int)((pnode_t)(d))))
usr/src/uts/sun4/sys/fc_plat.h
75
#define fc_ull2cell_low(ll) ((fc_cell_t)(ll))
usr/src/uts/sun4/sys/fc_plat.h
76
#define fc_uintptr2cell(i) ((fc_cell_t)((uintptr_t)(i)))
usr/src/uts/sun4/sys/fc_plat.h
77
#define fc_uchar2cell(c) ((fc_cell_t)((unsigned char)(c)))
usr/src/uts/sun4/sys/fc_plat.h
78
#define fc_ushort2cell(w) ((fc_cell_t)((unsigned short)(w)))
usr/src/uts/sun4/sys/fc_plat.h
79
#define fc_ihandle2cell(h) ((fc_cell_t)((fc_ihandle_t)(h)))
usr/src/uts/sun4/sys/fc_plat.h
81
#define fc_cell2ptr(p) ((void *)((fc_cell_t)(p)))
usr/src/uts/sun4/sys/fc_plat.h
82
#define fc_cell2int(i) ((int)((fc_cell_t)(i)))
usr/src/uts/sun4/sys/fc_plat.h
83
#define fc_cell2uint(u) ((unsigned int)((fc_cell_t)(u)))
usr/src/uts/sun4/sys/fc_plat.h
84
#define fc_cell2uint32_t(u) ((uint32_t)((fc_cell_t)(u)))
usr/src/uts/sun4/sys/fc_plat.h
85
#define fc_cell2uint16_t(w) ((uint16_t)((fc_cell_t)(w)))
usr/src/uts/sun4/sys/fc_plat.h
86
#define fc_cell2uint8_t(b) ((uint8_t)((fc_cell_t)(b)))
usr/src/uts/sun4/sys/fc_plat.h
87
#define fc_cell2size(u) ((size_t)((fc_cell_t)(u)))
usr/src/uts/sun4/sys/fc_plat.h
88
#define fc_cell2ssize(i) ((ssize_t)((fc_cell_t)(i)))
usr/src/uts/sun4/sys/fc_plat.h
89
#define fc_cell2phandle(ph) ((phandle_t)((fc_cell_t)(ph)))
usr/src/uts/sun4/sys/fc_plat.h
90
#define fc_cell2dnode(d) ((pnode_t)((fc_cell_t)(d)))
usr/src/uts/sun4/sys/fc_plat.h
91
#define fc_cells2ull(h, l) ((unsigned long long)(fc_cell_t)(l))
usr/src/uts/sun4/sys/fc_plat.h
92
#define fc_cell2uintptr(i) ((uintptr_t)((fc_cell_t)(i)))
usr/src/uts/sun4/sys/fc_plat.h
93
#define fc_cell2uchar(c) ((unsigned char)(fc_cell_t)(c))
usr/src/uts/sun4/sys/fc_plat.h
94
#define fc_cell2ushort(w) ((unsigned short)(fc_cell_t)(w))
usr/src/uts/sun4/sys/fc_plat.h
95
#define fc_cell2ihandle(h) ((fc_ihandle_t)(fc_cell_t)(h))
usr/src/uts/sun4/sys/fcode.h
143
fc_cell_t svc_name;
usr/src/uts/sun4/sys/fcode.h
144
fc_cell_t nargs;
usr/src/uts/sun4/sys/fcode.h
145
fc_cell_t nresults;
usr/src/uts/sun4/sys/fcode.h
146
fc_cell_t error;
usr/src/uts/sun4/sys/fcode.h
147
fc_cell_t priv_error;
usr/src/uts/sun4/sys/fcode.h
148
fc_cell_t v[1]; /* variable array of args and results */