Searched refs:dicLimit (Results 1 - 5 of 5) sorted by relevance
/third_party/lzma/C/ |
H A D | Lzma2Dec.c | 176 SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit,
in Lzma2Dec_DecodeToDic() argument 195 if (dicPos == dicLimit && finishMode == LZMA_FINISH_ANY)
in Lzma2Dec_DecodeToDic() 210 if (dicPos == dicLimit && p->state != LZMA2_STATE_FINISHED)
in Lzma2Dec_DecodeToDic() 217 SizeT outCur = dicLimit - dicPos;
in Lzma2Dec_DecodeToDic()
|
H A D | Lzma2Dec.h | 36 It has meaning only if the decoding reaches output limit (*destLen or dicLimit).
49 SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit,
|
H A D | LzmaDec.h | 173 It has meaning only if the decoding reaches output limit (dicLimit).
174 LZMA_FINISH_ANY - Decode just dicLimit bytes.
175 LZMA_FINISH_END - Stream must be finished after dicLimit.
188 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit,
|
H A D | LzmaDec.c | 933 When the decoder reaches dicLimit, it looks (finishMode) parameter:
952 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen,
in LzmaDec_DecodeToDic() argument 1011 LzmaDec_WriteRem(p, dicLimit);
in LzmaDec_DecodeToDic() 1014 // (p->remainLen == 0 || p->dicPos == dicLimit)
in LzmaDec_DecodeToDic() 1018 if (p->dicPos >= dicLimit)
in LzmaDec_DecodeToDic() 1087 int res = LzmaDec_DecodeReal2(p, dicLimit, bufLimit);
in LzmaDec_DecodeToDic() 1161 int res = LzmaDec_DecodeReal2(p, dicLimit, p->buf);
in LzmaDec_DecodeToDic()
|
H A D | XzDec.c | 427 SizeT dicLimit = dicPos + *destLen;
in Lzma2State_Code2() local 428 res = Lzma2Dec_DecodeToDic(&spec->decoder, dicLimit, src, srcLen, (ELzmaFinishMode)finishMode, &status2);
in Lzma2State_Code2()
|
Completed in 7 milliseconds