Lines Matching refs:LZMA_IN_REQUIRED
1200 #define LZMA_IN_REQUIRED 21
1436 uint8_t buf[3 * LZMA_IN_REQUIRED];
1883 * LZMA_IN_REQUIRED - 1 bytes.
1984 * been exceeded, it is safe to read up to LZMA_IN_REQUIRED bytes. This
1989 * there's LZMA_IN_REQUIRED bytes left. Those remaining bytes are copied into
2001 tmp = 2 * LZMA_IN_REQUIRED - s->temp.size;
2014 } else if (s->temp.size + tmp < LZMA_IN_REQUIRED) {
2019 s->rc.in_limit = s->temp.size + tmp - LZMA_IN_REQUIRED;
2042 if (in_avail >= LZMA_IN_REQUIRED) {
2046 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED)
2049 s->rc.in_limit = b->in_size - LZMA_IN_REQUIRED;
2062 if (in_avail < LZMA_IN_REQUIRED) {