HomeSort by relevance Sort by last modified time
    Searched defs:readInt (Results 1 - 25 of 665) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/syscall/
dirent.go 11 // readInt returns the size-bytes unsigned integer in native byte order at offset off.
12 func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
37 panic("syscall: readInt with unsupported size")
56 panic("syscall: readInt with unsupported size")
  /prebuilts/go/linux-x86/src/syscall/
dirent.go 11 // readInt returns the size-bytes unsigned integer in native byte order at offset off.
12 func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
37 panic("syscall: readInt with unsupported size")
56 panic("syscall: readInt with unsupported size")
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeInput.java 39 public int readInt() throws EOFException;
ShortArrayCodeInput.java 60 public int readInt() throws EOFException {
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 62 public abstract int readInt();
NioBufferIterator.java 82 public int readInt() {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
ShadowParcel.java 19 public int readInt() {
  /prebuilts/go/darwin-x86/src/index/suffixarray/
suffixarray.go 46 // readInt reads an int x from r using buf to buffer the read and returns x.
47 func readInt(r io.Reader, buf []byte) (int, error) {
75 size, err = readInt(r, buf)
103 n, err := readInt(r, buf)
  /prebuilts/go/linux-x86/src/index/suffixarray/
suffixarray.go 46 // readInt reads an int x from r using buf to buffer the read and returns x.
47 func readInt(r io.Reader, buf []byte) (int, error) {
75 size, err = readInt(r, buf)
103 n, err := readInt(r, buf)
  /build/soong/finder/fs/
readdir.go 126 return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Ino), unsafe.Sizeof(syscall.Dirent{}.Ino))
130 return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Type), unsafe.Sizeof(syscall.Dirent{}.Type))
134 return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
145 // readInt returns the size-bytes unsigned integer in native byte order at offset off.
146 func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
168 panic("syscall: readInt with unsupported size")
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataInput.java 54 @Override int readInt();
LittleEndianDataInputStream.java 107 * Reads an integer as specified by {@link DataInputStream#readInt()}, except
115 public int readInt() throws IOException {
156 return Float.intBitsToFloat(readInt());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
BaseDexBuffer.java 117 public int readInt(int offset) {
  /libcore/ojluni/src/main/java/java/io/
DataInput.java 393 int readInt() throws IOException;
427 * of the {@code readInt}
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ByteArrayDictBuffer.java 52 public int readInt() {
  /cts/tests/tests/media/src/android/media/cts/
MediaItemTest.java 49 assertEquals(mediaItem.getFlags(), p.readInt());
72 assertEquals(mediaItem.getFlags(), p.readInt());
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/
ContentTypeDetector.java 68 final int header = readInt(in);
76 switch (readInt(in)) {
95 private static int readInt(final InputStream in) throws IOException {
  /external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
DefaultMapStorage.java 63 numOfEntries = objectInput.readInt();
71 phoneNumberPrefixes[i] = objectInput.readInt();
74 int sizeOfLengths = objectInput.readInt();
77 possibleLengths.add(objectInput.readInt());
  /external/proguard/src/proguard/classfile/io/
RuntimeDataInput.java 128 public int readInt()
132 return dataInput.readInt();
  /frameworks/base/core/java/android/content/
SyncAdapterType.java 228 source.readInt() != 0,
229 source.readInt() != 0,
230 source.readInt() != 0,
231 source.readInt() != 0,
  /frameworks/base/core/java/android/print/
PageRange.java 65 this(parcel.readInt(), parcel.readInt());
  /frameworks/base/core/tests/benchmarks/src/android/os/
ParcelBenchmark.java 73 mParcel.readInt();
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
CountedDataInputStream.java 109 public int readInt() throws IOException {
116 return readInt() & 0xffffffffL;
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
BridgeBufferIterator.java 66 public int readInt() {
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPipedStreamTest.java 54 int readInt;
58 readInt = in.read();
60 if (readInt == -1) {
64 readByte = (byte) readInt;
137 int readInt = (((int) readBytes[0] & 0xff) << 24)
143 assertEquals("Error at " + countRead, fib.next(), readInt);
262 int readInt = (((int) readBytes[i] & 0xff) << 24)
267 assertEquals("Error at " + i, readInt, fib.next());

Completed in 683 milliseconds

1 2 3 4 5 6 7 8 91011>>