HomeSort by: relevance | last modified time | path
    Searched defs:speed (Results 1 - 25 of 128) sorted by relevancy

1 2 3 4 5 6

  /src/bin/stty/
stty.c 134 int speed; local in function:main
136 speed = atoi(*argv);
137 cfsetospeed(&i.t, speed);
138 cfsetispeed(&i.t, speed);
  /src/sys/arch/macppc/dev/
fancontrol.c 52 int temp, i, speed, diff, step; local in function:fancontrol_adjust_zone
74 /* now adjust each fan to the new speed */
77 speed = z->fans[i].min_rpm + diff * step;
79 diff, z->fans[i].min_rpm, z->fans[i].max_rpm, speed);
80 z->set_rpm(z->cookie, z->fans[i].num, speed);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
dce_i2c_sw.h 41 uint32_t speed; member in struct:dce_i2c_sw
  /src/games/trek/
warp.c 60 ** that you may be moving at some riduculous speed. In that
83 double speed; local in function:warp
112 /* compute the speed we will move at, and the time it will take */
113 speed = Ship.warp2 / Param.warptime;
114 time = dist / speed;
135 Move.time = move(fl, course, time, speed);
138 dist = Move.time * speed;
144 printf("\n\n ___ Speed exceeding warp nine ___\n\n");
  /src/sbin/slattach/
slattach.c 69 static int speed = 9600; variable in typeref:typename:int
105 speed = atoi(optarg);
135 cfsetspeed(&tty, speed);
  /src/sys/arch/bebox/stand/boot/
cons.h 44 int speed; /* speed(serial only) */ member in struct:consdev
boot.c 75 int addr, speed; local in function:main
88 cnname = cninit(&addr, &speed);
109 btinfo_console.speed = speed;
  /src/sys/arch/cobalt/stand/boot/
cons.h 44 int speed; /* speed(serial only) */ member in struct:consdev
  /src/sys/arch/mmeye/stand/boot/
cons.h 82 int speed; /* speed(serial only) */ member in struct:consdev
  /src/sys/arch/prep/include/
bootinfo.h 50 int speed; member in struct:btinfo_console
  /src/sys/arch/prep/stand/boot/
cons.h 44 int speed; /* speed(serial only) */ member in struct:consdev
boot.c 78 int addr, speed; local in function:boot
88 cnname = cninit(&addr, &speed);
114 btinfo_console.speed = speed;
  /src/sys/arch/rs6000/include/
bootinfo.h 49 int speed; member in struct:btinfo_console
  /src/sys/arch/rs6000/stand/boot/
cons.h 44 int speed; /* speed(serial only) */ member in struct:consdev
  /src/sys/arch/sgimips/sgimips/
console.c 215 int speed; local in function:mace_serial_init
220 /* Get comm speed from ARCS */
222 speed = strtoul(dbaud, NULL, 10);
231 speed, COM_FREQ, COM_TYPE_NORMAL, comcnmode) == 0)
  /src/sys/arch/sgimips/stand/common/
iris_boot.c 78 int zs_addr, speed; local in function:main
80 cninit(&zs_addr, &speed);
iris_cons.h 35 int speed; /* speed(serial only) */ member in struct:consdev
  /src/sys/arch/arm/xilinx/
zynq7000_uart.c 105 int speed; local in function:zynq_uart_console_consinit
108 speed = fdtbus_get_stdout_speed();
109 if (speed < 0)
110 speed = 115200; /* default */
113 if (zynquart_cons_attach(bst, addr, speed, flags))
  /src/games/hals_end/
hals_end.c 12 int speed; variable in typeref:typename:int
32 int sayingspeed = (100000 + (90000 * emotion)) / speed;
33 int worddelay = 50000 / speed;
70 int sdelay = (100000 + (50000 * emotion)) / speed;
102 int mdelay = (150000 * fear) / speed;
127 emotion = fear = speed = 1;
132 speed <<= 1;
  /src/sys/arch/bebox/include/
bootinfo.h 51 int speed; member in struct:btinfo_console
  /src/sys/arch/hpc/stand/hpcboot/
console.cpp 146 int speed = HPC_PREFERENCE.serial_speed; local in function:SerialConsole::OpenCOM1
162 dcb.BaudRate = speed;
  /src/sys/arch/powerpc/oea/
cpu_speedctl.c 88 CTLTYPE_INT, "target", "CPU speed", sysctl_cpuspeed_temp,
117 int speed, nspeed = -1, mhz; local in function:sysctl_cpuspeed_temp
119 speed = (scom_read(SCOM_PSR) >> 56) & 3;
120 if (speed > 1) speed = 1;
121 mhz = scom_speeds[speed];
136 if (nspeed != speed) {
152 uint64_t speed; local in function:sysctl_cpuspeed_cur
155 speed = (scom_read(SCOM_PSR) >> 56) & 3;
156 if (speed > 1) speed = 1
    [all...]
  /src/usr.sbin/btattach/
btattach.h 39 unsigned int speed; /* default baudrate */ member in struct:devtype
  /src/sys/arch/arm/fdt/
plcom_fdt.c 144 int speed; local in function:plcom_fdt_console_consinit
155 speed = fdtbus_get_stdout_speed();
156 if (speed < 0)
157 speed = 115200;
160 plcomcnattach(&pi, speed, uart_freq, flags, -1);
  /src/sys/arch/arm/nxp/
imx_com.c 149 int speed; local in function:imx_com_console_consinit
152 speed = fdtbus_get_stdout_speed();
153 if (speed < 0)
154 speed = 115200; /* default */
158 if (imxuart_cnattach(bst, addr, speed, flags) != 0)

Completed in 18 milliseconds

1 2 3 4 5 6