Lines Matching refs:count
101 void OS_StartTimer(OSTimer id, u16 count, OSTimerPrescaler preScale) in OS_StartTimer() argument
109 OS_SetTimerCount(id, (u16)~count); in OS_StartTimer()
117 void OS_StartTimer32(OSTimer32 id, u32 count, OSTimerPrescaler preScale) in OS_StartTimer32() argument
126 OS_SetTimerCount((OSTimer)((int)id + 1), (u16)((~count >> 16) & 0xffff)); in OS_StartTimer32()
127 OS_SetTimerCount((OSTimer)id, (u16)(~count & 0xffff)); in OS_StartTimer32()
139 void OS_StartTimer48(OSTimer48 id, u64 count, OSTimerPrescaler preScale) in OS_StartTimer48() argument
149 OS_SetTimerCount((OSTimer)((int)id + 2), (u16)((~count >> 32) & 0xffff)); in OS_StartTimer48()
150 OS_SetTimerCount((OSTimer)((int)id + 1), (u16)((~count >> 16) & 0xffff)); in OS_StartTimer48()
151 OS_SetTimerCount((OSTimer)id, (u16)(~count & 0xffff)); in OS_StartTimer48()
165 void OS_StartTimer64(u64 count, OSTimerPrescaler preScale) in OS_StartTimer64() argument
175 OS_SetTimerCount(OS_TIMER_3, (u16)((~count >> 48) & 0xffff)); in OS_StartTimer64()
176 OS_SetTimerCount(OS_TIMER_2, (u16)((~count >> 32) & 0xffff)); in OS_StartTimer64()
177 OS_SetTimerCount(OS_TIMER_1, (u16)((~count >> 16) & 0xffff)); in OS_StartTimer64()
178 OS_SetTimerCount(OS_TIMER_0, (u16)(~count & 0xffff)); in OS_StartTimer64()