/external/chromium_org/content/renderer/pepper/ |
pepper_truetype_font_linux.cc | 100 uint16_t num_tables = (num_tables_buf[0] << 8) | num_tables_buf[1]; local 105 output_length = num_tables * kTableEntrySize; 114 DCHECK(output_length == num_tables * kTableEntrySize); 116 tags->resize(num_tables); 117 for (uint16_t i = 0; i < num_tables; i++) { 126 return num_tables;
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
main.cc | 97 int num_tables = font.get_table_count (); local 98 printf (" %d table(s) found in font\n", num_tables); 99 for (int n_table = 0; n_table < num_tables; n_table++) { 101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
|
/external/harfbuzz_ng/src/ |
main.cc | 97 int num_tables = font.get_table_count (); local 98 printf (" %d table(s) found in font\n", num_tables); 99 for (int n_table = 0; n_table < num_tables; n_table++) { 101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
|
/external/chromium_org/content/common/ |
child_process_sandbox_support_impl_linux.cc | 123 uint16_t num_tables; local 124 ssize_t n = HANDLE_EINTR(pread(fd, &num_tables, sizeof(num_tables), 126 if (n != sizeof(num_tables)) 129 num_tables = base::NetToHost16(num_tables); 133 const size_t directory_size = num_tables * kTableEntrySize; 140 for (uint16_t i = 0; i < num_tables; ++i) {
|
/external/chromium_org/third_party/ots/src/ |
kern.cc | 21 uint16_t num_tables = 0; local 23 !table.ReadU16(&num_tables)) { 32 if (num_tables == 0) { 33 OTS_WARNING("num_tables is zero"); 38 kern->subtables.reserve(num_tables); 39 for (unsigned i = 0; i < num_tables; ++i) {
|
ots.h | 224 uint16_t num_tables; member in struct:ots::OpenTypeFile
|
cmap.cc | 581 uint16_t num_tables = 0; local 583 !table.ReadU16(&num_tables)) { 590 if (!num_tables) { 597 subtable_headers.reserve(num_tables); 598 for (unsigned i = 0; i < num_tables; ++i) { 614 for (unsigned i = 0; i < num_tables; ++i) { 634 for (unsigned i = 0; i < num_tables; ++i) { 670 for (unsigned i = 0; i < num_tables; ++i) { 687 for (unsigned i = 0; i < num_tables; ++i) { 743 for (unsigned i = 0; i < num_tables; ++i) [all...] |
woff2.cc | 780 size_t num_tables) { 782 for (size_t i = 0; i < num_tables; ++i) { 885 uint16_t num_tables; local 886 if (!file.ReadU16(&num_tables) || !num_tables) { 898 std::vector<Table> tables(num_tables); 899 if (!ReadShortDirectory(&file, &tables, num_tables)) { 904 kSfntEntrySize * static_cast<uint64_t>(num_tables); 906 for (uint16_t i = 0; i < num_tables; ++i) { 935 const uint32_t sfnt_header_and_table_directory_size = 12 + 16 * num_tables; [all...] |
/external/chromium_org/third_party/freetype/src/sfnt/ |
ttkern.c | 51 FT_UInt nn, num_tables; local 81 num_tables = FT_NEXT_USHORT( p ); 83 if ( num_tables > 32 ) /* we only support up to 32 sub-tables */ 84 num_tables = 32; 86 for ( nn = 0; nn < num_tables; nn++ )
|
/external/freetype/src/sfnt/ |
ttkern.c | 51 FT_UInt nn, num_tables; local 81 num_tables = FT_NEXT_USHORT( p ); 83 if ( num_tables > 32 ) /* we only support up to 32 sub-tables */ 84 num_tables = 32; 86 for ( nn = 0; nn < num_tables; nn++ )
|
/external/chromium_org/ppapi/tests/ |
test_truetype_font.cc | 34 uint16_t num_tables; member in struct:__anon12684::FontHeader 337 uint16_t num_tables = ReadBigEndian16(&header.num_tables); 338 std::vector<FontDirectoryEntry> directory(num_tables); 339 size_t directory_size = kEntrySize * num_tables; 343 for (uint16_t i = 0; i < num_tables; i++) {
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/ |
font.h | 245 int32_t num_tables() { return (int32_t)tables_.size(); } function in class:sfntly::Font
|
/external/sfntly/cpp/src/sfntly/ |
font.h | 245 int32_t num_tables() { return (int32_t)tables_.size(); } function in class:sfntly::Font
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
tttypes.h | 91 /* num_tables :: The number of tables in file. */ 93 /* search_range :: Must be `16 * (max power of 2 <= num_tables)'. */ 97 /* range_shift :: Must be `num_tables * 16 - search_range'. */ 102 FT_UShort num_tables; member in struct:SFNT_HeaderRec_ 1184 FT_UShort num_tables; member in struct:TT_FaceRec_ [all...] |
/external/freetype/include/freetype/internal/ |
tttypes.h | 91 /* num_tables :: The number of tables in file. */ 93 /* search_range :: Must be `16 * (max power of 2 <= num_tables)'. */ 97 /* range_shift :: Must be `num_tables * 16 - search_range'. */ 102 FT_UShort num_tables; member in struct:SFNT_HeaderRec_ 1184 FT_UShort num_tables; member in struct:TT_FaceRec_ [all...] |