Lines Matching defs:LZMA_IN_REQUIRED
1194 #define LZMA_IN_REQUIRED 21
1430 uint8_t buf[3 * LZMA_IN_REQUIRED];
1877 * LZMA_IN_REQUIRED - 1 bytes.
1978 * been exceeded, it is safe to read up to LZMA_IN_REQUIRED bytes. This
1983 * there's LZMA_IN_REQUIRED bytes left. Those remaining bytes are copied into
1995 tmp = 2 * LZMA_IN_REQUIRED - s->temp.size;
2008 } else if (s->temp.size + tmp < LZMA_IN_REQUIRED) {
2013 s->rc.in_limit = s->temp.size + tmp - LZMA_IN_REQUIRED;
2036 if (in_avail >= LZMA_IN_REQUIRED) {
2040 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED)
2043 s->rc.in_limit = b->in_size - LZMA_IN_REQUIRED;
2056 if (in_avail < LZMA_IN_REQUIRED) {