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

  /src/sys/arch/sparc/sparc/
timerreg.h 108 #define TMR_SHIFT 10 /* shift to obtain microseconds */
121 #define tmr_ustolim(n) (((n) + 1) << TMR_SHIFT)
127 #define tmr_ustolim4m(n) ((n) << TMR_SHIFT)
131 #define tmr_cnttous(c) ((((c) >> TMR_SHIFT) & TMR_MASK) - 1)
timer.c 226 t0 = (t0 >> TMR_SHIFT) & TMR_MASK;
227 t1 = (t1 >> TMR_SHIFT) & TMR_MASK;
234 for (t0 = 0; t0 < TMR_SHIFT; t0++)
242 counter_timecounter.tc_frequency = 1000000 * (TMR_SHIFT - t0 + 1);
  /src/sys/arch/sparc64/sparc64/
timerreg.h 142 #define TMR_SHIFT 10 /* shift to obtain microseconds */
146 /* #define tmr_ustolim(n) (((n) + 1) << TMR_SHIFT) */
clock.c 328 t0 = (t0 >> TMR_SHIFT) & TMR_MASK;
329 t1 = (t1 >> TMR_SHIFT) & TMR_MASK;

Completed in 14 milliseconds