Searched refs:toRead (Results 1 - 9 of 9) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDefiniteLengthInputStream.java73 int toRead = Math.min(len, _remaining);
74 int numRead = _in.read(buf, off, toRead);
/external/srec/shared/src/
H A DCircularBuffer.c80 int toRead = bufSize - nbRead; local
81 memcpy(((unsigned char *) data) + nbRead, bufferData + buffer->readIdx, toRead);
82 buffer->size -= toRead;
83 buffer->readIdx += toRead;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DSavableSerializer.java96 int toRead = len > input.remaining() ? input.remaining() : len;
98 return toRead;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DBufferedInputStreamTest.java360 int toRead = len;
361 if (toRead > available()) {
362 toRead = available();
364 System.arraycopy(contents, pos, buf, off, toRead);
365 pos += toRead;
366 return toRead;
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DHttpZipLocator.java130 int toRead = Math.min(len - read, byteBuf.capacity());
132 boolean endOfInput = toRead < byteBuf.capacity();
134 // read 'toRead' bytes into byteBuf
135 byteBuf.put(b, off + read, toRead);
162 read += toRead;
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DUtil.java273 int toRead = (int) Math.min(byteCount - skipped, buffer.length);
274 int read = in.read(buffer, 0, toRead);
279 if (read < toRead) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 412 milliseconds