/external/vulkan-validation-layers/scripts/ |
D | dispatch_table_helper_generator.py | 244 def OutputDispatchTableHelper(self, table_type): argument 247 if table_type == 'device': 268 if ('device' in table_type and base_name == 'GetDeviceProcAddr'): 270 elif ('device' not in table_type and base_name == 'GetInstanceProcAddr'): 273 … table += ' table->%s = (PFN_%s) gpa(%s, "%s");\n' % (base_name, item[0], table_type, item[0]) 274 if 'device' in table_type and item[0] in stubbed_functions:
|
/external/curl/packages/vms/ |
D | report_openssl_version.c | 41 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()
|
/external/toolchain-utils/crosperf/ |
D | results_report.py | 173 def _GetTables(benchmark_results, columns, table_type): argument 191 cell_table = tf.GetCellTable(table_type) 197 def _GetPerfTables(benchmark_results, columns, table_type): argument 217 tf.GenerateCellTable(table_type) 221 table = tf.GetCellTable(table_type, headers=False) 234 def _GetTablesWithColumns(self, columns, table_type, perf): argument 236 return get_tables(self.benchmark_results, columns, table_type)
|
/external/bcc/src/cc/ |
D | bpf_module.h | 102 int table_type(const std::string &name) const; 103 int table_type(size_t id) const;
|
D | bpf_common.cc | 128 return mod->table_type(table_name); in bpf_table_type() 134 return mod->table_type(id); in bpf_table_type_id()
|
D | bpf_module.cc | 829 int BPFModule::table_type(const string &name) const { in table_type() function in ebpf::BPFModule 830 return table_type(table_id(name)); in table_type() 833 int BPFModule::table_type(size_t id) const { in table_type() function in ebpf::BPFModule
|
/external/bcc/src/cc/includes/ |
D | bpf_module.h | 102 int table_type(const std::string &name) const; 103 int table_type(size_t id) const;
|
/external/toolchain-utils/cros_utils/ |
D | tabulator.py | 792 def GenerateCellTable(self, table_type): argument 798 if str(row[0]) == 'retval' and table_type == 'summary': 835 if table_type == 'summary' and all_failed and len(self._table) == 2: 942 def GetCellTable(self, table_type='full', headers=True): argument 958 self.GenerateCellTable(table_type)
|
/external/v8/src/wasm/ |
D | wasm-objects.cc | 415 int table_type = offset_table->get(offset_table->length() - 1); in GetDecodedAsmJsOffsetTable() local 416 DCHECK(table_type == Encoded || table_type == Decoded); in GetDecodedAsmJsOffsetTable() 417 if (table_type == Decoded) return offset_table; in GetDecodedAsmJsOffsetTable()
|
/external/bcc/src/cc/frontends/b/ |
D | node.h | 597 TableDeclStmtNode(IdentExprNode::Ptr table_type, IdentExprNodeList&& templates, in TableDeclStmtNode() argument 599 : table_type_(move(table_type)), templates_(move(templates)), id_(move(id)), in TableDeclStmtNode()
|
/external/python/cpython2/Lib/test/ |
D | test_codecs.py | 1798 table_type = type(cp1140.encoding_table) 1799 self.assertEqual(table_type, table_type)
|
/external/python/cpython3/Lib/test/ |
D | test_codecs.py | 2122 table_type = type(cp1140.encoding_table) 2123 self.assertEqual(table_type, table_type)
|