Lines Matching refs:base
10 #define CHECKRETURN(b) if(width <= ((b) * 32)) return(base + (b))
12 #define CHECKRETURN(b) if(width <= ((b) * 32)) return(base)
39 # define WRITE_BITS(b) *base = SWAP_BITS_IN_BYTES(b)
41 *base = byte_reversed_expand3[(b) & 0xFF] | \
44 *base = byte_reversed_expand3[(b) & 0xFF] | \
46 *base = byte_reversed_expand3[((b) & 0xFF00) >> 8] >> 8 | \
49 *base = byte_reversed_expand3[(b) & 0xFF] | \
51 *base = byte_reversed_expand3[((b) & 0xFF00) >> 8] >> 8 | \
53 *base = byte_reversed_expand3[((b) & 0xFF0000) >> 16] >> 16 | \
56 # define WRITE_BITS(b) *base = (b)
58 *base = byte_expand3[(b) & 0xFF] | \
61 *base = byte_expand3[(b) & 0xFF] | \
63 *base = byte_expand3[((b) & 0xFF00) >> 8] >> 8 | \
66 *base = byte_expand3[(b) & 0xFF] | \
68 *base = byte_expand3[((b) & 0xFF00) >> 8] >> 8 | \
70 *base = byte_expand3[((b) & 0xFF0000) >> 16] >> 16 | \
75 # define WRITE_BITS(b) *(base++) = SWAP_BITS_IN_BYTES(b)
77 *(base++) = byte_reversed_expand3[(b) & 0xFF] | \
80 *(base) = byte_reversed_expand3[(b) & 0xFF] | \
82 *(base + 1) = byte_reversed_expand3[((b) & 0xFF00) >> 8] >> 8 | \
84 base += 2; }
86 *(base) = byte_reversed_expand3[(b) & 0xFF] | \
88 *(base + 1) = byte_reversed_expand3[((b) & 0xFF00) >> 8] >> 8 | \
90 *(base + 2) = byte_reversed_expand3[((b) & 0xFF0000) >> 16] >> 16 | \
92 base += 3; }
94 # define WRITE_BITS(b) *(base++) = (b)
96 *(base++) = byte_expand3[(b) & 0xFF] | \
99 *(base) = byte_expand3[(b) & 0xFF] | \
101 *(base + 1) = byte_expand3[((b) & 0xFF00) >> 8] >> 8 | \
103 base += 2; }
105 *(base) = byte_expand3[(b) & 0xFF] | \
107 *(base + 1) = byte_expand3[((b) & 0xFF00) >> 8] >> 8 | \
109 *(base + 2) = byte_expand3[((b) & 0xFF0000) >> 16] >> 16 | \
111 base += 3; }