/src/games/sail/ |
dr_2.c | 179 int drift; local in function:score 187 drift = fp->drift; 188 move_ship(ship, movement, &fp->dir, &fp->row, &fp->col, &drift); 209 short *row, short *col, int *drift) 237 if (windspeed != 0 && ++*drift > 2) { 245 *drift = 0;
|
dr_3.c | 58 int row[NSHIP], col[NSHIP], dir[NSHIP], drift[NSHIP]; local in function:moveall 101 drift[n] = sp->file->drift; 183 if (drift[n] != sp->file->drift) 184 send_drift(sp, sp->file->drift); 255 if (windspeed != 0 && ++sp->file->drift > 2 && 262 sp->file->drift = 0;
|
extern.h | 154 char drift; /* 82 */ member in struct:File
|
/src/sys/dev/hpc/ |
hpcbatteryvar.h | 90 int drift; /* value drifts */ member in struct:hpcbattery_spec
|
/src/sys/arch/x86/x86/ |
cpu.c | 874 int64_t drift; local in function:cpu_boot_secondary 889 /* Synchronize TSC again, check for drift. */ 890 drift = ci->ci_data.cpu_cc_skew; 895 drift -= ci->ci_data.cpu_cc_skew; 896 aprint_debug_dev(ci->ci_dev, "TSC skew=%lld drift=%lld\n", 897 (long long)ci->ci_data.cpu_cc_skew, (long long)drift); 898 tsc_sync_drift(drift); 970 * this causes the TSC to drift. We want this to happen, so that we 971 * can later detect (in tsc_tc_init) any abnormal drift with invariant 1033 * drift that would have been caused by the use of MONITOR/MWAI [all...] |