Lines Matching refs:TimedMethod

136 typedef struct TimedMethod {  struct
137 struct TimedMethod *next; argument
141 } TimedMethod; argument
172 struct TimedMethod *parents[2]; /* 0=normal, 1=recursive */
173 struct TimedMethod *children[2]; /* 0=normal, 1=recursive */
407 const TimedMethod *timedA, *timedB; in compareTimedMethod()
411 timedA = (TimedMethod const *)a; in compareTimedMethod()
412 timedB = (TimedMethod const *)b; in compareTimedMethod()
1286 TimedMethod *pTimed; in addInclusiveTime()
1315 TimedMethod *children = parent->children[parentIsRecursive]; in addInclusiveTime()
1325 pTimed = (TimedMethod *) malloc(sizeof(TimedMethod)); in addInclusiveTime()
1336 TimedMethod *parents = child->parents[childIsRecursive]; in addInclusiveTime()
1346 pTimed = (TimedMethod *) malloc(sizeof(TimedMethod)); in addInclusiveTime()
1369 TimedMethod *sortTimedMethodList(TimedMethod *list, int *num) in sortTimedMethodList()
1372 TimedMethod *pTimed, *sorted; in sortTimedMethodList()
1383 sorted = (TimedMethod *) malloc(sizeof(TimedMethod) * num_entries); in sortTimedMethodList()
1385 memcpy(&sorted[ii], pTimed, sizeof(TimedMethod)); in sortTimedMethodList()
1386 qsort(sorted, num_entries, sizeof(TimedMethod), compareTimedMethod); in sortTimedMethodList()
1402 void printInclusiveMethod(MethodEntry *method, TimedMethod *list, int numCalls, in printInclusiveMethod()
1406 TimedMethod *pTimed; in printInclusiveMethod()
1420 TimedMethod *sorted = sortTimedMethodList(list, &num); in printInclusiveMethod()
1633 TimedMethod* child; in createLabels()
1647 TimedMethod* child; in createLinks()
1727 TimedMethod *pTimed; in printInclusiveProfile()