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

1 2

  /external/harfbuzz_ng/src/
hb-ot-map.cc 34 void hb_ot_map_t::collect_lookups (unsigned int table_index, hb_set_t *lookups_out) const
36 for (unsigned int i = 0; i < lookups[table_index].len; i++)
37 hb_set_add (lookups_out, lookups[table_index][i].index);
59 for (unsigned int table_index = 0; table_index < 2; table_index++) {
60 hb_tag_t table_tag = table_tags[table_index];
61 found_script[table_index] = (bool) 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-open-file-private.hh 82 inline bool find_table_index (hb_tag_t tag, unsigned int *table_index) const
91 if (table_index) *table_index = i;
95 if (table_index) *table_index = Index::NOT_FOUND_INDEX;
100 unsigned int table_index; local
101 find_table_index (tag, &table_index);
102 return get_table (table_index);
hb-ot-shape-private.hh 51 unsigned int table_index; local
53 case HB_OT_TAG_GSUB: table_index = 0; break;
54 case HB_OT_TAG_GPOS: table_index = 1; break;
57 map.collect_lookups (table_index, lookups);
hb-ot-layout.cc 999 static const unsigned int table_index = 0; member in struct:GSUBProxy
1013 static const unsigned int table_index = 1; member in struct:GPOSProxy
1185 const unsigned int table_index = proxy.table_index; local
    [all...]
  /external/libopus/silk/
resampler_private_IIR_FIR.c 45 opus_int32 table_index; local
49 table_index = silk_SMULWB( index_Q16 & 0xFFFF, 12 );
52 res_Q15 = silk_SMULBB( buf_ptr[ 0 ], silk_resampler_frac_FIR_12[ table_index ][ 0 ] );
53 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 1 ], silk_resampler_frac_FIR_12[ table_index ][ 1 ] );
54 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 2 ], silk_resampler_frac_FIR_12[ table_index ][ 2 ] );
55 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 3 ], silk_resampler_frac_FIR_12[ table_index ][ 3 ] );
56 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 4 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 3 ] );
57 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 5 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 2 ] );
58 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 6 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 1 ] );
59 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 7 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 0 ] )
    [all...]
  /system/media/alsa_utils/
alsa_format.c 93 int slot_index, bit_index, table_index; local
94 table_index = 0;
95 for (slot_index = 0; slot_index < num_slots && table_index < table_size; slot_index++) {
97 for (bit_index = 0; bit_index < bits_per_slot && table_index < table_size; bit_index++) {
99 if (table_index >= 2 && (mask->bits[slot_index] & bit_mask) != 0) {
101 return (int)pcm_format_value_map[table_index];
104 table_index++;
alsa_device_profile.c 260 int slot_index, bit_index, table_index; local
261 table_index = 0;
263 for (slot_index = 0; slot_index < num_slots && table_index < table_size;
267 bit_index < bits_per_slot && table_index < table_size;
270 enum pcm_format format = pcm_format_value_map[table_index];
281 table_index++;
  /art/runtime/
imt_conflict_table.h 113 uint32_t table_index = 0; variable
115 ArtMethod* interface_method = GetInterfaceMethod(table_index, pointer_size);
119 ArtMethod* implementation_method = GetImplementationMethod(table_index, pointer_size);
123 SetInterfaceMethod(table_index, pointer_size, updated.first);
126 SetImplementationMethod(table_index, pointer_size, updated.second);
128 ++table_index;
135 uint32_t table_index = 0; local
137 ArtMethod* current_interface_method = GetInterfaceMethod(table_index, pointer_size);
142 return GetImplementationMethod(table_index, pointer_size);
144 ++table_index;
151 uint32_t table_index = 0; local
    [all...]
indirect_reference_table.h 335 static constexpr uintptr_t EncodeIndex(uint32_t table_index) {
337 DCHECK_LE(MinimumBitsToStore(table_index), BitSizeOf<uintptr_t>() - kSerialBits - kKindBits);
338 return (static_cast<uintptr_t>(table_index) << kKindBits << kSerialBits);
359 constexpr uintptr_t EncodeIndirectRef(uint32_t table_index, uint32_t serial) const {
360 DCHECK_LT(table_index, max_entries_);
361 return EncodeIndex(table_index) | EncodeSerial(serial) | EncodeIndirectRefKind(kind_);
371 IndirectRef ToIndirectRef(uint32_t table_index) const {
372 DCHECK_LT(table_index, max_entries_);
373 uint32_t serial = table_[table_index].GetSerial();
374 return reinterpret_cast<IndirectRef>(EncodeIndirectRef(table_index, serial))
    [all...]
  /external/v8/src/wasm/
function-body-decoder-impl.h 181 uint32_t table_index; member in struct:v8::internal::wasm::CallIndirectOperand
188 table_index = decoder->checked_read_u8(pc, 1 + len, "table index");
189 if (table_index != 0) {
191 table_index);
module-decoder.cc 571 uint32_t table_index = consume_u32v("table index"); local
572 if (table_index != 0) {
573 error(pos, pos, "illegal table index %u != 0", table_index);
576 if (table_index >= module->function_tables.size()) {
577 error(pos, pos, "out of bounds table index %u", table_index);
579 table = &module->function_tables[table_index];
585 module->table_inits.push_back({table_index, offset, vector});
    [all...]
wasm-text.cc 137 DCHECK_EQ(0, operand.table_index);
wasm-module.h 116 uint32_t table_index; member in struct:v8::internal::wasm::WasmTableInit
wasm-objects.h 79 Handle<WasmInstanceObject> instance, int table_index,
  /external/libchrome/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
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/src/
ipa_nat_drvi.c 934 del_cmd.table_index = index;
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elf32-ip2k.c 349 int table_index = 0; local
371 return table_index;
377 table_index++;
429 int table_index = 0; local
456 return table_index;
465 return table_index;
471 table_index++;
    [all...]
  /external/pdfium/third_party/libtiff/
tif_ojpeg.c 393 static void OJPEGWriteStreamQTable(TIFF* tif, uint8 table_index, void** mem, uint32* len);
394 static void OJPEGWriteStreamDcTable(TIFF* tif, uint8 table_index, void** mem, uint32* len);
395 static void OJPEGWriteStreamAcTable(TIFF* tif, uint8 table_index, void** mem, uint32* len);
    [all...]
  /external/freetype/include/freetype/
tttables.h     [all...]
  /external/pdfium/third_party/freetype/include/freetype/
tttables.h     [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
tttables.h     [all...]
  /external/mesa3d/src/mesa/main/
texcompress_etc.c 64 uint8_t table_index; member in struct:etc2_block
559 modifier = etc2_modifier_tables[block->table_index][idx];
572 modifier = etc2_modifier_tables[block->table_index][idx];
603 modifier = etc2_modifier_tables[block->table_index][idx];
633 block->table_index = src[1] & 0xf;
    [all...]
  /external/swiftshader/src/Renderer/
ETC_Decoder.cpp 303 unsigned char table_index : 4; member in struct:__anon32241::ETC2::__anon32242::__anon32243::__anon32253
642 return modifierTable[table_index][getSingleChannelIndex(x, y)];
  /external/e2fsprogs/misc/
e2image.c 1082 __u32 table_index; local
1086 table_index = offset >> (2 * img->cluster_bits - 1);
1092 if (table_index != ref->refcount_table_index) {
1104 ref->refcount_table_index = table_index;
    [all...]

Completed in 649 milliseconds

1 2