Lines Matching defs:memLevel
392 int windowBits, int memLevel, int strategy,
447 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
470 s->hash_bits = memLevel + 7;
494 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
849 * For the default windowBits of 15 and memLevel of 8, this function returns a
853 * For any setting other than those defaults for windowBits and memLevel, one
858 * one is for stored blocks of 16383 bytes (memLevel == 8), whereas the second
859 * is for stored blocks of 127 bytes (the worst case memLevel == 1). The
863 * the symbols buffer size (windowBits <= memLevel + 7). In that case some of
868 * which this can occur is 255 (memLevel == 2).
877 (memLevel == 2, which is the lowest that may not use stored blocks) --
882 /* upper bound for stored blocks with length 127 (memLevel == 1) --
1686 * this is 32K. This can be as small as 507 bytes for memLevel == 1. For