Home
last modified time | relevance | path

Searched refs:table_type (Results 1 – 9 of 9) sorted by relevance

/third_party/curl/packages/vms/
Dreport_openssl_version.c41 const unsigned long * table_type);
81 const unsigned long table_type = LIB$K_CLI_LOCAL_SYM; in main() local
93 status = LIB$SET_SYMBOL(&symbol_dsc, &value_dsc, &table_type); in main()
/third_party/vulkan-loader/scripts/
Ddispatch_table_helper_generator.py223 def OutputDispatchTableHelper(self, table_type): argument
226 if table_type == 'device':
247 if (table_type == 'device' and base_name == 'GetDeviceProcAddr'):
249 elif (table_type != 'device' and base_name == 'GetInstanceProcAddr'):
252 … table += ' table->%s = (PFN_%s) gpa(%s, "%s");\n' % (base_name, item[0], table_type, item[0])
/third_party/node/deps/v8/src/wasm/
Dmodule-decoder.cc913 ValueType table_type = consume_reference_type(); in DecodeTableSection() local
914 if (!WasmTable::IsValidTableType(table_type, module_.get())) { in DecodeTableSection()
920 table->type = table_type; in DecodeTableSection()
926 if (!table_type.is_defaultable()) { in DecodeTableSection()
927 table->initial_value = consume_init_expr(module_.get(), table_type); in DecodeTableSection()
2107 ValueType table_type = in consume_element_segment_header() local
2124 if (is_active && !IsSubtypeOf(type, table_type, this->module_.get())) { in consume_element_segment_header()
2128 type.name().c_str(), table_index, table_type.name().c_str()); in consume_element_segment_header()
2146 type = table_type; in consume_element_segment_header()
2149 if (!IsSubtypeOf(table_type, kWasmFuncRef, this->module_.get())) { in consume_element_segment_header()
[all …]
Dfunction-body-decoder-impl.h1334 ValueType table_type = module_->tables[imm.table_imm.index].type;
1335 if (!VALIDATE(IsSubtypeOf(table_type, kWasmFuncRef, module_))) {
1345 if (!VALIDATE(IsSubtypeOf(immediate_type, table_type, module_))) {
/third_party/ffmpeg/libavcodec/
Datrac3plus.h96 int table_type; ///< table type: 0 - tone?, 1- noise? member
Datrac3plus.c644 chan->table_type = get_bits1(gb); in decode_channel_code_tab()
783 codetab = atrac3p_ct_restricted_to_full[chan->table_type][wordlen - 1][codetab]; in decode_spectrum()
785 tab_index = (chan->table_type * 8 + codetab) * 7 + wordlen - 1; in decode_spectrum()
/third_party/jerryscript/tools/
Dgen-unicode.py47 def add_table(self, table, table_name, table_type, table_descr): argument
49 … self.__data.append("static const %s lit_%s[] JERRY_ATTR_CONST_DATA =" % (table_type, table_name))
/third_party/python/Lib/test/
Dtest_codecs.py2034 table_type = type(cp1140.encoding_table)
2035 self.assertEqual(table_type, table_type)
/third_party/node/deps/v8/src/compiler/
Dwasm-compiler.cc3215 const wasm::ValueType table_type = env_->module->tables[table_index].type; in BuildIndirectCall() local
3224 table_type.is_reference_to(wasm::HeapType::kFunc) || in BuildIndirectCall()
3225 table_type.is_nullable(); in BuildIndirectCall()