Home
last modified time | relevance | path

Searched refs:nSelectors (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/bzip2/
H A Dcompress.c242 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local
342 nSelectors = 0; in sendMTFValues()
404 s->selector[nSelectors] = bt; in sendMTFValues()
405 nSelectors++; in sendMTFValues()
456 AssertH( nSelectors < 32768 && in sendMTFValues()
457 nSelectors <= BZ_MAX_SELECTORS, in sendMTFValues()
465 for (i = 0; i < nSelectors; i++) { in sendMTFValues()
520 bsW ( s, 15, nSelectors ); in sendMTFValues()
521 for (i = 0; i < nSelectors; i++) { in sendMTFValues()
594 AssertH( selCtr == nSelectors, 3007 ); in sendMTFValues()
H A Ddecompress.c78 if (groupNo >= nSelectors) \
119 Int32 nSelectors; in BZ2_decompress() local
173 nSelectors = s->save_nSelectors; in BZ2_decompress()
289 GET_BITS(BZ_X_SELECTOR_2, nSelectors, 15); in BZ2_decompress()
290 if (nSelectors < 1) RETURN(BZ_DATA_ERROR); in BZ2_decompress()
291 for (i = 0; i < nSelectors; i++) { in BZ2_decompress()
305 if (nSelectors > BZ_MAX_SELECTORS) in BZ2_decompress()
306 nSelectors = BZ_MAX_SELECTORS; in BZ2_decompress()
313 for (i = 0; i < nSelectors; i++) { in BZ2_decompress()
626 s->save_nSelectors = nSelectors; in BZ2_decompress()
H A DCHANGES340 * Make sure nSelectors is not out of range (CVE-2019-12900)