Searched refs:readByte (Results 1 - 24 of 24) sorted by relevance

/external/llvm/include/llvm/Support/
H A DMemoryObject.h39 /// readByte - Tries to read a single byte from the region.
45 virtual int readByte(uint64_t address, uint8_t* ptr) const = 0;
/external/guava/src/com/google/common/io/
H A DByteArrayDataInput.java36 /*@Override*/ byte readByte(); method in interface:ByteArrayDataInput
H A DByteStreams.java295 /*@Override*/ public byte readByte() { method in class:ByteStreams.ByteArrayDataInputStream
297 return input.readByte();
/external/llvm/lib/Support/
H A DMemoryObject.cpp27 if (readByte(current, &buf[(current - address)]))
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp40 #define readByte(buffer,begin) buffer[begin] macro
113 int width = readByte(buf, 6 + i*16);
114 int height = readByte(buf, 7 + i*16);
150 int w = readByte(buf, 6 + choice*16);
151 int h = readByte(buf, 7 + choice*16);
152 int colorCount = readByte(buf, 8 + choice*16);
153 //int reservedToo = readByte(buf, 9 + choice*16); //0
215 blue = readByte(buf, begin + 4*j);
216 green = readByte(buf, begin + 4*j + 1);
217 red = readByte(bu
[all...]
/external/antlr/src/org/antlr/runtime/
H A DSerializedGrammar.java101 int version = in.readByte();
102 char grammarType = (char)in.readByte();
122 byte R = in.readByte();
126 byte B = in.readByte();
128 byte period = in.readByte();
147 byte A = in.readByte();
149 byte cmd = in.readByte();
176 cmd = in.readByte();
183 byte c = in.readByte();
187 c = in.readByte();
[all...]
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h36 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:llvm::StringRefMemoryObject
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataInput.java56 public byte readByte() method in class:RuntimeDataInput
60 return dataInput.readByte();
/external/proguard/src/proguard/classfile/instruction/
H A DInstruction.java793 protected static int readByte(byte[] code, int offset) method in class:Instruction
817 case 1: return readByte( code, offset);
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_info.java63 byte tag = bytes.readByte ();
/external/webkit/Tools/Scripts/
H A DVCSUtils.pm1846 sub readByte($$) subroutine
1872 $cmd = readByte($binaryChunk, $i++);
1909 if ($cmd & 0x01) { $offset = readByte($binaryChunk, $i++); }
1910 if ($cmd & 0x02) { $offset |= readByte($binaryChunk, $i++) << 8; }
1911 if ($cmd & 0x04) { $offset |= readByte($binaryChunk, $i++) << 16; }
1912 if ($cmd & 0x08) { $offset |= readByte($binaryChunk, $i++) << 24; }
1913 if ($cmd & 0x10) { $size = readByte($binaryChunk, $i++); }
1914 if ($cmd & 0x20) { $size |= readByte($binaryChunk, $i++) << 8; }
1915 if ($cmd & 0x40) { $size |= readByte($binaryChunk, $i++) << 16; }
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DDataOutputStreamTest.java115 byte c = dis.readByte();
H A DDataInputStreamTest.java89 * @tests java.io.DataInputStream#readByte()
95 assertTrue("Incorrect byte read", dis.readByte() == (byte) 127);
470 public byte readByte() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
H A DRandomAccessFileTest.java260 * @tests java.io.RandomAccessFile#readByte()
263 // Test for method byte java.io.RandomAccessFile.readByte()
267 assertEquals("Incorrect bytes read/written", 127, raf.readByte());
700 assertEquals("Incorrect byte read/written", 127, raf.readByte());
H A DSerializationStressTest.java433 assertEquals("Wrote incorrect byte value", 127, ois.readByte());
672 assertEquals("Wrong result from readByte()", 24, ois.readByte());
H A DObjectInputStreamTest.java289 * @tests java.io.ObjectInputStream#readByte()
295 assertEquals("Read incorrect byte value", 127, ois.readByte());
H A DObjectOutputStreamTest.java780 assertEquals("Wrote incorrect byte value", 127, ois.readByte());
/external/emma/core/java12/com/vladium/emma/data/
H A DClassDescriptor.java176 final byte srcFileNameFlag = in.readByte ();
H A DDataFactory.java454 final byte type = raf.readByte ();
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp111 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:__anon6737::DisasmMemoryObject
H A DEDDisassembler.cpp227 int readByte(uint64_t address, uint8_t *ptr) const { function in class:__anon6738::EDMemoryObject
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp47 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:__anon7140::VectorMemoryObject
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp82 /// regionReader - a callback function that wraps the readByte method from
91 return region->readByte(address, byte);
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 370 milliseconds