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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dex/util/
ByteInput.java 29 byte readByte();
ByteArrayByteInput.java 28 @Override public byte readByte() {
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
llvm-objdump.h 36 int readByte(uint64_t Addr, uint8_t *Byte) const {
  /external/autotest/client/common_lib/
i2c_slave.py 143 def readByte(self, reg):
158 byte_read = self.lib_obj.ReadByte(self.fd, reg)
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 55 public abstract byte readByte();
NioBufferIterator.java 74 public byte readByte() {
  /prebuilts/go/darwin-x86/src/go/build/
read.go 39 // readByte reads the next byte from the input, saves it in buf, and returns it.
40 // If an error occurs, readByte records the error in r.err and returns 0.
41 func (r *importReader) readByte() byte {
42 c, err := r.b.ReadByte()
75 c = r.readByte()
83 c = r.readByte()
87 c = r.readByte()
90 c = r.readByte()
98 c, c1 = c1, r.readByte()
103 c = r.readByte()
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
read.go 39 // readByte reads the next byte from the input, saves it in buf, and returns it.
40 // If an error occurs, readByte records the error in r.err and returns 0.
41 func (r *importReader) readByte() byte {
42 c, err := r.b.ReadByte()
75 c = r.readByte()
83 c = r.readByte()
87 c = r.readByte()
90 c = r.readByte()
98 c, c1 = c1, r.readByte()
103 c = r.readByte()
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
StringDataItem.java 44 file.readByte();
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataInput.java 44 @Override byte readByte();
LittleEndianDataInputStream.java 205 public byte readByte() throws IOException {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
BaseDexBuffer.java 133 public int readByte(int offset) {
  /libcore/ojluni/src/main/java/java/io/
DataInput.java 290 byte readByte() throws IOException;
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
Serialization.java 39 int tag = readByte(input) & DER_TAG_MASK;
133 result = (result << 8) | (readByte(input) & 0xFF);
153 result = (result << 8) | (readByte(input) & 0xFF);
163 public static byte readByte(InputStream input) throws SerializationException {
  /external/proguard/src/proguard/classfile/io/
RuntimeDataInput.java 56 public byte readByte()
60 return dataInput.readByte();
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
Disassembler.cpp 111 int readByte(uint64_t Addr, uint8_t *Byte) const {
  /frameworks/base/apct-tests/perftests/core/src/android/os/
ParcelPerfTest.java 74 mParcel.readByte();
  /frameworks/base/core/java/android/companion/
AssociationRequest.java 57 in.readByte() != 0,
  /frameworks/base/core/tests/benchmarks/src/android/os/
ParcelBenchmark.java 54 mParcel.readByte();
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
BridgeBufferIterator.java 61 public byte readByte() {
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
SwappedDataInputStream.java 51 * Return <code>{@link #readByte()} == 0</code>
59 return ( 0 == readByte() );
68 public byte readByte()
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
EOLConvertingInputStream.java 92 private int readByte() throws IOException {
114 int b = readByte();
122 int c = readByte();
  /external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
PatchReader.java 102 dataIn.readByte(),
125 dataIn.readByte(),
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 159 int readByte(uint64_t addr, uint8_t *byte) const
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
BitstreamReader.java 76 throw new IllegalArgumentException("Can not readByte more then 64 bit");
97 * @see ua.org.jplayer.javcodec.h264.RBSPInputStream#readByte()
99 public int readByte() throws IOException {

Completed in 1245 milliseconds

1 2 3 4 5 6 7 8 91011>>