Home
last modified time | relevance | path

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

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DInitialObjectDescriptor.java81 int sizeLeft = getSize() - 2; in parseDetail() local
85 sizeLeft = sizeLeft - (1 + urlLength); in parseDetail()
93 sizeLeft = sizeLeft - 5; in parseDetail()
95 if (sizeLeft > 2) { in parseDetail()
97 sizeLeft = sizeLeft - descriptor.getSize(); in parseDetail()
106 if (sizeLeft > 2) { in parseDetail()
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
DCodedInputStreamMicro.java727 int sizeLeft = size - (originalBufferSize - originalBufferPos); in readRawBytes() local
732 while (sizeLeft > 0) { in readRawBytes()
733 final byte[] chunk = new byte[Math.min(sizeLeft, BUFFER_SIZE)]; in readRawBytes()
744 sizeLeft -= chunk.length; in readRawBytes()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java1190 int sizeLeft = size - bufferedBytes; in readRawBytesSlowPath() local
1192 if (sizeLeft < BUFFER_SIZE || sizeLeft <= input.available()) { in readRawBytesSlowPath()
1223 while (sizeLeft > 0) { in readRawBytesSlowPath()
1225 final byte[] chunk = new byte[Math.min(sizeLeft, BUFFER_SIZE)]; in readRawBytesSlowPath()
1235 sizeLeft -= chunk.length; in readRawBytesSlowPath()
/external/protobuf/csharp/src/Google.Protobuf/
DCodedInputStream.cs1156 int sizeLeft = size - (originalBufferSize - originalBufferPos); in ReadRawBytes()
1159 while (sizeLeft > 0) in ReadRawBytes()
1161 byte[] chunk = new byte[Math.Min(sizeLeft, buffer.Length)]; in ReadRawBytes()
1173 sizeLeft -= chunk.Length; in ReadRawBytes()