HomeSort by relevance Sort by last modified time
    Searched refs:ByteReader (Results 1 - 25 of 43) sorted by null

1 2

  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
psfb.cc 35 sender_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&payload[0]);
36 media_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&payload[4]);
rtpfb.cc 35 sender_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&payload[0]);
36 media_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&payload[4]);
report_block.cc 55 source_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[0]);
57 cumulative_lost_ = ByteReader<uint32_t, 3>::ReadBigEndian(&buffer[5]);
58 extended_high_seq_num_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[8]);
59 jitter_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[12]);
60 last_sr_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[16]);
61 delay_since_last_sr_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[20]);
voip_metric.cc 48 RTC_DCHECK(ByteReader<uint16_t>::ReadBigEndian(&buffer[2]) == kBlockLength);
49 ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[4]);
54 voip_metric_.burstDuration = ByteReader<uint16_t>::ReadBigEndian(&buffer[12]);
55 voip_metric_.gapDuration = ByteReader<uint16_t>::ReadBigEndian(&buffer[14]);
57 ByteReader<uint16_t>::ReadBigEndian(&buffer[16]);
59 ByteReader<uint16_t>::ReadBigEndian(&buffer[18]);
70 voip_metric_.JBnominal = ByteReader<uint16_t>::ReadBigEndian(&buffer[30]);
71 voip_metric_.JBmax = ByteReader<uint16_t>::ReadBigEndian(&buffer[32]);
72 voip_metric_.JBabsMax = ByteReader<uint16_t>::ReadBigEndian(&buffer[34]);
rrtr.cc 33 RTC_DCHECK(ByteReader<uint16_t>::ReadBigEndian(&buffer[2]) == kBlockLength);
34 uint32_t seconds = ByteReader<uint32_t>::ReadBigEndian(&buffer[4]);
35 uint32_t fraction = ByteReader<uint32_t>::ReadBigEndian(&buffer[8]);
dlrr.cc 39 ByteReader<uint16_t>::ReadBigEndian(&buffer[2]));
49 sub_block.ssrc = ByteReader<uint32_t>::ReadBigEndian(&read_at[0]);
50 sub_block.last_rr = ByteReader<uint32_t>::ReadBigEndian(&read_at[4]);
52 ByteReader<uint32_t>::ReadBigEndian(&read_at[8]);
app.cc 39 ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&payload[0]);
40 name_ = ByteReader<uint32_t>::ReadBigEndian(&payload[4]);
bye.cc 60 sender_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(payload);
63 csrcs_[i - 1] = ByteReader<uint32_t>::ReadBigEndian(&payload[4 * i]);
dlrr_unittest.cc 48 uint16_t block_length = ByteReader<uint16_t>::ReadBigEndian(&kBlock[2]);
95 uint16_t block_length = ByteReader<uint16_t>::ReadBigEndian(&buffer[2]);
extended_jitter_report.cc 57 ByteReader<uint32_t>::ReadBigEndian(&payload[index * kJitterSizeBytes]);
receiver_report.cc 46 sender_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(payload);
nack.cc 66 packed_[index].first_pid = ByteReader<uint16_t>::ReadBigEndian(next_nack);
67 packed_[index].bitmask = ByteReader<uint16_t>::ReadBigEndian(next_nack + 2);
sli.cc 54 item_ = ByteReader<uint32_t>::ReadBigEndian(buffer);
transport_feedback.cc 683 packet->packet_sender_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[4]);
684 packet->media_source_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&buffer[8]);
685 packet->base_seq_ = ByteReader<uint16_t>::ReadBigEndian(&buffer[12]);
686 uint16_t num_packets = ByteReader<uint16_t>::ReadBigEndian(&buffer[14]);
687 packet->base_time_ = ByteReader<int32_t, 3>::ReadBigEndian(&buffer[16]);
735 ByteReader<int16_t>::ReadBigEndian(&buffer[index]));
  /external/google-breakpad/src/common/dwarf/
