Home
last modified time | relevance | path

Searched refs:BCJ2_STREAM_RC (Results 1 – 4 of 4) sorted by relevance

/external/lzma/C/
DBcj2.c43 if (p->bufs[BCJ2_STREAM_RC] == p->lims[BCJ2_STREAM_RC]) in Bcj2Dec_Decode()
45 p->state = BCJ2_STREAM_RC; in Bcj2Dec_Decode()
49 p->code = (p->code << 8) | *(p->bufs[BCJ2_STREAM_RC])++; in Bcj2Dec_Decode()
113 if (p->bufs[BCJ2_STREAM_RC] == p->lims[BCJ2_STREAM_RC]) in Bcj2Dec_Decode()
115 p->state = BCJ2_STREAM_RC; in Bcj2Dec_Decode()
119 p->code = (p->code << 8) | *(p->bufs[BCJ2_STREAM_RC])++; in Bcj2Dec_Decode()
250 if (p->range < kTopValue && p->bufs[BCJ2_STREAM_RC] != p->lims[BCJ2_STREAM_RC]) in Bcj2Dec_Decode()
253 p->code = (p->code << 8) | *(p->bufs[BCJ2_STREAM_RC])++; in Bcj2Dec_Decode()
DBcj2Enc.c59 Byte *buf = p->bufs[BCJ2_STREAM_RC]; in RangeEnc_ShiftLow()
62 if (buf == p->lims[BCJ2_STREAM_RC]) in RangeEnc_ShiftLow()
64 p->state = BCJ2_STREAM_RC; in RangeEnc_ShiftLow()
65 p->bufs[BCJ2_STREAM_RC] = buf; in RangeEnc_ShiftLow()
72 p->bufs[BCJ2_STREAM_RC] = buf; in RangeEnc_ShiftLow()
DBcj2.h18 BCJ2_STREAM_RC enumerator
/external/lzma/CPP/7zip/Compress/
DBcj2Coder.cpp247 if (enc.state == BCJ2_STREAM_RC) in CodeReal()
289 … UInt64 outSize2 = currentInPos + outSizeRc + enc.bufs[BCJ2_STREAM_RC] - enc.bufs[BCJ2_STREAM_RC]; in CodeReal()
469 … inSize2 = outSize2 + _inStreamsProcessed[BCJ2_STREAM_RC] - (dec.lims[BCJ2_STREAM_RC] - dec.bufs[B… in Code()