Lines Matching refs:period
35 uint64_t period = sample->period + sample->accumulated_period; in DisplayAccumulatedOverhead() local
37 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; in DisplayAccumulatedOverhead()
43 return android::base::StringPrintf("%" PRIu64, sample->period + sample->accumulated_period); in DisplayAccumulatedPeriod()
48 uint64_t period = sample->period; in DisplaySelfOverhead() local
50 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; in DisplaySelfOverhead()
66 BUILD_DISPLAY_UINT64_FUNCTION(DisplaySelfPeriod, period);
142 if (node->period + node->children_period != parent_period) { in DisplayCallGraphEntry()
143 double percentage = 100.0 * (node->period + node->children_period) / parent_period; in DisplayCallGraphEntry()
161 if (!node->children.empty() && node->period != 0) { in DisplayCallGraphEntry()
163 100.0 * node->period / (node->period + node->children_period)); in DisplayCallGraphEntry()
167 node->children_period + node->period, (i + 1 == node->children.size())); in DisplayCallGraphEntry()