Home
last modified time | relevance | path

Searched refs:speed (Results 1 – 25 of 160) sorted by relevance

1234567

/external/grub/netboot/
Dsis900.c82 static void sis900_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
83 static void amd79c901_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
84 static void ics1893_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
85 static void rtl8201_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex);
91 void (*read_mode) (struct nic *nic, int phy_addr, int *speed, int *duplex);
679 int speed, duplex; in sis900_check_mode() local
682 mii.chip_info->read_mode(nic, cur_phy, &speed, &duplex); in sis900_check_mode()
687 if (speed == HW_SPEED_HOME || speed == HW_SPEED_10_MBPS) { in sis900_check_mode()
717 sis900_read_mode(struct nic *nic, int phy_addr, int *speed, int *duplex) in sis900_read_mode() argument
727 *speed = HW_SPEED_100_MBPS; in sis900_read_mode()
[all …]
Dtlan.c782 if ( priv->speed == TLAN_SPEED_10 &&
785 } else if ( priv->speed == TLAN_SPEED_10 &&
789 } else if ( priv->speed == TLAN_SPEED_100 &&
792 } else if ( priv->speed == TLAN_SPEED_100 &&
833 if ( priv->speed == TLAN_SPEED_100 ) {
1370 u32 speed;
1672 static int speed[MAX_TLAN_BOARDS];
1681 MODULE_PARM(speed, "1-" __MODULE_STRING(MAX_TLAN_BOARDS) "i");
1686 MODULE_PARM_DESC(speed, "ThunderLAN port speen setting(s) (0,10,100)");
2048 priv->speed = ((dev->mem_start & 0x18) == 0x18) ? 0 : (dev->mem_start & 0x18) >> 3;
[all …]
/external/bluetooth/bluez/tools/
Dhciattach.c62 int speed; member
140 int set_speed(int fd, struct termios *ti, int speed) in set_speed() argument
142 cfsetospeed(ti, uart_speed(speed)); in set_speed()
143 cfsetispeed(ti, uart_speed(speed)); in set_speed()
206 switch (u->speed) { in ericsson()
233 u->speed = 57600; in ericsson()
234 fprintf(stderr, "Invalid speed requested, using %d bps instead\n", u->speed); in ericsson()
262 switch (u->speed) { in digi()
271 u->speed = 115200; in digi()
297 return texasalt_init(fd, u->speed, ti); in texasalt()
[all …]
Dhciattach_tialt.c96 uint32_t speed; member
99 static int texas_change_speed(int fd, struct termios *ti, uint32_t speed) in texas_change_speed() argument
108 cmd.speed = speed; in texas_change_speed()
110 fprintf(stderr, "Setting speed to %d\n", speed); in texas_change_speed()
125 if (set_speed(fd, ti, speed) < 0) { in texas_change_speed()
192 int texasalt_init(int fd, int speed, struct termios *ti) in texasalt_init() argument
266 texas_change_speed(fd, ti, speed); in texasalt_init()
Dhciattach.h41 int set_speed(int fd, struct termios *ti, int speed);
45 int texasalt_init(int fd, int speed, struct termios *ti);
/external/webkit/WebCore/rendering/style/
DStyleMarqueeData.cpp31 , speed(RenderStyle::initialMarqueeSpeed()) in StyleMarqueeData()
41 , speed(o.speed) in StyleMarqueeData()
50 return increment == o.increment && speed == o.speed && direction == o.direction && in operator ==()
DStyleMarqueeData.h47 int speed; variable
/external/webkit/WebCore/page/
DCoordinates.h39speed) { return adoptRef(new Coordinates(latitude, longitude, providesAltitude, altitude, accuracy… in create() argument
47 double speed() const { return m_speed; } in speed() function
55 …y, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) in Coordinates() argument
62 , m_speed(speed) in Coordinates()
/external/qemu/
Dusb-linux.c66 const char *product_name, int speed);
952 dev->dev.speed = USB_SPEED_LOW; in usb_host_device_open_addr()
954 dev->dev.speed = USB_SPEED_HIGH; in usb_host_device_open_addr()
1063 int bus_num, addr, speed, device_count, class_id, product_id, vendor_id; in usb_host_scan_dev() local
1079 bus_num = addr = speed = class_id = product_id = vendor_id = 0; in usb_host_scan_dev()
1089 product_id, product_name, speed); in usb_host_scan_dev()
1102 speed = USB_SPEED_HIGH; in usb_host_scan_dev()
1104 speed = USB_SPEED_LOW; in usb_host_scan_dev()
1106 speed = USB_SPEED_FULL; in usb_host_scan_dev()
1133 product_id, product_name, speed); in usb_host_scan_dev()
[all …]
Dqemu-char.c985 static void tty_serial_init(int fd, int speed, in tty_serial_init() argument
993 speed, parity, data_bits, stop_bits); in tty_serial_init()
998 if (speed <= 50 * MARGIN) in tty_serial_init()
1000 else if (speed <= 75 * MARGIN) in tty_serial_init()
1002 else if (speed <= 300 * MARGIN) in tty_serial_init()
1004 else if (speed <= 600 * MARGIN) in tty_serial_init()
1006 else if (speed <= 1200 * MARGIN) in tty_serial_init()
1008 else if (speed <= 2400 * MARGIN) in tty_serial_init()
1010 else if (speed <= 4800 * MARGIN) in tty_serial_init()
1012 else if (speed <= 9600 * MARGIN) in tty_serial_init()
[all …]
Dqemu-char-android.c1018 static void tty_serial_init(int fd, int speed, in tty_serial_init() argument
1026 speed, parity, data_bits, stop_bits); in tty_serial_init()
1031 if (speed <= 50 * MARGIN) in tty_serial_init()
1033 else if (speed <= 75 * MARGIN) in tty_serial_init()
1035 else if (speed <= 300 * MARGIN) in tty_serial_init()
1037 else if (speed <= 600 * MARGIN) in tty_serial_init()
1039 else if (speed <= 1200 * MARGIN) in tty_serial_init()
1041 else if (speed <= 2400 * MARGIN) in tty_serial_init()
1043 else if (speed <= 4800 * MARGIN) in tty_serial_init()
1045 else if (speed <= 9600 * MARGIN) in tty_serial_init()
[all …]
/external/openssl/crypto/des/
Dmakefile.bc19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe
47 speed.exe: speed.obj libdes.lib
DINSTALL5 #undef TIMES in speed.c
18 run './speed' to see how fast those optimisations make the library run :-)
26 The file options.txt has the options listed for best speed on quite a
67 a %10 speed difference depending on the link order. It is rather anoying
69 'x*0.9' the speed.
Doptions.txt31 gives a speed of 344,000 des/s while 'speed' gives 459,000 des/s.
37 This would cause the program to give much lower speed numbers because
/external/grub/stage2/
Dserial.c44 int speed; member
134 serial_hw_init (unsigned short port, unsigned int speed, in serial_hw_init() argument
149 if (divisor_tab[i].speed == speed) in serial_hw_init()
Dserial.h84 int serial_hw_init (unsigned short port, unsigned int speed,
/external/webkit/WebCore/bindings/js/
DJSCoordinatesCustom.cpp59 JSValue JSCoordinates::speed(ExecState* exec) const in speed() function in WebCore::JSCoordinates
64 return jsNumber(exec, imp->speed()); in speed()
/external/webkit/WebCore/platform/mac/
DGeolocationServiceMac.mm166 double speed = newLocation.speed;
167 if (speed < 0.0)
186 speed);
/external/bluetooth/bluez/serial/
Dproxy.c650 speed_t speed; member
667 static speed_t str2speed(const char *str, speed_t *speed) in str2speed() argument
675 if (speed) in str2speed()
676 *speed = supported_speed[i].speed; in str2speed()
678 return supported_speed[i].speed; in str2speed()
749 speed_t speed = B0; /* In/Out speed */ in proxy_set_serial_params() local
763 if (str2speed(ratestr, &speed) == B0) in proxy_set_serial_params()
778 cfsetispeed(&prx->proxy_ti, speed); in proxy_set_serial_params()
779 cfsetospeed(&prx->proxy_ti, speed); in proxy_set_serial_params()
/external/ppp/pppd/
Dsys-linux.c233 static int baud_rate_of (int speed);
773 struct speed { struct
864 struct speed *speedp; in translate_speed()
881 static int baud_rate_of (int speed) in baud_rate_of() argument
883 struct speed *speedp; in baud_rate_of()
885 if (speed != 0) { in baud_rate_of()
887 if (speed == speedp->speed_val) in baud_rate_of()
903 int speed; in set_up_tty() local
947 speed = translate_speed(inspeed); in set_up_tty()
948 if (speed) { in set_up_tty()
[all …]
Dsys-solaris.c1054 struct speed { struct
1148 struct speed *speedp;
1163 baud_rate_of(speed) in baud_rate_of() argument
1164 int speed; in baud_rate_of()
1166 struct speed *speedp;
1168 if (speed == 0)
1171 if (speed == speedp->speed_val)
1185 int speed; local
1243 speed = translate_speed(inspeed);
1244 if (speed) {
[all …]
/external/openssl/
DREADME.android111 diff -ur openssl-0.9.8h-ORIG/apps/speed.c openssl-0.9.8h/apps/speed.c
112 --- openssl-0.9.8h-ORIG/apps/speed.c
113 +++ openssl-0.9.8h/apps/speed.c
/external/webkit/WebCore/rendering/
DRenderMarquee.cpp175 m_timer.startRepeating(speed() * 0.001); in start()
242 if (speed() != marqueeSpeed()) { in updateMarqueeStyle()
245 m_timer.startRepeating(speed() * 0.001); in updateMarqueeStyle()
/external/grub/grub/
Dasmstub.c1072 get_termios_speed (int speed) in get_termios_speed() argument
1074 switch (speed) in get_termios_speed()
1102 serial_hw_init (unsigned short port, unsigned int speed, in serial_hw_init() argument
1139 termios_speed = get_termios_speed (speed); in serial_hw_init()
1202 serial_speed = speed; in serial_hw_init()
/external/openssl/apps/
DMakefile40 x509 genrsa gendsa s_server s_client speed \
56 x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o \
64 x509.c genrsa.c gendsa.c s_server.c s_client.c speed.c \
862 speed.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h
863 speed.o: ../include/openssl/bio.h ../include/openssl/blowfish.h
864 speed.o: ../include/openssl/bn.h ../include/openssl/buffer.h
865 speed.o: ../include/openssl/cast.h ../include/openssl/conf.h
866 speed.o: ../include/openssl/crypto.h ../include/openssl/des.h
867 speed.o: ../include/openssl/des_old.h ../include/openssl/dsa.h
868 speed.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
[all …]

1234567