Home
last modified time | relevance | path

Searched refs:OS_TIMER_CLOCK (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-3.2.2/include/revolution/
Dos.h557 #define OS_TIMER_CLOCK (OS_BUS_CLOCK/4) macro
567 #ifndef OS_TIMER_CLOCK
568 #define OS_TIMER_CLOCK (OS_BUS_CLOCK/4) macro
571 #define OSTicksToCycles( ticks ) (((ticks) * ((OS_CORE_CLOCK * 2) / OS_TIMER_CLOCK)) / 2)
572 #define OSTicksToSeconds( ticks ) ((ticks) / OS_TIMER_CLOCK)
573 #define OSTicksToMilliseconds( ticks ) ((ticks) / (OS_TIMER_CLOCK / 1000))
574 #define OSTicksToMicroseconds( ticks ) (((ticks) * 8) / (OS_TIMER_CLOCK / 125000))
575 #define OSTicksToNanoseconds( ticks ) (((ticks) * 8000) / (OS_TIMER_CLOCK / 125000))
576 #define OSSecondsToTicks( sec ) ((sec) * OS_TIMER_CLOCK)
577 #define OSMillisecondsToTicks( msec ) ((msec) * (OS_TIMER_CLOCK / 1000))
[all …]
/RvlSDK-3.2.2/build/demos/fntdemo/src/
Dfntdemo1.c549 OSReport("Initialization Time: %.3f [sec]\n", (OSGetTime() - timeStart) / (f32)OS_TIMER_CLOCK); in main()