HomeSort by relevance Sort by last modified time
    Searched refs:ReadUByte (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 60 int32_t ReadableFontData::ReadUByte(int32_t index) {
90 return ReadUByte(index);
94 return 0xffff & (ReadUByte(index) << 8 | ReadUByte(index + 1));
98 return ((ReadByte(index) << 8 | ReadUByte(index + 1)) << 16) >> 16;
102 return 0xffffff & (ReadUByte(index) << 16 |
103 ReadUByte(index + 1) << 8 |
104 ReadUByte(index + 2));
108 return 0xffffffffL & (ReadUByte(index) << 24 |
109 ReadUByte(index + 1) << 16
    [all...]
readable_font_data.h 75 virtual int32_t ReadUByte(int32_t index);
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 60 int32_t ReadableFontData::ReadUByte(int32_t index) {
90 return ReadUByte(index);
94 return 0xffff & (ReadUByte(index) << 8 | ReadUByte(index + 1));
98 return ((ReadByte(index) << 8 | ReadUByte(index + 1)) << 16) >> 16;
102 return 0xffffff & (ReadUByte(index) << 16 |
103 ReadUByte(index + 1) << 8 |
104 ReadUByte(index + 2));
108 return 0xffffffffL & (ReadUByte(index) << 24 |
109 ReadUByte(index + 1) << 16
    [all...]
readable_font_data.h 75 virtual int32_t ReadUByte(int32_t index);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
horizontal_device_metrics_table.cc 44 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() +
55 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() +
68 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() +
cmap_table.cc 351 return data_->ReadUByte(character + Offset::kFormat0GlyphIdArray);
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
horizontal_device_metrics_table.cc 44 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() +
55 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() +
68 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() +
cmap_table.cc 351 return data_->ReadUByte(character + Offset::kFormat0GlyphIdArray);
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/
endian_test.cc 44 EXPECT_EQ(rfd->ReadUByte(4), 202);
open_type_data_test.cc 35 EXPECT_EQ(0xff, data->ReadUByte(0));
  /external/sfntly/cpp/src/test/
endian_test.cc 44 EXPECT_EQ(rfd->ReadUByte(4), 202);
open_type_data_test.cc 35 EXPECT_EQ(0xff, data->ReadUByte(0));
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.cc 454 data_->ReadUByte(x_coordinates_offset_ + x_byte_index);
477 data_->ReadUByte(y_coordinates_offset_ + y_byte_index);
501 return data_->ReadUByte(flags_offset_ + index * DataSize::kBYTE);
  /external/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.cc 454 data_->ReadUByte(x_coordinates_offset_ + x_byte_index);
477 data_->ReadUByte(y_coordinates_offset_ + y_byte_index);
501 return data_->ReadUByte(flags_offset_ + index * DataSize::kBYTE);

Completed in 382 milliseconds