HomeSort by relevance Sort by last modified time
    Searched defs:table_index (Results 1 - 5 of 5) sorted by null

  /external/harfbuzz_ng/src/
hb-ot-shape-private.hh 47 unsigned int table_index; local
49 case HB_OT_TAG_GSUB: table_index = 0; break;
50 case HB_OT_TAG_GPOS: table_index = 1; break;
53 map.collect_lookups (table_index, lookups);
hb-ot-map.cc 34 unsigned int table_index,
46 table_tags[table_index],
52 hb_ot_map_t::lookup_map_t *lookup = lookups[table_index].push ();
82 for (unsigned int table_index = 0; table_index < 2; table_index++) {
83 hb_tag_t table_tag = table_tags[table_index];
84 found_script[table_index] = hb_ot_layout_table_choose_script (face, table_tag, script_tags, &script_index[table_index], &chosen_script[table_index]);
107 const unsigned int table_index = 0; local
132 const unsigned int table_index = 1; local
    [all...]
hb-open-file-private.hh 81 inline bool find_table_index (hb_tag_t tag, unsigned int *table_index) const
90 if (table_index) *table_index = i;
94 if (table_index) *table_index = Index::NOT_FOUND_INDEX;
99 unsigned int table_index; local
100 find_table_index (tag, &table_index);
101 return get_table (table_index);
hb-ot-layout-gsubgpos-private.hh 258 unsigned int table_index; /* GSUB/GPOS */ member in struct:OT::hb_apply_context_t
278 table_index (table_index_),
387 matcher.set_ignore_zwnj (context_match || c->table_index == 1);
389 matcher.set_ignore_zwj (context_match || c->table_index == 1 || c->auto_zwj);
457 matcher.set_ignore_zwnj (context_match || c->table_index == 1);
459 matcher.set_ignore_zwj (context_match || c->table_index == 1 || c->auto_zwj);
    [all...]
  /external/qemu/block/
qcow2-refcount.c 464 int64_t table_index = -1, old_table_index; local
488 old_table_index = table_index;
489 table_index = cluster_index >> (s->cluster_bits - REFCOUNT_SHIFT);
490 if ((old_table_index >= 0) && (table_index != old_table_index)) {
    [all...]

Completed in 1063 milliseconds