/third_party/python/Lib/ |
H A D | profile.py | 273 cc, ns, tt, ct, callers = timings[fn] 274 timings[fn] = cc, ns + 1, tt, ct, callers 284 cc, ns, tt, ct, callers = timings[fn] 285 timings[fn] = cc, ns+1, tt, ct, callers 306 cc, ns, tt, ct, callers = timings[rfn] 315 if pfn in callers: 316 callers[pfn] = callers[pfn] + 1 # hack: gather more 321 callers[pfn] = 1 323 timings[rfn] = cc, ns - 1, tt + rit, ct, callers [all...] |
H A D | trace.py | 156 callers=None, outfile=None): 165 self.callers = callers 166 if self.callers is None: 167 self.callers = {} 168 self.callers = self.callers.copy() 175 counts, calledfuncs, callers = pickle.load(f) 176 self.update(self.__class__(counts, calledfuncs, callers=callers)) [all...] |
H A D | cProfile.py | 66 callers = {} 67 callersdicts[id(entry.code)] = callers 68 self.stats[func] = cc, nc, tt, ct, callers 75 callers = callersdicts[id(subentry.code)] 82 if func in callers: 83 prev = callers[func] 88 callers[func] = nc, cc, tt, ct
|
H A D | pstats.py | 160 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 164 if ("jprofile", 0, "profiler") in callers: 265 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 285 for func, (cc, nc, tt, ct, callers) in oldstats.items(): 290 for func2, caller in callers.items(): 314 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 317 for func2, caller in callers.items(): 370 cc, nc, tt, ct, callers = self.stats[func] 457 cc, nc, tt, ct, callers = self.stats[func] 458 self.print_call_line(width, func, callers, "< [all...] |
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ir_function_detect_recursion.cpp | 151 exec_list callers; member in __anon7172::function 218 target->callers.push_tail(node); in visit_enter() 253 if (f->callers.is_empty() || f->callees.is_empty()) { in remove_unlinked_functions() 254 while (!f->callers.is_empty()) { in remove_unlinked_functions() 255 struct call_node *n = (struct call_node *) f->callers.pop_head(); in remove_unlinked_functions() 261 destroy_links(& n->func->callers, f); in remove_unlinked_functions()
|
/third_party/python/Tools/scripts/ |
H A D | objgraph.py | 14 # -c: print callers per objectfile 109 callers = [] 112 callers = callers + undef2file[label] 113 if callers: 114 callers.sort() 117 for fn in callers: 160 print('-c: print callers per objectfile')
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_parameters.cpp | 98 std::vector<opt::Instruction*> callers = in Apply() local 100 if (!callers.empty()) { in Apply() 103 for (auto* instr : callers) { in Apply() 114 std::vector<opt::Instruction*> callers = in Apply() local 116 if (!callers.empty()) { in Apply()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass_add_parameters.cpp | 98 std::vector<opt::Instruction*> callers = in Apply() local 100 if (!callers.empty()) { in Apply() 103 for (auto* instr : callers) { in Apply() 114 std::vector<opt::Instruction*> callers = in Apply() local 116 if (!callers.empty()) { in Apply()
|
/third_party/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_parameters.cpp | 98 std::vector<opt::Instruction*> callers = in Apply() local 100 if (!callers.empty()) { in Apply() 103 for (auto* instr : callers) { in Apply() 114 std::vector<opt::Instruction*> callers = in Apply() local 116 if (!callers.empty()) { in Apply()
|
/third_party/node/deps/v8/tools/gcmole/ |
H A D | gcmole.py | 374 def mark(funcname, callers): 375 for caller in callers: 381 for funcname, callers in list(self.funcs.items()): 383 mark(funcname, callers)
|
/third_party/python/Lib/test/ |
H A D | test_trace.py | 330 """White-box testing of callers tracing""" 353 self.assertEqual(self.tracer.results().callers, expected) 423 self.assertEqual(results.callers, {'caller': 1})
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 17702 ** within the database. So that they appear as part of the callers [all...] |