Symbol: boot_cell_t
usr/src/uts/sun/sys/bootconf.h
150
#define boot_ptr2cell(p) ((boot_cell_t)((uintptr_t)((void *)(p))))
usr/src/uts/sun/sys/bootconf.h
151
#define boot_int2cell(i) ((boot_cell_t)((int)(i)))
usr/src/uts/sun/sys/bootconf.h
152
#define boot_uint2cell(u) ((boot_cell_t)((unsigned int)(u)))
usr/src/uts/sun/sys/bootconf.h
153
#define boot_uint642cell(u) ((boot_cell_t)((uint64_t)(u)))
usr/src/uts/sun/sys/bootconf.h
154
#define boot_offt2cell(u) ((boot_cell_t)((off_t)(u)))
usr/src/uts/sun/sys/bootconf.h
155
#define boot_size2cell(u) ((boot_cell_t)((size_t)(u)))
usr/src/uts/sun/sys/bootconf.h
156
#define boot_phandle2cell(ph) ((boot_cell_t)((unsigned)((phandle_t)(ph))))
usr/src/uts/sun/sys/bootconf.h
157
#define boot_dnode2cell(d) ((boot_cell_t)((unsigned)((pnode_t)(d))))
usr/src/uts/sun/sys/bootconf.h
158
#define boot_ihandle2cell(ih) ((boot_cell_t)((unsigned)((ihandle_t)(ih))))
usr/src/uts/sun/sys/bootconf.h
160
#define boot_cell2ptr(p) ((void *)(uintptr_t)((boot_cell_t)(p)))
usr/src/uts/sun/sys/bootconf.h
161
#define boot_cell2int(i) ((int)((boot_cell_t)(i)))
usr/src/uts/sun/sys/bootconf.h
162
#define boot_cell2uint(u) ((unsigned int)((boot_cell_t)(u)))
usr/src/uts/sun/sys/bootconf.h
163
#define boot_cell2uint64(u) ((uint64_t)((boot_cell_t)(u)))
usr/src/uts/sun/sys/bootconf.h
164
#define boot_cell2offt(u) ((off_t)((boot_cell_t)(u)))
usr/src/uts/sun/sys/bootconf.h
165
#define boot_cell2size(u) ((size_t)((boot_cell_t)(u)))
usr/src/uts/sun/sys/bootconf.h
166
#define boot_cell2phandle(ph) ((phandle_t)((boot_cell_t)(ph)))
usr/src/uts/sun/sys/bootconf.h
167
#define boot_cell2dnode(d) ((pnode_t)((boot_cell_t)(d)))
usr/src/uts/sun/sys/bootconf.h
168
#define boot_cell2ihandle(ih) ((ihandle_t)((boot_cell_t)(ih)))
usr/src/uts/sun/sys/bootconf.h
169
#define boot_cells2ull(h, l) ((unsigned long long)(boot_cell_t)(l))