Lines Matching defs:cell_t
44 typedef uint64_t cell_t;
46 #define HDL2CELL(x) (cell_t)(u_int)(int)(x)
47 #define ADR2CELL(x) (cell_t)(x)
49 #define HDL2CELL(x) (cell_t)(u_int)(int)(x)
50 #define ADR2CELL(x) (cell_t)(u_int)(int)(x)
52 #define HDQ2CELL_HI(x) (cell_t)(0)
53 #define HDQ2CELL_LO(x) (cell_t)(x)
57 typedef uint32_t cell_t;
58 #define HDL2CELL(x) (cell_t)(x)
59 #define ADR2CELL(x) (cell_t)(x)
60 #define HDQ2CELL_HI(x) (cell_t)((x) >> 32)
61 #define HDQ2CELL_LO(x) (cell_t)(x)