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