Home | History | Annotate | Download | only in stbi

Lines Matching defs:fast

1091 //      - still fast on x86 (copying globals into locals doesn't help x86)
1099 // - fast huffman; reasonable integer IDCT
1113 uint8 fast[1 << FAST_BITS];
1188 memset(h->fast, 255, 1 << FAST_BITS);
1195 h->fast[c+j] = (uint8) i;
1233 k = h->fast[c];
1446 // no fast case since the first 1D IDCT spread components out
2182 // - fast huffman
2184 // fast-way is faster to check than jpeg huffman, but slow way is slower
2192 uint16 fast[1 << ZFAST_BITS];
2224 memset(z->fast, 255, sizeof(z->fast));
2252 z->fast[m] = (uint16) c;
2311 b = z->fast[a->code_buffer & ZFAST_MASK];
2319 // not resolved by fast table, so compute it the slow way
2651 // - uses stb_zlib, a PD zlib implementation with fast huffman decoding