Lines Matching refs:time
375 str r0, [ r2, #OSFunctionCost.entry.time ] in __PROFILE_ENTRY()
452 str r0, [ r2, #OSFunctionCost.exit.time ] in __PROFILE_EXIT()
525 u32 time; in OSi_SetStatistics() local
529 time = exit->exit.time - entry->entry.time; in OSi_SetStatistics()
534 time = (time > entry->entry.interval) ? (u32)(time - entry->entry.interval) : 0; in OSi_SetStatistics()
543 p->time = time; in OSi_SetStatistics()
550 p->time += time; in OSi_SetStatistics()
605 OS_Printf("----: %x %x\n", bp->entry.time, bp->entry.interval); in OS_CalcThreadStatistics()
607 OS_Printf("----: %x\n", bp->entry.time); in OS_CalcThreadStatistics()
613 OS_Printf("%s: %x %x\n", bp->entry.name, bp->entry.time, bp->entry.interval); in OS_CalcThreadStatistics()
615 OS_Printf("%s: %x\n", bp->entry.name, bp->entry.time); in OS_CalcThreadStatistics()
710 OS_Printf("%s: count %d, cost %lld\n", p->name, p->count, p->time); in OS_DumpStatistics()