Lines Matching refs:nodes
434 MppStopwatchNode *nodes; member
452 MppStopwatchNode *nodes = mpp_calloc(MppStopwatchNode, 8); in mpp_stopwatch_get() local
454 if (impl && nodes) { in mpp_stopwatch_get()
457 impl->nodes = nodes; in mpp_stopwatch_get()
462 MPP_FREE(nodes); in mpp_stopwatch_get()
495 MppStopwatchNode *nodes = mpp_realloc(impl->nodes, MppStopwatchNode, in mpp_stopwatch_record() local
498 if (nodes) { in mpp_stopwatch_record()
499 impl->nodes = nodes; in mpp_stopwatch_record()
505 MppStopwatchNode *node = impl->nodes + impl->filled_count; in mpp_stopwatch_record()
527 if (impl->show_on_exit && impl->nodes && impl->filled_count) { in mpp_stopwatch_put()
528 MppStopwatchNode *node = impl->nodes; in mpp_stopwatch_put()
543 MPP_FREE(impl->nodes); in mpp_stopwatch_put()
559 rk_s64 base_time = impl->nodes[0].time; in mpp_stopwatch_elapsed_time()
560 rk_s64 curr_time = impl->nodes[impl->filled_count - 1].time; in mpp_stopwatch_elapsed_time()