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

  /external/google-breakpad/src/common/dwarf/
bytereader.cc 32 #include "common/dwarf/bytereader-inl.h"
33 #include "common/dwarf/bytereader.h"
37 ByteReader::ByteReader(enum Endianness endian)
43 ByteReader::~ByteReader() { }
45 void ByteReader::SetOffsetSize(uint8 size) {
49 this->offset_reader_ = &ByteReader::ReadFourBytes;
51 this->offset_reader_ = &ByteReader::ReadEightBytes;
55 void ByteReader::SetAddressSize(uint8 size)
    [all...]
bytereader.h 47 // A ByteReader knows how to read single- and multi-byte values of
50 class ByteReader {
52 // Construct a ByteReader capable of reading one-, two-, four-, and
57 explicit ByteReader(enum Endianness endianness);
58 virtual ~ByteReader();
65 // number, using this ByteReader's endianness.
69 // number, using this ByteReader's endianness. This function returns
76 // bit number, using this ByteReader's endianness.
136 // integer, respecting this ByteReader's endianness and address size. You
153 // initial length and sets the ByteReader's offset size as a side effect
    [all...]
  /external/turbine/java/com/google/turbine/bytecode/
ByteReader.java 26 public class ByteReader {
32 public ByteReader(byte[] bytes, int pos) {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
byte_io.h 24 // uint32_t val = ByteReader<uint32_t>::ReadBigEndian(buffer);
27 // int32_t val = ByteReader<int32_t, 3>::ReadLittle(buffer);
73 class ByteReader;
75 // Specialization of ByteReader for unsigned types.
77 class ByteReader<T, B, false> {
105 // Specialization of ByteReader for signed types.
107 class ByteReader<T, B, true> {
112 U unsigned_val = ByteReader<T, B, false>::ReadBigEndian(data);
119 U unsigned_val = ByteReader<T, B, false>::ReadLittleEndian(data);
249 class ByteReader<T, 1, false>
    [all...]
  /prebuilts/go/darwin-x86/src/io/
io.go 234 // ByteReader is the interface that wraps the ReadByte method.
239 type ByteReader interface {
251 ByteReader
  /prebuilts/go/linux-x86/src/io/
io.go 234 // ByteReader is the interface that wraps the ReadByte method.
239 type ByteReader interface {
251 ByteReader

Completed in 164 milliseconds