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

  /src/sys/arch/mac68k/mac68k/
clockreg.h 47 #define CLK_INTERVAL ((unsigned int)(CLK_FREQ / hz))
49 #define CLK_INTH ((CLK_INTERVAL >> 8) & 0xff) /* high byte */
50 #define CLK_INTL (CLK_INTERVAL & 0xff) /* low byte */
53 #define PRF_INTERVAL CLK_INTERVAL
clock.c 256 if (profint > CLK_INTERVAL)
257 profint = CLK_INTERVAL;
259 if (CLK_INTERVAL % profint != 0)
261 profint = CLK_INTERVAL / (CLK_INTERVAL / profint);
263 profscale = CLK_INTERVAL / profint;
  /src/sys/arch/hp300/hp300/
clockreg.h 90 #define CLK_INTERVAL 2500 /* 10msec interval at 250 kHz */
92 #define CLK_INTERVAL 5000 /* 20msec interval at 250 kHz */
  /src/sys/arch/x68k/x68k/
clock.c 113 * We actually load the clock with CLK_INTERVAL-1 instead of CLK_INTERVAL.
420 * of the CLK_INTERVAL so that scaling from a system clock
423 if (profint > CLK_INTERVAL || (CLK_INTERVAL % profint) != 0)
424 profint = CLK_INTERVAL;
425 profscale = CLK_INTERVAL / profint;

Completed in 46 milliseconds