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

  /external/lzma/CPP/7zip/Compress/
LzmaDecoder.cpp 97 SizeT next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPos + _outBufSize);
106 SizeT dicPos = _state.dicPos;
107 SizeT curSize = next - dicPos;
123 SRes res = LzmaDec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
127 SizeT outSizeProcessed = _state.dicPos - dicPos;
133 if (res != 0 || _state.dicPos == next || finished || stopDecoding)
135 HRESULT res2 = WriteStream(outStream, _state.dic + _wrPos, _state.dicPos - _wrPos);
    [all...]
Lzma2Decoder.cpp 91 SizeT dicPos = _state.decoder.dicPos;
92 SizeT curSize = _state.decoder.dicBufSize - dicPos;
113 SRes res = Lzma2Dec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
117 SizeT outSizeProcessed = _state.decoder.dicPos - dicPos;
123 if (res != 0 || _state.decoder.dicPos == _state.decoder.dicBufSize || finished || stopDecoding)
125 HRESULT res2 = WriteStream(outStream, _state.decoder.dic, _state.decoder.dicPos);
134 if (_state.decoder.dicPos == _state.decoder.dicBufSize)
135 _state.decoder.dicPos = 0;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaDec.c 149 SizeT dicPos = p->dicPos;
174 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc))));
183 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
197 dic[dicPos++] = (Byte)symbol;
227 dic[dicPos] = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
    [all...]
LzmaDec.h 53 SizeT dicPos;
151 use data from CLzmaDec::dic and update CLzmaDec::dicPos
160 You must manually update CLzmaDec::dicPos, if it reaches CLzmaDec::dicBufSize !!!
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.c 168 SizeT dicPos = p->dicPos;
193 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc))));
202 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
216 dic[dicPos++] = (Byte)symbol;
246 dic[dicPos] = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
    [all...]
LzmaDec.h 53 SizeT dicPos;
151 use data from CLzmaDec::dic and update CLzmaDec::dicPos
160 You must manually update CLzmaDec::dicPos, if it reaches CLzmaDec::dicBufSize !!!
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.c 168 SizeT dicPos = p->dicPos;
193 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc))));
202 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
216 dic[dicPos++] = (Byte)symbol;
246 dic[dicPos] = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
    [all...]
LzmaDec.h 53 SizeT dicPos;
151 use data from CLzmaDec::dic and update CLzmaDec::dicPos
160 You must manually update CLzmaDec::dicPos, if it reaches CLzmaDec::dicBufSize !!!
  /external/lzma/C/
LzmaDec.c 152 SizeT dicPos = p->dicPos;
177 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc))));
198 unsigned matchByte = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
225 dic[dicPos++] = (Byte)symbol;
252 dic[dicPos] = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
    [all...]
Lzma2Dec.c 106 PRF(printf("\n %4X ", p->decoder.dicPos));
163 memcpy(p->dic + p->dicPos, src, size);
164 p->dicPos += size;
181 SizeT dicPos = p->decoder.dicPos;
184 if (dicPos == dicLimit && finishMode == LZMA_FINISH_ANY)
201 SizeT destSizeCur = dicLimit - dicPos;
264 res = LzmaDec_DecodeToDic(&p->decoder, dicPos + destSizeCur, src, &srcSizeCur, curFinishMode, status);
270 outSizeProcessed = p->decoder.dicPos - dicPos;
    [all...]
7zDec.c 152 SizeT inProcessed = (SizeT)lookahead, dicPos = state.dicPos;
159 if (state.dicPos == state.dicBufSize || (inProcessed == 0 && dicPos == state.dicPos))
202 SizeT inProcessed = (SizeT)lookahead, dicPos = state.decoder.dicPos;
209 if (state.decoder.dicPos == state.decoder.dicBufSize || (inProcessed == 0 && dicPos == state.decoder.dicPos))
    [all...]
LzmaDec.h 55 SizeT dicPos;
153 use data from CLzmaDec::dic and update CLzmaDec::dicPos
162 You must manually update CLzmaDec::dicPos, if it reaches CLzmaDec::dicBufSize !!!

Completed in 541 milliseconds