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

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-map.cc 36 unsigned int table_index,
48 table_tags[table_index],
54 hb_ot_map_t::lookup_map_t *lookup = lookups[table_index].push ();
84 for (unsigned int table_index = 0; table_index < 2; table_index++) {
85 hb_tag_t table_tag = table_tags[table_index];
86 found_script[table_index] = hb_ot_layout_table_choose_script (face, table_tag, script_tags, &script_index[table_index], &chosen_script[table_index]);
    [all...]
hb-ot-map-private.hh 96 inline unsigned int get_feature_index (unsigned int table_index, hb_tag_t feature_tag) const {
98 return map ? map->index[table_index] : HB_OT_LAYOUT_NO_FEATURE_INDEX;
101 inline unsigned int get_feature_stage (unsigned int table_index, hb_tag_t feature_tag) const {
103 return map ? map->stage[table_index] : (unsigned int) -1;
106 inline void get_stage_lookups (unsigned int table_index, unsigned int stage,
113 assert (stage <= stages[table_index].len);
114 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
115 unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len
    [all...]
hb-ot-shape-private.hh 46 unsigned int table_index; local
48 case HB_OT_TAG_GSUB: table_index = 0; break;
49 case HB_OT_TAG_GPOS: table_index = 1; break;
52 map.collect_lookups (table_index, lookups);
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/harfbuzz_ng/src/
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-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-private.hh 96 inline unsigned int get_feature_index (unsigned int table_index, hb_tag_t feature_tag) const {
98 return map ? map->index[table_index] : HB_OT_LAYOUT_NO_FEATURE_INDEX;
101 inline unsigned int get_feature_stage (unsigned int table_index, hb_tag_t feature_tag) const {
103 return map ? map->stage[table_index] : (unsigned int) -1;
106 inline void get_stage_lookups (unsigned int table_index, unsigned int stage,
113 assert (stage <= pauses[table_index].len);
114 unsigned int start = stage ? pauses[table_index][stage - 1].num_lookups : 0;
115 unsigned int end = stage < pauses[table_index].len ? pauses[table_index][stage].num_lookups : lookups[table_index].len
    [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/chromium_org/third_party/opus/src/silk/
resampler_private_IIR_FIR.c 44 opus_int32 table_index; local
48 table_index = silk_SMULWB( index_Q16 & 0xFFFF, 12 );
51 res_Q15 = silk_SMULBB( buf_ptr[ 0 ], silk_resampler_frac_FIR_12[ table_index ][ 0 ] );
52 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 1 ], silk_resampler_frac_FIR_12[ table_index ][ 1 ] );
53 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 2 ], silk_resampler_frac_FIR_12[ table_index ][ 2 ] );
54 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 3 ], silk_resampler_frac_FIR_12[ table_index ][ 3 ] );
55 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 4 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 3 ] );
56 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 5 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 2 ] );
57 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 6 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 1 ] );
58 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 7 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 0 ] )
    [all...]
  /external/chromium_org/ppapi/c/documentation/
doxy_cleanup.py 75 table_index = table_parent.contents.index(table)
77 table_parent.insert(table_index + 1, new_table)
85 table_index = table_parent.contents.index(table)
86 table_parent.insert(table_index, tag)
  /external/chromium_org/ppapi/cpp/documentation/
doxy_cleanup.py 74 table_index = table_parent.contents.index(table)
76 table_parent.insert(table_index + 1, new_table)
84 table_index = table_parent.contents.index(table)
85 table_parent.insert(table_index, tag)
  /art/compiler/dex/quick/
codegen_util.cc 578 size_t table_index = TableIndex(native_offset); local
579 while (in_use_[table_index]) {
580 table_index = (table_index + 1) % entries_;
582 in_use_[table_index] = true;
583 SetNativeOffset(table_index, native_offset);
584 DCHECK_EQ(native_offset, GetNativeOffset(table_index));
585 SetReferences(table_index, references);
593 uint32_t GetNativeOffset(size_t table_index) {
595 size_t table_offset = (table_index * EntryWidth()) + sizeof(uint32_t)
    [all...]
  /external/chromium_org/sandbox/win/src/sidestep/
mini_disassembler.cpp 120 unsigned int table_index,
122 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
mini_disassembler.cc 153 unsigned int table_index,
155 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
mini_disassembler.cc 153 unsigned int table_index,
155 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table
  /external/chromium_org/tools/memory_watcher/
mini_disassembler.cc 118 unsigned int table_index,
120 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table
  /external/chromium_org/tools/traceline/traceline/sidestep/
mini_disassembler.cc 141 unsigned int table_index,
143 const OpcodeTable& table = s_ia32_opcode_map_[table_index]; // Get our table
  /external/chromium_org/third_party/freetype/include/freetype/
tttables.h     [all...]
  /external/freetype/include/freetype/
tttables.h     [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...]
  /external/chromium_org/third_party/freetype/src/base/
ftobjs.c     [all...]
  /external/freetype/src/base/
ftobjs.c     [all...]

Completed in 660 milliseconds