/external/chromium_org/media/cast/net/rtcp/ |
H A D | rtcp_utility.cc | 104 if (!reader->ReadU32(&sender_ssrc)) 111 if (!reader->ReadU32(&sender_report_.ntp_seconds) || 112 !reader->ReadU32(&sender_report_.ntp_fraction) || 113 !reader->ReadU32(&sender_report_.rtp_timestamp) || 114 !reader->ReadU32(&sender_report_.send_packet_count) || 115 !reader->ReadU32(&tmp)) 130 if (!reader->ReadU32(&receiver_ssrc)) 145 if (!reader->ReadU32(&ssrc) || 147 !reader->ReadU32(&last_report) || 148 !reader->ReadU32( [all...] |
/external/chromium_org/third_party/ots/src/ |
H A D | hhea.cc | 20 if (!table.ReadU32(&hhea->header.version)) {
|
H A D | vhea.cc | 21 if (!table.ReadU32(&vhea->header.version)) {
|
H A D | os2.cc | 101 if (!table.ReadU32(&os2->unicode_range_1) || 102 !table.ReadU32(&os2->unicode_range_2) || 103 !table.ReadU32(&os2->unicode_range_3) || 104 !table.ReadU32(&os2->unicode_range_4) || 105 !table.ReadU32(&os2->vendor_id) || 176 if (!table.ReadU32(&os2->code_page_range_1) || 177 !table.ReadU32(&os2->code_page_range_2)) {
|
H A D | post.cc | 20 if (!table.ReadU32(&post->version) || 21 !table.ReadU32(&post->italic_angle) || 24 !table.ReadU32(&post->is_fixed_pitch)) {
|
H A D | cmap.cc | 274 if (!subtable.ReadU32(&language)) { 282 if (!subtable.ReadU32(&num_groups)) { 294 if (!subtable.ReadU32(&groups[i].start_range) || 295 !subtable.ReadU32(&groups[i].end_range) || 296 !subtable.ReadU32(&groups[i].start_glyph_id)) { 363 if (!subtable.ReadU32(&num_groups)) { 378 if (!subtable.ReadU32(&groups[i].start_range) || 379 !subtable.ReadU32(&groups[i].end_range) || 380 !subtable.ReadU32(&groups[i].start_glyph_id)) { 424 if (!subtable.ReadU32( [all...] |
H A D | loca.cc | 51 if (!table.ReadU32(&offset)) {
|
H A D | ots.cc | 224 !file.ReadU32(&table.chksum) || 225 !file.ReadU32(&table.offset) || 226 !file.ReadU32(&table.length)) { 268 if (!file.ReadU32(&reported_length) || length != reported_length) { 282 if (!file.ReadU32(&reported_total_sfnt_size)) { 296 if (!file.ReadU32(&meta_offset) || 297 !file.ReadU32(&meta_length) || 298 !file.ReadU32(&meta_length_orig)) { 310 if (!file.ReadU32(&priv_offset) || 311 !file.ReadU32( [all...] |
H A D | head.cc | 19 if (!table.ReadU32(&version) || 20 !table.ReadU32(&file->head->revision)) {
|
H A D | maxp.cc | 19 if (!table.ReadU32(&version)) {
|
H A D | ots.h | 123 bool ReadU32(uint32_t *value) { function in class:ots::Buffer 134 return ReadU32(reinterpret_cast<uint32_t*>(value));
|
H A D | woff2.cc | 531 if (!file.ReadU32(&version)) { 547 if (!file.ReadU32(&substream_size)) { 810 if (!file->ReadU32(&tag)) { 861 !file.ReadU32(&total_length)) { 874 if (!file.ReadU32(&signature) || signature != kWoff2Signature || 875 !file.ReadU32(&flavor)) { 884 if (!file.ReadU32(&reported_length) || length != reported_length) { 898 if (!file.ReadU32(&compressed_length)) {
|
/external/chromium_org/third_party/brotli/src/woff2/ |
H A D | font.cc | 43 if (!file.ReadU32(&font->flavor) || 52 if (!file.ReadU32(&table.tag) || 53 !file.ReadU32(&table.checksum) || 54 !file.ReadU32(&table.offset) || 55 !file.ReadU32(&table.length)) { 165 !loca_buf.ReadU32(&offset1) || 166 !loca_buf.ReadU32(&offset2) ||
|
H A D | woff2_enc.cc | 78 if (!file->ReadU32(&table->tag) || 79 !file->ReadU32(&table->flags) || 80 !file->ReadU32(&table->src_length) || 81 !file->ReadU32(&table->transform_length) || 82 !file->ReadU32(&table->dst_length)) {
|
H A D | buffer.h | 125 bool ReadU32(uint32_t *value) { function in class:woff2::Buffer 136 return ReadU32(reinterpret_cast<uint32_t*>(value));
|
H A D | woff2_dec.cc | 426 if (!file.ReadU32(&version)) { 442 if (!file.ReadU32(&substream_size)) { 685 if (!file->ReadU32(&tag)) { 728 !file.ReadU32(&total_length)) { 740 if (!file.ReadU32(&signature) || signature != kWoff2Signature || 741 !file.ReadU32(&flavor)) { 748 if (!file.ReadU32(&reported_length) || length != reported_length) { 762 if (!file.ReadU32(&compressed_length)) {
|
/external/chromium_org/media/cast/net/rtp/ |
H A D | rtp_header_parser.cc | 66 big_endian_reader.ReadU32(&rtp_timestamp); 67 big_endian_reader.ReadU32(&ssrc);
|
H A D | rtp_parser.cc | 54 !reader.ReadU32(&header->rtp_timestamp) || 55 !reader.ReadU32(&header->sender_ssrc)) {
|
/external/chromium_org/courgette/ |
H A D | disassembler_win32_x64.cc | 57 uint32 offset = ReadU32(start(), 125 size_of_code_ = ReadU32(optional_header, 4); 126 size_of_initialized_data_ = ReadU32(optional_header, 8); 127 size_of_uninitialized_data_ = ReadU32(optional_header, 12); 128 base_of_code_ = ReadU32(optional_header, 20); 133 base_of_data_ = ReadU32(optional_header, 24); 134 image_base_ = ReadU32(optional_header, 28); 136 size_of_image_ = ReadU32(optional_header, 56); 138 ReadU32(optional_header, (is_PE32_plus_ ? 108 : 92)); 246 RVA page_rva = ReadU32(bloc [all...] |
H A D | disassembler_win32_x86.cc | 57 uint32 offset = ReadU32(start(), 125 size_of_code_ = ReadU32(optional_header, 4); 126 size_of_initialized_data_ = ReadU32(optional_header, 8); 127 size_of_uninitialized_data_ = ReadU32(optional_header, 12); 128 base_of_code_ = ReadU32(optional_header, 20); 133 base_of_data_ = ReadU32(optional_header, 24); 134 image_base_ = ReadU32(optional_header, 28); 136 size_of_image_ = ReadU32(optional_header, 56); 138 ReadU32(optional_header, (is_PE32_plus_ ? 108 : 92)); 246 RVA page_rva = ReadU32(bloc [all...] |
H A D | disassembler.h | 62 uint32 ReadU32(const uint8* address, size_t offset) { function in class:courgette::Disassembler
|
/external/chromium_org/base/ |
H A D | big_endian_unittest.cc | 33 EXPECT_TRUE(reader.ReadU32(&u32)); 59 EXPECT_FALSE(reader.ReadU32(&u32));
|
H A D | big_endian.cc | 54 bool BigEndianReader::ReadU32(uint32* value) { function in class:base::BigEndianReader
|
H A D | big_endian.h | 65 bool ReadU32(uint32* value);
|
/external/chromium_org/media/cast/logging/ |
H A D | logging_impl.cc | 64 big_endian_reader.ReadU32(&rtp_timestamp);
|