/external/perfetto/tools/trace_to_text/ |
D | trace_to_profile.cc | 113 std::map<std::string, uint64_t> string_table; in DumpProfilePacket() local 114 string_table[""] = kEmpty; in DumpProfilePacket() 115 string_table["objects"] = kObjects; in DumpProfilePacket() 116 string_table["alloc_objects"] = kAllocObjects; in DumpProfilePacket() 117 string_table["count"] = kCount; in DumpProfilePacket() 118 string_table["space"] = kSpace; in DumpProfilePacket() 119 string_table["alloc_space"] = kAllocSpace; in DumpProfilePacket() 120 string_table["bytes"] = kBytes; in DumpProfilePacket() 160 decltype(string_table)::iterator it; in DumpProfilePacket() 162 string_table.emplace(filename, string_table.size()); in DumpProfilePacket() [all …]
|
/external/tensorflow/tensorflow/python/profiler/ |
D | pprof_profiler.py | 99 def string_table(self): member in StringTable 107 def __init__(self, string_table): argument 113 self._string_table = string_table 212 def __init__(self, string_table): argument 218 self._string_table = string_table 298 pprof_proto.string_table.append(device_description) 359 pprof_profile.string_table.extend(self._string_table.string_table())
|
D | pprof_profiler_test.py | 157 if profile.string_table[sample.label[0].str] == 'while/Add':
|
/external/swiftshader/third_party/LLVM/test/Scripts/ |
D | macho-dumpx | 19 self.string_table = None 52 if self.string_table is not None: 55 self.string_table = strings 58 if self.string_table is None: 61 end = self.string_table.index('\x00', index) 62 return self.string_table[index:end]
|
D | elf-dump | 48 self.string_table = strings 51 end = self.string_table.index('\x00', index) 52 return self.string_table[index:end]
|
/external/perf_data_converter/src/quipper/ |
D | dso_test_utils.cc | 103 ElfStringTable string_table; in WriteElfWithMultipleBuildids() local 114 section_header.sh_name = string_table.Add(section_name); in WriteElfWithMultipleBuildids() 140 section_header.sh_name = string_table.Add(".shstrtab"); in WriteElfWithMultipleBuildids() 143 Elf_Data *data = data_cache.AddDataToSection(section, string_table.table()); in WriteElfWithMultipleBuildids()
|
/external/perf_data_converter/src/ |
D | perf_data_converter_test.cc | 70 key_stream << profile.string_table(main.filename()) << ":" in GetMapCounts() 71 << profile.string_table(main.build_id()); in GetMapCounts() 79 key_stream << "+" << profile.string_table(dso->filename()) << ":" in GetMapCounts() 80 << profile.string_table(dso->build_id()) << std::hex in GetMapCounts() 103 ret.insert(pp->data.string_table(it.build_id())); in AllBuildIDs() 113 ret.insert(pp->data.string_table(it)); in AllComments()
|
D | profile.proto | 59 // string_table[0] must always be "". 60 repeated string string_table = 6; field
|
/external/mesa3d/src/amd/common/ |
D | sid_tables.py | 139 def format(self, string_table, idx_table): argument 145 values_offsets[value[1]] = string_table.add(strip_prefix(value[0])) 147 string_table.add(self.name), self.s_name, 150 return '{%s, %s(~0u)}' % (string_table.add(self.name), self.s_name) 198 def emit(self, filp, string_table, idx_table): argument 211 filp.write('\t%s,\n' % (field.format(string_table, idx_table)))
|
/external/autotest/server/cros/ap_configurators/ |
D | ap_spec.py | 107 string_table = {MODE_A:'a', MODE_AC:'ac', MODE_B:'b', MODE_G:'g', 114 for current_mode in sorted(string_table.keys()): 117 if i in string_table: 118 string = string + string_table[i] + '/'
|
/external/perfetto/src/trace_processor/ |
D | fuchsia_trace_tokenizer.cc | 234 current_provider_->string_table[index] = id; in ParseRecord() 283 current_provider_->string_table[cat_ref]); in ParseRecord() 291 current_provider_->string_table[name_ref]); in ParseRecord() 312 name = current_provider_->string_table[name_ref]; in ParseRecord() 348 current_provider_->string_table[arg_name_ref]); in ParseRecord()
|
D | fuchsia_trace_tokenizer.h | 44 std::unordered_map<uint64_t, StringId> string_table; member
|
D | BUILD.gn | 120 "string_table.cc", 121 "string_table.h",
|
/external/perfetto/protos/perfetto/trace/chrome/ |
D | chrome_trace_event.proto | 61 // and is an index into |string_table|. 83 // and are indices into |string_table|. 122 repeated ChromeStringTableEntry string_table = 3 [deprecated = true]; field
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | ConstantPoolGen.java | 114 if (!string_table.containsKey(key)) { in ConstantPoolGen() 115 string_table.put(key, new Index(i)); in ConstantPoolGen() 232 private final Map<String, Index> string_table = new HashMap<>(); field in ConstantPoolGen 242 final Index index = string_table.get(str); in lookupString() 263 if (!string_table.containsKey(str)) { in addString() 264 string_table.put(str, new Index(ret)); in addString()
|
/external/v8/src/ast/ |
D | ast-value-factory.h | 251 const base::CustomMatcherHashMap* string_table() const { in string_table() function 271 : string_table_(string_constants->string_table()), in AstValueFactory()
|
/external/tensorflow/tensorflow/core/profiler/ |
D | profile.proto | 12 repeated string string_table = 6; field
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_code.cc | 99 explicit FunctionTable(StringTable* string_table) in FunctionTable() argument 100 : string_table_(string_table) {} in FunctionTable() 177 explicit Samples(StringTable* string_table, const Options* opts) in Samples() argument 178 : string_table_(string_table), opts_(opts) {} in Samples()
|
/external/v8/src/ |
D | json-parser.cc | 886 StringTable* string_table = isolate()->heap()->string_table(); in ScanJsonString() local 887 uint32_t capacity = string_table->Capacity(); in ScanJsonString() 892 Object* element = string_table->KeyAt(entry); in ScanJsonString()
|
/external/perfetto/ |
D | BUILD | 237 "src/trace_processor/string_table.cc", 238 "src/trace_processor/string_table.h", 490 "src/trace_processor/string_table.cc", 491 "src/trace_processor/string_table.h", 698 "src/trace_processor/string_table.cc", 699 "src/trace_processor/string_table.h",
|
/external/libunwind/src/ |
D | elfxx.c | 289 static char* elf_w (string_table) (struct elf_image* ei, int section) { in elf_w() argument 330 char* strtab = elf_w (string_table) (ei, shdr->sh_link); in elf_w() 534 strtab = elf_w (string_table) (ei, ehdr->e_shstrndx); in elf_w()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/Inputs/ |
D | relocs.py | 156 self.string_table = strings 159 end = self.string_table.index('\x00', index) 160 return self.string_table[index:end]
|
/external/llvm/test/tools/llvm-readobj/Inputs/ |
D | relocs.py | 156 self.string_table = strings 159 end = self.string_table.index('\x00', index) 160 return self.string_table[index:end]
|
/external/perfetto/protos/third_party/pprof/ |
D | profile.proto | 71 // string_table[0] must always be "". 72 repeated string string_table = 6; field
|
/external/v8/src/heap/ |
D | mark-compact.cc | 1452 StringTable* string_table = heap()->string_table(); in MarkStringTable() local 1454 if (marking_state()->WhiteToBlack(string_table)) { in MarkStringTable() 1456 string_table->IteratePrefix(custom_root_body_visitor); in MarkStringTable() 1864 StringTable* string_table = heap()->string_table(); in ClearNonLiveReferences() local 1865 InternalizedStringTableCleaner internalized_visitor(heap(), string_table); in ClearNonLiveReferences() 1866 string_table->IterateElements(&internalized_visitor); in ClearNonLiveReferences() 1867 string_table->ElementsRemoved(internalized_visitor.PointersRemoved()); in ClearNonLiveReferences()
|