Searched refs:FAST_BITS (Results 1 - 1 of 1) sorted by relevance

/netbsd-current/sys/dev/stbi/
H A Dstb_image.c1109 #define FAST_BITS 9 // larger handles more cases; smaller stomps less cache macro
1113 uint8 fast[1 << FAST_BITS];
1188 memset(h->fast, 255, 1 << FAST_BITS);
1191 if (s <= FAST_BITS) {
1192 int c = h->code[i] << (FAST_BITS-s);
1193 int m = 1 << (FAST_BITS-s);
1230 // look at the top FAST_BITS and determine what symbol ID it is,
1231 // if the code is <= FAST_BITS
1232 c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)
[all...]

Completed in 131 milliseconds