Searched defs:amountToSkip (Results 1 - 2 of 2) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/
H A DCodedInputStream.cs1249 private void SkipImpl(int amountToSkip) argument
1254 input.Position += amountToSkip;
1255 if (input.Position != previousPosition + amountToSkip)
1262 byte[] skipBuffer = new byte[Math.Min(1024, amountToSkip)];
1263 while (amountToSkip > 0)
1265 int bytesRead = input.Read(skipBuffer, 0, Math.Min(skipBuffer.Length, amountToSkip));
1270 amountToSkip -= bytesRead;
/external/icu/icu4c/source/common/
H A Dputil.cpp1008 int32_t amountToSkip = sizeof(TZZONEINFO) - 1; local
1009 if (amountToSkip > newpath.length()) {
1010 amountToSkip = newpath.length();
1012 const char* zoneid = newpath.data() + amountToSkip;

Completed in 206 milliseconds