Lines Matching full:timings
127 self.timings[]. The index is always the name stored in self.cur[-3].
145 self.timings = {}
271 timings = self.timings
272 if fn in timings:
273 cc, ns, tt, ct, callers = timings[fn]
274 timings[fn] = cc, ns + 1, tt, ct, callers
276 timings[fn] = 0, 0, 0, 0, {}
282 timings = self.timings
283 if fn in timings:
284 cc, ns, tt, ct, callers = timings[fn]
285 timings[fn] = cc, ns+1, tt, ct, callers
287 timings[fn] = 0, 0, 0, 0, {}
305 timings = self.timings
306 cc, ns, tt, ct, callers = timings[rfn]
323 timings[rfn] = cc, ns - 1, tt + rit, ct, callers
374 # timings for self.cmd frame.
403 for func, (cc, ns, tt, ct, callers) in self.timings.items():
531 p.timings.items():