Searched refs:checkDicSize (Results 1 - 5 of 5) sorted by relevance
/third_party/lzma/C/ |
H A D | LzmaDec.c | 248 UInt32 checkDicSize = p->checkDicSize;
in LZMA_DECODE_REAL() local 268 if (processedPos != 0 || checkDicSize != 0)
in LZMA_DECODE_REAL() 345 // if (checkDicSize == 0 && processedPos == 0) { len = kMatchSpecLen_Error_Data + 1; break; }
in LZMA_DECODE_REAL() 537 if (distance >= (checkDicSize == 0 ? processedPos: checkDicSize))
in LZMA_DECODE_REAL() 636 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= len)
in LzmaDec_WriteRem() 637 p->checkDicSize = p->prop.dicSize;
in LzmaDec_WriteRem() 673 It calls LZMA_DECODE_REAL() and it adjusts limit according (p->checkDicSize).
675 We correct (p->checkDicSize) afte [all...] |
H A D | LzmaDec.h | 66 UInt32 checkDicSize;
member
|
H A D | Lzma2Dec.c | 168 if (p->checkDicSize == 0 && p->prop.dicSize - p->processedPos <= size)
in LzmaDec_UpdateWithUncompressed() 169 p->checkDicSize = p->prop.dicSize;
in LzmaDec_UpdateWithUncompressed()
|
/third_party/lzma/Asm/arm64/ |
H A D | LzmaDecOpt.S | 184 #define checkDicSize w27 define 776 LOAD_LZMA_VAR checkDicSize, offset_checkDicSize 786 // if (processedPos != 0 || checkDicSize != 0) 787 orr t0, checkDicSize, processedPos 1015 // if (distance >= (checkDicSize == 0 ? processedPos: checkDicSize)) 1017 tst checkDicSize, checkDicSize 1018 csel t0, processedPos, checkDicSize, eq 1256 # The (checkDicSize [all...] |
/third_party/lzma/Asm/x86/ |
H A D | LzmaDecOpt.asm | 526 checkDicSize dd ?
define 551 checkDicSize dd ?
define 673 mov x1, GLOB_2 checkDicSize
674 mov LOC_0 checkDicSize, x1
687 ; if (processedPos != 0 || checkDicSize != 0)
892 ; if (distance >= (checkDicSize == 0 ? processedPos: checkDicSize))
898 mov t0, LOC checkDicSize
1126 ; The (checkDicSize == 0 && processedPos == 0) case was checked before in LzmaDec.c with kBadRepCode.
1130 ; or t0, LOC checkDicSize
[all...] |
Completed in 5 milliseconds