Searched defs:ReadUByte (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc60 int32_t ReadableFontData::ReadUByte(int32_t index) { function in class:sfntly::ReadableFontData
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(inde
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc60 int32_t ReadableFontData::ReadUByte(int32_t index) { function in class:sfntly::ReadableFontData
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(inde
[all...]

Completed in 75 milliseconds