Home
last modified time | relevance | path

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

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java983 int tempPos = pos; in readRawVarint32() local
985 if (limit == tempPos) { in readRawVarint32()
991 if ((x = buffer[tempPos++]) >= 0) { in readRawVarint32()
992 pos = tempPos; in readRawVarint32()
994 } else if (limit - tempPos < 9) { in readRawVarint32()
996 } else if ((x ^= (buffer[tempPos++] << 7)) < 0) { in readRawVarint32()
998 } else if ((x ^= (buffer[tempPos++] << 14)) >= 0) { in readRawVarint32()
1000 } else if ((x ^= (buffer[tempPos++] << 21)) < 0) { in readRawVarint32()
1003 int y = buffer[tempPos++]; in readRawVarint32()
1007 && buffer[tempPos++] < 0 in readRawVarint32()
[all …]
/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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DPluralFormat.java764 int tempPos = source.indexOf(currArg, startingAt); in parseType() local
765 if (tempPos >= 0) { in parseType()
766 currMatchIndex = tempPos; in parseType()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DPluralFormat.java745 int tempPos = source.indexOf(currArg, startingAt); in parseType() local
746 if (tempPos >= 0) { in parseType()
747 currMatchIndex = tempPos; in parseType()
/external/lzma/CPP/7zip/Compress/
DBcj2Coder.cpp237 …tInPos = totalStreamRead - numBytes_in_ReadBuf + (enc.src - _bufs[BCJ2_NUM_STREAMS]) - enc.tempPos; in CodeReal()