Home
last modified time | relevance | path

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

/external/lzma/C/
DBcj2Enc.c48 p->tempPos = 0; in Bcj2Enc_Init()
247 PRF(printf("---- ip = %8d tempPos = %8d src = %8d\n", p->ip, p->tempPos, p->srcLim - p->src)); in Bcj2Enc_Encode()
249 if (p->tempPos != 0) in Bcj2Enc_Encode()
260 p->srcLim = p->temp + p->tempPos; in Bcj2Enc_Encode()
264 … PRF(printf(" ip = %8d tempPos = %8d src = %8d\n", p->ip, p->tempPos, p->srcLim - p->src)); in Bcj2Enc_Encode()
270 unsigned tempPos = p->tempPos - num; in Bcj2Enc_Encode() local
272 p->tempPos = tempPos; in Bcj2Enc_Encode()
273 for (i = 0; i < tempPos; i++) in Bcj2Enc_Encode()
283 if (extra >= tempPos) in Bcj2Enc_Encode()
285 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.cpp534 size_t tempPos = 0; in PrintItemInfo() local
551 PrintSpacesToString(temp + tempPos, f.PrefixSpacesWidth); in PrintItemInfo()
552 tempPos += f.PrefixSpacesWidth; in PrintItemInfo()
644 GetAttribString((prop.vt == VT_EMPTY) ? 0 : prop.ulVal, IsDir, techMode, temp + tempPos); in PrintItemInfo()
646 g_StdOut << temp + tempPos; in PrintItemInfo()
648 tempPos += strlen(temp + tempPos); in PrintItemInfo()
654 PrintSpacesToString(temp + tempPos, width); in PrintItemInfo()
655 tempPos += width; in PrintItemInfo()
660 PrintTime(temp + tempPos, &prop.filetime); in PrintItemInfo()
662 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()