/external/python/cpython3/Lib/ |
D | profile.py | 272 cc, ns, tt, ct, callers = timings[fn] 273 timings[fn] = cc, ns + 1, tt, ct, callers 283 cc, ns, tt, ct, callers = timings[fn] 284 timings[fn] = cc, ns+1, tt, ct, callers 305 cc, ns, tt, ct, callers = timings[rfn] 314 if pfn in callers: 315 callers[pfn] = callers[pfn] + 1 # hack: gather more 320 callers[pfn] = 1 322 timings[rfn] = cc, ns - 1, tt + rit, ct, callers 402 for func, (cc, ns, tt, ct, callers) in self.timings.items(): [all …]
|
D | cProfile.py | 65 callers = {} 66 callersdicts[id(entry.code)] = callers 67 self.stats[func] = cc, nc, tt, ct, callers 74 callers = callersdicts[id(subentry.code)] 81 if func in callers: 82 prev = callers[func] 87 callers[func] = nc, cc, tt, ct
|
D | trace.py | 155 callers=None, outfile=None): argument 164 self.callers = callers 165 if self.callers is None: 166 self.callers = {} 167 self.callers = self.callers.copy() 174 counts, calledfuncs, callers = pickle.load(f) 175 self.update(self.__class__(counts, calledfuncs, callers)) 190 callers = self.callers 193 other_callers = other.callers 202 callers[key] = 1 [all …]
|
D | pstats.py | 141 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 145 if ("jprofile", 0, "profiler") in callers: 246 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 266 for func, (cc, nc, tt, ct, callers) in oldstats.items(): 271 for func2, caller in callers.items(): 295 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 298 for func2, caller in callers.items(): 403 cc, nc, tt, ct, callers = self.stats[func] 404 self.print_call_line(width, func, callers, "<-") 413 for cc, nc, tt, ct, callers in self.stats.values(): [all …]
|
/external/python/cpython2/Lib/ |
D | profile.py | 293 cc, ns, tt, ct, callers = timings[fn] 294 timings[fn] = cc, ns + 1, tt, ct, callers 304 cc, ns, tt, ct, callers = timings[fn] 305 timings[fn] = cc, ns+1, tt, ct, callers 326 cc, ns, tt, ct, callers = timings[rfn] 335 if pfn in callers: 336 callers[pfn] = callers[pfn] + 1 # hack: gather more 341 callers[pfn] = 1 343 timings[rfn] = cc, ns - 1, tt + rit, ct, callers 424 for func, (cc, ns, tt, ct, callers) in self.timings.iteritems(): [all …]
|
D | cProfile.py | 105 callers = {} 106 callersdicts[id(entry.code)] = callers 107 self.stats[func] = cc, nc, tt, ct, callers 114 callers = callersdicts[id(subentry.code)] 121 if func in callers: 122 prev = callers[func] 127 callers[func] = nc, cc, tt, ct
|
D | trace.py | 223 callers=None, outfile=None): argument 232 self.callers = callers 233 if self.callers is None: 234 self.callers = {} 235 self.callers = self.callers.copy() 241 counts, calledfuncs, callers = \ 243 self.update(self.__class__(counts, calledfuncs, callers)) 252 callers = self.callers 255 other_callers = other.callers 264 callers[key] = 1 [all …]
|
D | pstats.py | 128 for func, (cc, nc, tt, ct, callers) in self.stats.items(): 132 if ("jprofile", 0, "profiler") in callers: 230 for func, (cc, nc, tt, ct, callers) in self.stats.iteritems(): 250 for func, (cc, nc, tt, ct, callers) in oldstats.iteritems(): 255 for func2, caller in callers.iteritems(): 278 for func, (cc, nc, tt, ct, callers) in self.stats.iteritems(): 281 for func2, caller in callers.iteritems(): 385 cc, nc, tt, ct, callers = self.stats[func] 386 self.print_call_line(width, func, callers, "<-") 395 for cc, nc, tt, ct, callers in self.stats.itervalues(): [all …]
|
/external/python/cpython3/Tools/scripts/ |
D | objgraph.py | 109 callers = [] 112 callers = callers + undef2file[label] 113 if callers: 114 callers.sort() 117 for fn in callers:
|
/external/python/cpython2/Tools/scripts/ |
D | objgraph.py | 111 callers = [] 114 callers = callers + undef2file[label] 115 if callers: 116 callers.sort() 119 for fn in callers:
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_function_detect_recursion.cpp | 152 exec_list callers; member in __anon48160c2a0111::function 220 target->callers.push_tail(node); in visit_enter() 255 if (f->callers.is_empty() || f->callees.is_empty()) { in remove_unlinked_functions() 256 while (!f->callers.is_empty()) { in remove_unlinked_functions() 257 struct call_node *n = (struct call_node *) f->callers.pop_head(); in remove_unlinked_functions() 263 destroy_links(& n->func->callers, f); in remove_unlinked_functions()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | call_graph.cc | 151 if (b_node.callers().empty()) { in DominatesHelper() 158 for (const HloComputation* b_caller : b_node.callers()) { in DominatesHelper() 199 if (node.callers().empty()) { in SetCallContexts() 252 if (node.callers().empty()) { in SetNodeDepths() 340 if (node.callers().empty()) { in VisitNodes() 368 std::vector<HloInstruction*> callers; in GetComputationCallers() local 370 callers.push_back(callsite.instruction()); in GetComputationCallers() 372 return callers; in GetComputationCallers() 438 for (const HloComputation* caller : node.callers()) { in ToString()
|
D | call_graph_test.cc | 110 EXPECT_TRUE(node.callers().empty()); in TEST_F() 157 EXPECT_TRUE(entry_node.callers().empty()); in TEST_F() 166 EXPECT_EQ(1, map_node.callers().size()); in TEST_F() 191 EXPECT_TRUE(entry_node.callers().empty()); in TEST_F() 199 EXPECT_EQ(1, called_node.callers().size()); in TEST_F() 288 EXPECT_EQ(1, true_node.callers().size()); in TEST_F() 289 EXPECT_EQ(entry_computation, true_node.callers()[0]); in TEST_F() 294 EXPECT_EQ(1, false_node.callers().size()); in TEST_F() 295 EXPECT_EQ(entry_computation, false_node.callers()[0]); in TEST_F() 368 EXPECT_THAT(c_node.callers(), in TEST_F()
|
/external/v8/tools/gcmole/ |
D | gcmole.lua | 350 local function mark(from, callers) 351 for caller, _ in pairs(callers) do 360 for funcname, callers in pairs(funcs) do 361 if gc[funcname] then mark(funcname, callers) end
|
/external/google-breakpad/src/processor/ |
D | stackwalker_selftest.cc | 392 unsigned int callers = CountCallerFrames(); in Recursor() local 393 if (callers != parent_callers + 1) in Recursor() 397 return Recursor(depth - 1, callers); in Recursor()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/RuntimeDyld/ARM/ |
D | MachO_Thumb_Relocations.s | 35 # Check that stubs for thumb callers use thumb code (not arm), and that thumb 54 # Check that stubs for arm callers use arm code (not thumb), and that thumb
|
/external/e2fsprogs/debian/ |
D | comerr-dev.doc-base | 6 to return errors to their callers, and for programs
|
/external/llvm/test/Transforms/Inline/ |
D | inline_dce.ll | 2 ; inlined into all of their callers.
|
/external/swiftshader/third_party/LLVM/test/Transforms/Inline/ |
D | inline_dce.ll | 2 ; inlined into all of their callers.
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | ram_file_block_cache_test.cc | 479 const int callers = 4; in TEST() local 480 BlockingCounter counter(callers); in TEST() 493 RamFileBlockCache cache(block_size, 2 * callers * block_size, 0, fetcher); in TEST() 495 for (int i = 0; i < callers; i++) { in TEST()
|
/external/autotest/client/tests/aio_dio_bugs/ |
D | control | 11 that would call aio_complete() before the dio callers would update i_size.
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_TensorSummary.pbtxt | 29 This op is being phased out in favor of TensorSummaryV2, which lets callers pass
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/ |
D | inline_dce.ll | 2 ; inlined into all of their callers.
|
/external/autotest/client/site_tests/login_LoginSuccess/ |
D | control | 24 success so callers can verify it ran correctly.
|
/external/llvm/test/Other/ |
D | can-execute.txt | 14 test, but for now this test serves as a reminder to audit all the callers if
|