gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:_BIT_SET_N (0.00 seconds)
mtkernel_3
kernel/tstdlib/bitop.c - 2.9KB - 117 lines
23: #if BIGENDIAN
24: #define _BIT_SET_N(n) ( (UB)0x80 >> ((n) & 7) )
25: #define _BIT_SHIFT(n) ( (UB)n >> 1 )
26: #else
27: #define _BIT_SET_N(n) ( (UB)0x01 << ((n) & 7) )
28: #define _BIT_SHIFT(n) ( (UB)n << 1 )