/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 in typeref:typename:int 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 in typeref:typename:int 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 | 128 int delay_divisor; /* delay constant */ variable in typeref:typename:int 141 delay_divisor = 30; /* XXX */ 273 printf("delay constant: %d\n", delay_divisor);
|
/src/sys/arch/next68k/next68k/ |
machdep.c | 171 * On the 68020/68030, the value of delay_divisor is roughly 174 * On the 68040/68060(?), the value of delay_divisor is roughly 179 int delay_divisor = 759 / 33; /* delay constant; assume fastest 33 MHz */ variable in typeref:typename:int 333 delay_divisor = 759 / cpuspeed; 338 delay_divisor = 2048 / cpuspeed;
|
/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 in typeref:typename:int 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 in typeref:typename:int 378 delay_divisor = 102; 390 delay_divisor = 30;
|
/src/sys/arch/mvme68k/mvme68k/ |
machdep.c | 175 * On the 68020/68030 (mvme14x), the value of delay_divisor is roughly 182 int delay_divisor = 512; /* assume some reasonable value to start */ variable in typeref:typename:int 294 * we adjust the delay_divisor until we get the result we want. 300 for (delay_divisor = 512; delay_divisor > 0; delay_divisor--) { 313 if (delay_divisor == 0) { 314 delay_divisor = 1; 320 cpuspeed = 8192 / delay_divisor; 346 for (delay_divisor = (cputype == CPU_68060) ? 20 : 154 [all...] |
/src/sys/arch/hp300/hp300/ |
machdep.c | 159 * Note that the value of delay_divisor is roughly 165 int delay_divisor; /* delay constant */ variable in typeref:typename:int 483 printf("cpu: delay divisor %d", delay_divisor);
|
/src/sys/arch/news68k/news68k/ |
machdep.c | 148 * Note that the value of delay_divisor is roughly 153 int delay_divisor = 82; /* delay constant */ variable in typeref:typename:int 258 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 in typeref:typename:int 378 * This delay_divisor method cannot get accurate cpuspeed 386 cpuspeed = 759 / delay_divisor; 393 cpuspeed = 2048 / delay_divisor; 399 cpuspeed = 2048 / delay_divisor;
|