Lines Matching refs:nodes
458 MppStopwatchNode *nodes; member
476 MppStopwatchNode *nodes = mpp_calloc(MppStopwatchNode, 8); in mpp_stopwatch_get() local
478 if (impl && nodes) { in mpp_stopwatch_get()
481 impl->nodes = nodes; in mpp_stopwatch_get()
486 MPP_FREE(nodes); in mpp_stopwatch_get()
517 MppStopwatchNode *nodes = mpp_realloc(impl->nodes, MppStopwatchNode, in mpp_stopwatch_record() local
519 if (nodes) { in mpp_stopwatch_record()
520 impl->nodes = nodes; in mpp_stopwatch_record()
526 MppStopwatchNode *node = impl->nodes + impl->filled_count; in mpp_stopwatch_record()
547 if (impl->show_on_exit && impl->nodes && impl->filled_count) { in mpp_stopwatch_put()
548 MppStopwatchNode *node = impl->nodes; in mpp_stopwatch_put()
563 MPP_FREE(impl->nodes); in mpp_stopwatch_put()
578 RK_S64 base_time = impl->nodes[0].time; in mpp_stopwatch_elapsed_time()
579 RK_S64 curr_time = impl->nodes[impl->filled_count - 1].time; in mpp_stopwatch_elapsed_time()