HomeSort by: relevance | last modified time | path
    Searched defs:delay_divisor (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/arch/sun2/sun2/
locore2.c 91 * Note that the value of delay_divisor is roughly
94 int delay_divisor = 82; /* assume the fastest (3/260) */ variable
229 delay_divisor = 205; /* 10 MHz */
236 delay_divisor = 205; /* 10 MHz */
  /src/sys/arch/sun3/sun3/
locore2.c 95 * Note that the value of delay_divisor is roughly
98 int delay_divisor = 82; /* assume the fastest (3/260) */ variable
249 delay_divisor = 128; /* 16 MHz */
255 delay_divisor = 102; /* 20 MHz */
261 delay_divisor = 120; /* 17 MHz */
268 delay_divisor = 120; /* 17 MHz */
275 delay_divisor = 82; /* 25 MHz */
285 delay_divisor = 102; /* 20 MHz XXX: Correct? */
  /src/sys/arch/cesfic/cesfic/
machdep.c 122 int delay_divisor; /* delay constant */ variable
135 delay_divisor = 30; /* XXX */
267 printf("delay constant: %d\n", delay_divisor);
  /src/sys/arch/sun3/sun3x/
machdep.c 253 * Note that the value of delay_divisor is roughly
256 int delay_divisor = 62; /* assume the fastest (33 MHz) */ variable
274 delay_divisor = 102; /* 20 MHz */
280 delay_divisor = 62; /* 33 MHz */
  /src/sys/arch/luna68k/luna68k/
machdep.c 142 * On the 68020/68030, the value of delay_divisor is roughly
145 * On the 68040/68060(?), the value of delay_divisor is roughly
150 int delay_divisor = 30; /* for delay() loop count */ variable
400 delay_divisor = 102;
412 delay_divisor = 30;
  /src/sys/arch/mvme68k/mvme68k/
machdep.c 172 * On the 68020/68030 (mvme14x), the value of delay_divisor is roughly
179 int delay_divisor = 512; /* assume some reasonable value to start */ variable
341 * we adjust the delay_divisor until we get the result we want.
347 for (delay_divisor = 512; delay_divisor > 0; delay_divisor--) {
360 if (delay_divisor == 0) {
361 delay_divisor = 1;
367 cpuspeed = 8192 / delay_divisor;
393 for (delay_divisor = (cputype == CPU_68060) ? 20 : 154
    [all...]
  /src/sys/arch/next68k/next68k/
machdep.c 170 * On the 68020/68030, the value of delay_divisor is roughly
173 * On the 68040/68060(?), the value of delay_divisor is roughly
178 int delay_divisor = 759 / 33; /* delay constant; assume fastest 33 MHz */ variable
390 delay_divisor = 759 / cpuspeed;
395 delay_divisor = 2048 / cpuspeed;
  /src/sys/arch/hp300/hp300/
machdep.c 159 * Note that the value of delay_divisor is roughly
165 int delay_divisor; /* delay constant */ variable
543 printf("cpu: delay divisor %d", delay_divisor);
  /src/sys/arch/news68k/news68k/
machdep.c 147 * Note that the value of delay_divisor is roughly
152 int delay_divisor = 82; /* delay constant */ variable
284 delay_divisor = (20480 / cpuspeed + 5) / 10; /* XXX */
  /src/sys/arch/x68k/x68k/
machdep.c 161 * On the 68020/68030, the value of delay_divisor is roughly
164 * On the 68040, the value of delay_divisor is roughly
167 * On the 68060, the value of delay_divisor is reported to be
170 int delay_divisor = 140; /* assume some reasonable value to start */ variable
403 * This delay_divisor method cannot get accurate cpuspeed
411 cpuspeed = 759 / delay_divisor;
418 cpuspeed = 2048 / delay_divisor;
424 cpuspeed = 2048 / delay_divisor;

Completed in 32 milliseconds