Lines Matching full:interrupt
34 interrupt. so, we can now use those to calculate CPU utilization
45 uint64_t interrupt;
131 res[i].interrupt = (((uint64_t)psp[i].psp_interruptcycles.psc_hi << 32) +
137 res[i].interrupt);
167 "\t interrupt %llu\n",counters[instance].interrupt);
227 thing in measuring user, kernel, interrupt and idle all together
228 instead of overlapping interrupt with the others like an OS that
230 accounting for interrupt cycles, whereby the cycles do not get
231 properly accounted. The sum of user, kernel, interrupt and idle
238 math with user, kernel and interrupt cycles, we will only
260 delta_cpu_counters[i].interrupt = ending_cpu_counters[i].interrupt -
261 starting_cpu_counters[i].interrupt;
273 delta_cpu_counters[i].interrupt;
284 does _NOT_ overlap with interrupt, we do not have to apply any
288 /* when the accounting for interrupt time gets its act together,
301 fraction_interrupt = (double)delta_cpu_counters[i].interrupt /
304 /* ass-u-me that it is only interrupt that is bogus, and assign
306 estimated_fraction_interrupt = ((double)delta_cpu_counters[i].interrupt +
332 /* when the accounting for interrupt time gets its act together,
346 (delta_cpu_counters[i].interrupt * CALC_ACCURACY) / sanity_cpu_cycles;
350 ((delta_cpu_counters[i].interrupt +