HomeSort by relevance Sort by last modified time
    Searched defs:readUInt (Results 1 - 9 of 9) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
UBJsonReader.java 181 final long size = blockType == 'A' ? readUInt(din) : (long)readUChar(din);
222 if (type == 'l') return (long)readUInt(din);
242 protected long readUInt (final DataInputStream din) throws IOException {
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
DexRandomAccessFile.java 73 public int readUInt() throws IOException {
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 153 public int readUInt() {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DataInputCompressor.java 125 public int readUInt() throws IOException {
179 int size = readUInt();
186 int common = readUInt();
192 int poolIndex = readUInt();
223 int size = readUInt();
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DataInputCompressor.java 124 public int readUInt() throws IOException {
178 int size = readUInt();
185 int common = readUInt();
191 int poolIndex = readUInt();
222 int size = readUInt();
  /external/skia/src/core/
SkReadBuffer.cpp 109 uint32_t SkReadBuffer::readUInt() {
202 const uint32_t index = this->readUInt();
203 this->readUInt(); // bitmap generation ID (see SkWriteBuffer::writeBitmap)
218 const size_t length = this->readUInt();
SkValidatingReadBuffer.cpp 85 uint32_t SkValidatingReadBuffer::readUInt() {
94 const size_t len = this->readUInt();
247 uint32_t sizeRecorded = this->readUInt();
273 uint32_t sizeRecorded = this->readUInt();
  /libcore/ojluni/src/main/java/java/util/zip/
GZIPInputStream.java 217 if ((readUInt(in) != crc.getValue()) ||
219 (readUInt(in) != (inf.getBytesWritten() & 0xffffffffL)))
244 private long readUInt(InputStream in) throws IOException {
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfHuf.cpp 985 readUInt (const char buf[4])
1051 int im = readUInt (compressed);
1052 int iM = readUInt (compressed + 4);
1053 // int tableLength = readUInt (compressed + 8);
1054 int nBits = readUInt (compressed + 12);

Completed in 695 milliseconds