Searched refs:totalInSize (Results 1 - 5 of 5) sorted by relevance
/third_party/lz4/tests/ |
H A D | fullbench.c | 391 size_t totalInSize = (size_t)srcSize; in local_LZ4F_decompress_followHint() local 414 if (inPos != totalInSize) { in local_LZ4F_decompress_followHint() 416 (unsigned)inPos, (unsigned)totalInSize); in local_LZ4F_decompress_followHint() 426 size_t totalInSize = (size_t)srcSize; in local_LZ4F_decompress_noHint() local 439 inSize = (inPos + 64 KB <= totalInSize) ? 64 KB : totalInSize - inPos; in local_LZ4F_decompress_noHint() 448 if (inPos != totalInSize) { in local_LZ4F_decompress_noHint() 450 (unsigned)inPos, (unsigned)totalInSize); in local_LZ4F_decompress_noHint()
|
/third_party/lzma/C/ |
H A D | MtDec.c | 31 p->totalInSize = 0;
in MtProgress_Init() 39 if (ICompressProgress_Progress(p->progress, p->totalInSize, p->totalOutSize) != SZ_OK)
in MtProgress_Progress_ST() 50 p->totalInSize += inSize;
in MtProgress_ProgressAdd() 53 if (ICompressProgress_Progress(p->progress, p->totalInSize, p->totalOutSize) != SZ_OK)
in MtProgress_ProgressAdd() 189 p->mtProgress.totalInSize += inSize;
in MtDec_Progress_GetError_Spec() 192 if (ICompressProgress_Progress(p->mtProgress.progress, p->mtProgress.totalInSize, p->mtProgress.totalOutSize) != SZ_OK)
in MtDec_Progress_GetError_Spec() 404 // printf("\n\n%12I64u %12I64u", (UInt64)p->mtProgress.totalInSize, (UInt64)p->mtProgress.totalOutSize);
in MtDec_ThreadFunc2()
|
H A D | MtDec.h | 28 UInt64 totalInSize;
member
|
H A D | XzDec.c | 2145 me->mtc.mtProgress.totalInSize = me->mtc.inProcessed;
in XzDecMt_Callback_Write() 2195 me->mtc.mtProgress.totalInSize = me->mtc.inProcessed;
in XzDecMt_Callback_Write() 2288 me->mtc.mtProgress.totalInSize = me->mtc.inProcessed;
in XzDecMt_Callback_Write()
|
/third_party/lz4/lib/ |
H A D | lz4frame.c | 274 U64 totalInSize; member 771 cctxPtr->totalInSize = 0; in LZ4F_compressBegin_usingCDict() 1044 cctxPtr->totalInSize += srcSize; in LZ4F_compressUpdateImpl() 1182 if (cctxPtr->prefs.frameInfo.contentSize != cctxPtr->totalInSize) in LZ4F_compressEnd()
|
Completed in 10 milliseconds