Home
last modified time | relevance | path

Searched refs:native_tick_count (Results 1 – 3 of 3) sorted by relevance

/external/pigweed/pw_chrono_threadx/
Dsystem_clock.cc34 ULONG native_tick_count = 0; variable
48 if (new_native_tick_count < native_tick_count) { in GetSystemClockTickCount()
52 native_tick_count = new_native_tick_count; in GetSystemClockTickCount()
53 return overflow_tick_count + native_tick_count; in GetSystemClockTickCount()
/external/pigweed/pw_chrono_freertos/
Dsystem_clock.cc32 TickType_t native_tick_count = 0; variable
48 if (new_native_tick_count < native_tick_count) { in GetSystemClockTickCount()
52 native_tick_count = new_native_tick_count; in GetSystemClockTickCount()
53 return overflow_tick_count + native_tick_count; in GetSystemClockTickCount()
/external/pigweed/pw_chrono_embos/
Dsystem_clock.cc30 uint32_t native_tick_count = 0; variable
54 if (new_native_tick_count < native_tick_count) { in GetSystemClockTickCount()
58 native_tick_count = new_native_tick_count; in GetSystemClockTickCount()
59 return overflow_tick_count + native_tick_count; in GetSystemClockTickCount()