Searched refs:tempPos (Results 1 – 5 of 5) sorted by relevance
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedInputStream.java | 985 int tempPos = pos; in readRawVarint32() local 987 if (limit == tempPos) { in readRawVarint32() 993 if ((x = buffer[tempPos++]) >= 0) { in readRawVarint32() 994 pos = tempPos; in readRawVarint32() 996 } else if (limit - tempPos < 9) { in readRawVarint32() 998 } else if ((x ^= (buffer[tempPos++] << 7)) < 0) { in readRawVarint32() 1000 } else if ((x ^= (buffer[tempPos++] << 14)) >= 0) { in readRawVarint32() 1002 } else if ((x ^= (buffer[tempPos++] << 21)) < 0) { in readRawVarint32() 1005 int y = buffer[tempPos++]; in readRawVarint32() 1009 && buffer[tempPos++] < 0 in readRawVarint32() [all …]
|
/third_party/lzma/C/ |
D | Bcj2Enc.c | 9 #define PRF2(s) printf("%s ip=%8x tempPos=%d src= %8x\n", s, (unsigned)p->ip64, p->tempPos, (unsi… 39 p->tempPos = 0; in Bcj2Enc_Init() 385 if (p->tempPos != 0) in Bcj2Enc_Encode() 412 p->srcLim = p->temp + p->tempPos; in Bcj2Enc_Encode() 417 const unsigned tempPos = p->tempPos - num; in Bcj2Enc_Encode() local 419 p->tempPos = tempPos; in Bcj2Enc_Encode() 420 for (i = 0; i < tempPos; i++) in Bcj2Enc_Encode() 433 if (extra >= tempPos) in Bcj2Enc_Encode() 434 extra = tempPos; in Bcj2Enc_Encode() 436 p->tempPos = tempPos - extra; in Bcj2Enc_Encode() [all …]
|
D | Bcj2.h | 284 unsigned tempPos; /* the number of bytes that were copied to temp[] buffer member 316 #define Bcj2Enc_Get_AvailInputSize_in_Temp(p) ((p)->tempPos)
|
/third_party/lzma/CPP/7zip/UI/Console/ |
D | List.cpp | 547 size_t tempPos = 0; in PrintItemInfo() local 564 PrintSpacesToString(temp + tempPos, f.PrefixSpacesWidth); in PrintItemInfo() 565 tempPos += f.PrefixSpacesWidth; in PrintItemInfo() 663 GetAttribString((prop.vt == VT_EMPTY) ? 0 : prop.ulVal, IsDir, techMode, temp + tempPos); in PrintItemInfo() 665 g_StdOut << temp + tempPos; in PrintItemInfo() 667 tempPos += strlen(temp + tempPos); in PrintItemInfo() 673 PrintSpacesToString(temp + tempPos, width); in PrintItemInfo() 674 tempPos += width; in PrintItemInfo() 681 PrintTime(temp + tempPos, t, techMode); in PrintItemInfo() 683 g_StdOut << temp + tempPos; in PrintItemInfo() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | PluralFormat.java | 764 int tempPos = source.indexOf(currArg, startingAt); in parseType() local 765 if (tempPos >= 0) { in parseType() 766 currMatchIndex = tempPos; in parseType()
|