bytereader-inl.h 32 #include "common/dwarf/bytereader.h"
38 inline uint8 ByteReader::ReadOneByte(const char* buffer) const {
42 inline uint16 ByteReader::ReadTwoBytes(const char* signed_buffer) const {
54 inline uint64 ByteReader::ReadFourBytes(const char* signed_buffer) const {
68 inline uint64 ByteReader::ReadEightBytes(const char* signed_buffer) const {
92 inline uint64 ByteReader::ReadUnsignedLEB128(const char* buffer,
117 inline int64 ByteReader::ReadSignedLEB128(const char* buffer,
137 inline uint64 ByteReader::ReadOffset(const char* buffer) const {
142 inline uint64 ByteReader::ReadAddress(const char* buffer) const {
147 inline void ByteReader::SetCFIDataBase(uint64 section_base
    [all...]
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...]
bytereader_unittest.cc 32 // bytereader_unittest.cc: Unit tests for dwarf2reader::ByteReader
37 #include "common/dwarf/bytereader.h"
38 #include "common/dwarf/bytereader-inl.h"
42 using dwarf2reader::ByteReader;
62 ByteReader reader(ENDIANNESS_BIG);
90 ByteReader reader(ENDIANNESS_LITTLE);
379 ByteReader reader(ENDIANNESS_BIG);
388 ByteReader reader(ENDIANNESS_LITTLE);
400 ByteReader reader(ENDIANNESS_LITTLE);
410 ByteReader reader(ENDIANNESS_LITTLE)
    [all...]
dwarf2reader.h 49 #include "common/dwarf/bytereader.h"
86 // Reader is a ByteReader class that has the endianness set
89 ByteReader* reader, LineInfoHandler* handler);
111 static bool ProcessOneOpcode(ByteReader* reader,
130 // The associated ByteReader that handles endianness issues for us
131 ByteReader* reader_;
223 // ByteReader, and a Dwarf2Handler class to call callbacks in.
225 ByteReader* reader, Dwarf2Handler* handler);
304 // The associated ByteReader that handles endianness issues for us
305 ByteReader* reader_
    [all...]
functioninfo.h 119 ByteReader* reader)
182 ByteReader* reader_;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
byte_io_unittest.cc 106 TestRead<uint16_t, ByteReader<uint16_t>::ReadBigEndian,
113 TestRead<uint32_t, ByteReader<uint32_t, 3>::ReadBigEndian, 3>(true);
118 TestRead<uint32_t, ByteReader<uint32_t>::ReadBigEndian,
125 TestRead<uint64_t, ByteReader<uint64_t>::ReadBigEndian,
132 TestRead<int16_t, ByteReader<int16_t>::ReadBigEndian,
139 TestRead<int32_t, ByteReader<int32_t, 3>::ReadBigEndian, 3>(true);
144 TestRead<int32_t, ByteReader<int32_t>::ReadBigEndian,
151 TestRead<int64_t, ByteReader<int64_t>::ReadBigEndian,
158 TestRead<uint16_t, ByteReader<uint16_t>::ReadLittleEndian,
165 TestRead<uint32_t, ByteReader<uint32_t, 3>::ReadLittleEndian, 3>(false)
    [all...]
rtp_utility.cc 173 uint32_t SSRC = ByteReader<uint32_t>::ReadBigEndian(ptr);
206 uint32_t RTPTimestamp = ByteReader<uint32_t>::ReadBigEndian(ptr);
209 uint32_t SSRC = ByteReader<uint32_t>::ReadBigEndian(ptr);
231 uint32_t CSRC = ByteReader<uint32_t>::ReadBigEndian(ptr);
273 uint16_t definedByProfile = ByteReader<uint16_t>::ReadBigEndian(ptr);
277 size_t XLen = ByteReader<uint16_t>::ReadBigEndian(ptr);
346 ByteReader<int32_t, 3>::ReadBigEndian(ptr);
378 ByteReader<uint32_t, 3>::ReadBigEndian(ptr);
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...]
  /external/turbine/java/com/google/turbine/bytecode/
ByteReader.java 26 public class ByteReader {
32 public ByteReader(byte[] bytes, int pos) {
ConstantPoolReader.java 43 /** A table that maps constant pool entries to byte offsets in {@link #byteReader}. */
47 private final ByteReader byteReader;
49 private ConstantPoolReader(int[] constantPool, ByteReader byteReader) {
51 this.byteReader = byteReader;
58 public static ConstantPoolReader readConstantPool(ByteReader reader) {
69 private static int skipConstantPool(ByteReader reader) {
107 ByteArrayDataInput reader = byteReader.seek(constantPool[index - 1])
    [all...]

Completed in 379 milliseconds

1 2