HomeSort by: relevance | last modified time | path
    Searched refs:TICKS_PER_SEC (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/arch/rs6000/stand/boot/
boot.h 3 #define TICKS_PER_SEC (66666667 / 4) /* 66MHz */
4 #define NS_PER_TICK (1000000000 / TICKS_PER_SEC)
  /src/sys/arch/prep/stand/boot/
boot.h 3 #define TICKS_PER_SEC (66666667 / 4) /* 66MHz */
4 #define NS_PER_TICK (1000000000 / TICKS_PER_SEC)
boot.c 124 btinfo_clock.ticks_per_sec = 1000000000;
126 btinfo_clock.ticks_per_sec = resp ?
127 residual.VitalProductData.ProcessorBusHz/4 : TICKS_PER_SEC;
129 ns_per_tick = 1000000000 / btinfo_clock.ticks_per_sec;
  /src/sys/arch/bebox/stand/boot/
boot.h 3 #define TICKS_PER_SEC (33000000 / 4) /* 33MHz */
4 #define NS_PER_TICK (1000000000 / TICKS_PER_SEC)
boot.c 116 btinfo_clock.ticks_per_sec = TICKS_PER_SEC;
  /src/sys/arch/landisk/stand/boot/
delay.c 91 #define TICKS_PER_SEC (PCLOCK / TICK_PRESC)
92 #define MS_PER_TICK (1000000 / TICKS_PER_SEC)
  /src/external/mit/libuv/dist/src/win/
fs.c 125 #define TICKS_PER_SEC ((int64_t) 1e9 / NSEC_PER_TICK)
126 static const int64_t WIN_TO_UNIX_TICK_OFFSET = 11644473600 * TICKS_PER_SEC;
130 ts->tv_sec = filetime / TICKS_PER_SEC;
131 ts->tv_nsec = (filetime % TICKS_PER_SEC) * NSEC_PER_TICK;
140 int64_t bigtime = ((time) * TICKS_PER_SEC + WIN_TO_UNIX_TICK_OFFSET); \

Completed in 45 milliseconds