Home
last modified time | relevance | path

Searched refs:tempPos (Results 1 – 4 of 4) sorted by relevance

/external/lzma/C/
DBcj2Enc.c47 p->tempPos = 0; in Bcj2Enc_Init()
246 PRF(printf("---- ip = %8d tempPos = %8d src = %8d\n", p->ip, p->tempPos, p->srcLim - p->src)); in Bcj2Enc_Encode()
248 if (p->tempPos != 0) in Bcj2Enc_Encode()
259 p->srcLim = p->temp + p->tempPos; in Bcj2Enc_Encode()
263 … PRF(printf(" ip = %8d tempPos = %8d src = %8d\n", p->ip, p->tempPos, p->srcLim - p->src)); in Bcj2Enc_Encode()
269 unsigned tempPos = p->tempPos - num; in Bcj2Enc_Encode() local
271 p->tempPos = tempPos; in Bcj2Enc_Encode()
272 for (i = 0; i < tempPos; i++) in Bcj2Enc_Encode()
282 if (extra >= tempPos) in Bcj2Enc_Encode()
284 p->src = src - tempPos; in Bcj2Enc_Encode()
[all …]
DBcj2.h123 unsigned tempPos; member
134 #define Bcj2Enc_Get_InputData_Size(p) ((SizeT)((p)->srcLim - (p)->src) + (p)->tempPos)
/external/lzma/CPP/7zip/UI/Console/
DList.cpp530 size_t tempPos = 0; in PrintItemInfo() local
547 PrintSpacesToString(temp + tempPos, f.PrefixSpacesWidth); in PrintItemInfo()
548 tempPos += f.PrefixSpacesWidth; in PrintItemInfo()
640 GetAttribString((prop.vt == VT_EMPTY) ? 0 : prop.ulVal, IsDir, techMode, temp + tempPos); in PrintItemInfo()
642 g_StdOut << temp + tempPos; in PrintItemInfo()
644 tempPos += strlen(temp + tempPos); in PrintItemInfo()
650 PrintSpacesToString(temp + tempPos, width); in PrintItemInfo()
651 tempPos += width; in PrintItemInfo()
656 PrintTime(temp + tempPos, &prop.filetime); in PrintItemInfo()
658 g_StdOut << temp + tempPos; in PrintItemInfo()
[all …]
/external/lzma/CPP/7zip/Compress/
DBcj2Coder.cpp237 …tInPos = totalStreamRead - numBytes_in_ReadBuf + (enc.src - _bufs[BCJ2_NUM_STREAMS]) - enc.tempPos; in CodeReal()