HomeSort by relevance Sort by last modified time
    Searched refs:dicBufSize (Results 1 - 6 of 6) sorted by null

  /external/lzma/C/
LzmaDec.c 151 SizeT dicBufSize = p->dicBufSize;
177 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc))));
198 unsigned matchByte = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
252 dic[dicPos] = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
415 SizeT pos = (dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0);
420 if (pos + curLen <= dicBufSize)
435 if (++pos == dicBufSize)
466 SizeT dicBufSize = p->dicBufSize;
    [all...]
LzmaDec.h 56 SizeT dicBufSize;
162 You must manually update CLzmaDec::dicPos, if it reaches CLzmaDec::dicBufSize !!!
7zDec.c 138 state.dicBufSize = outSize;
159 if (state.dicPos == state.dicBufSize || (inProcessed == 0 && dicPos == state.dicPos))
161 if (state.dicBufSize != outSize || lookahead != 0 ||
188 state.decoder.dicBufSize = outSize;
209 if (state.decoder.dicPos == state.decoder.dicBufSize || (inProcessed == 0 && dicPos == state.decoder.dicPos))
211 if (state.decoder.dicBufSize != outSize || lookahead != 0 ||
Lzma2Dec.c 302 if (p->decoder.dicPos == p->decoder.dicBufSize)
305 if (outSize > p->decoder.dicBufSize - dicPos)
307 outSizeCur = p->decoder.dicBufSize;
343 p.decoder.dicBufSize = outSize;
  /external/lzma/CPP/7zip/Compress/
LzmaDecoder.cpp 97 SizeT next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPos + _outBufSize);
138 if (_state.dicPos == _state.dicBufSize)
143 next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPos + _outBufSize);
Lzma2Decoder.cpp 92 SizeT curSize = _state.decoder.dicBufSize - dicPos;
123 if (res != 0 || _state.decoder.dicPos == _state.decoder.dicBufSize || finished || stopDecoding)
134 if (_state.decoder.dicPos == _state.decoder.dicBufSize)

Completed in 96 milliseconds