Lines Matching defs:used

13       names of its contributors may be used to endorse or promote products
47 // its contributors may be used to endorse or promote products derived
621 would only have occured in earlier versions if you explicitly used this
622 flag, OR if you used mz_zip_extract_archive_file_to_heap() or
624 (which used this flag). If you can't switch to v1.15 but want to fix
775 example) can be used to identify
914 // MINIZ_X86_OR_X64_CPU is only used to help set the below macros.
1060 mz_ulong reserved; // not used
1191 // Redefine zlib-compatible names to miniz equivalents, so miniz.c can be used
1454 // file if mz_zip_reader_init_file() was used.
1534 // mz_zip_writer_init_file() was used.
1562 // Decompression flags used by tinfl_decompress().
1641 // This is a universal API, i.e. it can be used as a building block to build any
1823 // The low-level tdefl functions below may be used directly if the above helper
2492 // TINFL_HUFF_BITBUF_FILL() is only used rarely, when the number of bytes
3222 int root, leaf, next, avbl, used, dpth;
3248 used = dpth = 0;
3253 used++;
3256 while (avbl > used) {
3260 avbl = 2 * used;
3262 used = 0;
4485 #pragma warning(disable : 4204) // nonstandard extension used : non-constant
4989 // Heap sort of lowercased filenames, used to help accelerate plain central
7677 #pragma warning(disable : 4204) // nonstandard extension used : non-constant
8382 // - encoding tables are used by hufEncode() and hufBuildDecTable();
8695 // - decoding tables are used by hufDecode();
11805 // TODO(syoyo): Refactor removing same code as used in LoadEXR().