Home
last modified time | relevance | path

Searched refs:dicBufSize (Results 1 – 6 of 6) sorted by relevance

/external/lzma/C/
DLzmaDec.c151 SizeT dicBufSize = p->dicBufSize; in LzmaDec_DecodeReal() local
177 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc)))); in LzmaDec_DecodeReal()
199 unsigned matchByte = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)]; in LzmaDec_DecodeReal()
253 dic[dicPos] = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)]; in LzmaDec_DecodeReal()
468 pos = dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0); in LzmaDec_DecodeReal()
473 if (curLen <= dicBufSize - pos) in LzmaDec_DecodeReal()
488 if (++pos == dicBufSize) in LzmaDec_DecodeReal()
521 SizeT dicBufSize = p->dicBufSize; in LzmaDec_WriteRem() local
536 dic[dicPos] = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)]; in LzmaDec_WriteRem()
604 (p->dic[(p->dicPos == 0 ? p->dicBufSize : p->dicPos) - 1] >> (8 - p->prop.lc)))); in LzmaDec_TryDummy()
[all …]
DLzma2Dec.c328 if (p->decoder.dicPos == p->decoder.dicBufSize) in Lzma2Dec_DecodeToBuf()
331 if (outSize > p->decoder.dicBufSize - dicPos) in Lzma2Dec_DecodeToBuf()
333 outSizeCur = p->decoder.dicBufSize; in Lzma2Dec_DecodeToBuf()
369 p.decoder.dicBufSize = outSize; in Lzma2Decode()
DLzmaDec.h56 SizeT dicBufSize; member
D7zDec.c143 state.dicBufSize = outSize; in SzDecodeLzma()
205 state.decoder.dicBufSize = outSize; in SzDecodeLzma2()
/external/lzma/CPP/7zip/Compress/
DLzma2Decoder.cpp105 SizeT next = (_state.decoder.dicBufSize - _state.decoder.dicPos < step) ? in Code()
106 _state.decoder.dicBufSize : in Code()
156 if (_state.decoder.dicPos == _state.decoder.dicBufSize) in Code()
161 next = (_state.decoder.dicBufSize - _state.decoder.dicPos < step) ? in Code()
162 _state.decoder.dicBufSize : in Code()
DLzmaDecoder.cpp99 …SizeT next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPo… in CodeSpec()
140 if (_state.dicPos == _state.dicBufSize) in CodeSpec()
145 …next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPos + _o… in CodeSpec()