Lines Matching defs:memLevel
383 int windowBits, int memLevel, int strategy,
429 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
447 s->hash_bits = (uInt)memLevel + 7;
458 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
816 * For the default windowBits of 15 and memLevel of 8, this function returns a
820 * For any setting other than those defaults for windowBits and memLevel, one
825 * one is for stored blocks of 16383 bytes (memLevel == 8), whereas the second
826 * is for stored blocks of 127 bytes (the worst case memLevel == 1). The
830 * the symbols buffer size (windowBits <= memLevel + 7). In that case some of
835 * which this can occur is 255 (memLevel == 2).
845 (memLevel == 2, which is the lowest that may not use stored blocks) --
850 /* upper bound for stored blocks with length 127 (memLevel == 1) --
1641 * this is 32K. This can be as small as 507 bytes for memLevel == 1. For