Home
last modified time | relevance | path

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

/external/u-boot/lib/lzma/
DLzmaDec.c149 UInt32 checkDicSize = p->checkDicSize; in LzmaDec_DecodeReal() local
171 if (checkDicSize != 0 || processedPos != 0) in LzmaDec_DecodeReal()
221 if (checkDicSize == 0 && processedPos == 0) in LzmaDec_DecodeReal()
383 if (checkDicSize == 0) in LzmaDec_DecodeReal()
388 else if (distance >= checkDicSize) in LzmaDec_DecodeReal()
466 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len) in LzmaDec_WriteRem()
467 p->checkDicSize = p->prop.dicSize; in LzmaDec_WriteRem()
485 if (p->checkDicSize == 0) in LzmaDec_DecodeReal2()
493 p->checkDicSize = p->prop.dicSize; in LzmaDec_DecodeReal2()
536 if (p->checkDicSize != 0 || p->processedPos != 0) in LzmaDec_TryDummy()
[all …]
DLzmaDec.h56 UInt32 checkDicSize; member
/external/lzma/C/
DLzmaDec.c232 UInt32 checkDicSize = p->checkDicSize; in LZMA_DECODE_REAL() local
252 if (processedPos != 0 || checkDicSize != 0) in LZMA_DECODE_REAL()
519 if (distance >= (checkDicSize == 0 ? processedPos: checkDicSize)) in LZMA_DECODE_REAL()
601 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len) in LzmaDec_WriteRem()
602 p->checkDicSize = p->prop.dicSize; in LzmaDec_WriteRem()
629 if (p->checkDicSize == 0) in LzmaDec_DecodeReal2()
642 if (p->checkDicSize == 0 && p->processedPos >= p->prop.dicSize) in LzmaDec_DecodeReal2()
643 p->checkDicSize = p->prop.dicSize; in LzmaDec_DecodeReal2()
683 if (p->checkDicSize != 0 || p->processedPos != 0) in LzmaDec_TryDummy()
861 p->checkDicSize = 0; in LzmaDec_InitDicAndState()
DLzmaDec.h66 UInt32 checkDicSize; member
DLzma2Dec.c167 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= size) in LzmaDec_UpdateWithUncompressed()
168 p->checkDicSize = p->prop.dicSize; in LzmaDec_UpdateWithUncompressed()
/external/lzma/Asm/x86/
DLzmaDecOpt.asm525 checkDicSize dd ? define
550 checkDicSize dd ? define
672 mov x1, GLOB_2 checkDicSize
673 mov LOC_0 checkDicSize, x1
686 ; if (processedPos != 0 || checkDicSize != 0)
891 ; if (distance >= (checkDicSize == 0 ? processedPos: checkDicSize))
893 mov t0, LOC checkDicSize
1111 …; The (checkDicSize == 0 && processedPos == 0) case was checked before in LzmaDec.c with kBadRepCo…