Home
last modified time | relevance | path

Searched refs:timeMax (Results 1 – 8 of 8) sorted by relevance

/kernel/liteos_m/components/debugtools/
Dlos_hwidump.c56 UINT64 timeMax = 0; in ShellCmdHwiInfoShow() local
83 timeMax = (irqData->timeMax * OS_NS_PER_CYCLE) / OS_SYS_NS_PER_US; in ShellCmdHwiInfoShow()
87 …TK(" %10d:%11u%11llu%10llu%9u.%-2u%9u.%-2u %-12s\n", i - OS_SYS_VECTOR_CNT, count, cycles, timeMax, in ShellCmdHwiInfoShow()
/kernel/liteos_a/shell/full/src/cmds/
Dhwi_shellcmd.c65 UINT64 timeMax = 0; in ShellCmdHwiInfoShow() local
75 timeMax = (data->timeMax * OS_NS_PER_CYCLE) / 1000; in ShellCmdHwiInfoShow()
79 …NTK(" %10u:%5u%11u%11llu%10llu%6u.%-2u%8u.%-2u%7u.%-2u%7s %-12s\n", i, cpu, count, cycles, timeMax, in ShellCmdHwiInfoShow()
/kernel/liteos_m/arch/risc-v/riscv32/gcc/
Dlos_timer.c84 UINT64 timeMax = (UINT64)LOSCFG_BASE_CORE_TICK_RESPONSE_MAX - 1; in SysTickReload() local
90 if ((timeMax - nextResponseTime) > timer) { in SysTickReload()
93 timer = timeMax; in SysTickReload()
/kernel/liteos_a/kernel/extended/cpup/
Dlos_cpup_pri.h63 UINT64 timeMax; member
Dlos_cpup.c233 g_irqCpup[index].timeMax = 0; in LOS_CpupReset()
561 if (usedTime > irqCb->timeMax) { in OsCpupIrqEnd()
562 irqCb->timeMax = usedTime; in OsCpupIrqEnd()
/kernel/liteos_m/components/cpup/
Dlos_cpup.h148 UINT64 timeMax; /**< Irq samples count */ member
Dlos_cpup.c657 if (usedTime > g_irqCpup[intNum].timeMax) { in OsCpupIrqEnd()
658 g_irqCpup[intNum].timeMax = usedTime; in OsCpupIrqEnd()
/kernel/liteos_a/kernel/base/sched/
Dlos_statistics.c93 UINT64 timeMax = (schedData->responseTimeMax * OS_NS_PER_CYCLE) / OS_SYS_NS_PER_US; in OsShellShowTickResponse() local
94 PRINTK("%3u%14llu%15llu%11llu\n", cpu, averTime, timeMax, schedData->count); in OsShellShowTickResponse()