Home
last modified time | relevance | path

Searched refs:readLength (Results 1 – 12 of 12) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
DMemoryDataStore.java65 int readLength = Math.min(b.length, buf.length - position); in readAt() local
66 if (readLength <= 0) { in readAt()
72 System.arraycopy(buf, position, b, 0, readLength); in readAt()
73 position += readLength; in readAt()
74 return readLength; in readAt()
78 int readLength = Math.min(len, buf.length - position); in readAt() local
79 if (readLength <= 0) { in readAt()
85 System.arraycopy(buf, position, b, 0, readLength); in readAt()
86 position += readLength; in readAt()
87 return readLength; in readAt()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DEdits.java297 private int readLength(int head) { in readLength() method in Edits.Iterator
420 oldLength_ = readLength((u >> 6) & 0x3f); in next()
421 newLength_ = readLength(u & 0x3f); in next()
435 oldLength_ += readLength((u >> 6) & 0x3f); in next()
436 newLength_ += readLength(u & 0x3f); in next()
511 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
512 newLength_ = readLength(u & 0x3f); in previous()
520 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
521 newLength_ = readLength(u & 0x3f); in previous()
539 oldLength_ += readLength((u >> 6) & 0x3f); in previous()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DEdits.java287 private int readLength(int head) { in readLength() method in Edits.Iterator
409 oldLength_ = readLength((u >> 6) & 0x3f); in next()
410 newLength_ = readLength(u & 0x3f); in next()
424 oldLength_ += readLength((u >> 6) & 0x3f); in next()
425 newLength_ += readLength(u & 0x3f); in next()
500 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
501 newLength_ = readLength(u & 0x3f); in previous()
509 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
510 newLength_ = readLength(u & 0x3f); in previous()
528 oldLength_ += readLength((u >> 6) & 0x3f); in previous()
[all …]
/external/smali/util/src/main/java/org/jf/util/
DUtf8Utils.java192 @Nullable int[] readLength) { in utf8BytesWithUtf16LengthToString() argument
266 if (readLength != null && readLength.length > 0) { in utf8BytesWithUtf16LengthToString()
267 readLength[0] = at - start; in utf8BytesWithUtf16LengthToString()
268 readLength[0] = at - start; in utf8BytesWithUtf16LengthToString()
/external/icu/icu4c/source/common/
Dedits.cpp405 int32_t Edits::Iterator::readLength(int32_t head) { in readLength() function in Edits::Iterator
522 oldLength_ = readLength((u >> 6) & 0x3f); in next()
523 newLength_ = readLength(u & 0x3f); in next()
537 oldLength_ += readLength((u >> 6) & 0x3f); in next()
538 newLength_ += readLength(u & 0x3f); in next()
616 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
617 newLength_ = readLength(u & 0x3f); in previous()
625 oldLength_ = readLength((u >> 6) & 0x3f); in previous()
626 newLength_ = readLength(u & 0x3f); in previous()
644 oldLength_ += readLength((u >> 6) & 0x3f); in previous()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1InputStream.java109 protected int readLength() in readLength() method in ASN1InputStream
112 return readLength(this, limit); in readLength()
237 int length = readLength(); in readObject()
326 static int readLength(InputStream s, int limit) in readLength() method in ASN1InputStream
DASN1StreamParser.java145 int length = ASN1InputStream.readLength(_in, _limit); in readObject()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DASN1InputStream.java116 protected int readLength() in readLength() method in ASN1InputStream
119 return readLength(this, limit); in readLength()
246 int length = readLength(); in readObject()
335 static int readLength(InputStream s, int limit) in readLength() method in ASN1InputStream
DASN1StreamParser.java147 int length = ASN1InputStream.readLength(_in, _limit); in readObject()
/external/icu/icu4c/source/common/unicode/
Dedits.h405 int32_t readLength(int32_t head);
/external/webrtc/webrtc/modules/media_file/
Dmedia_file_utility.cc363 int readLength; in InitWavReading() local
368 readLength = wav.Read(dummy, _readSizeBytes); in InitWavReading()
369 if(readLength == static_cast<int>(_readSizeBytes)) in InitWavReading()
/external/dng_sdk/source/
Ddng_info.cpp1436 uint32 readLength = Min_uint32 (fShared->fDNGPrivateDataCount, in ParseDNGPrivateData() local
1439 stream.Get (buffer, readLength); in ParseDNGPrivateData()
1441 buffer [readLength] = 0; in ParseDNGPrivateData()