Searched defs:speed (Results 26 - 34 of 34) sorted by relevance

12

/osnet-11/usr/src/lib/libdladm/common/
H A Dlibdlwlan.c343 * and speed (in that order), which matches the documented default policy for
952 dladm_wlan_speed2str(dladm_wlan_speed_t *speed, char *buf) argument
954 (void) snprintf(buf, DLADM_STRSIZE, "%.*f", *speed % 2,
955 (float)(*speed) / 2);
1047 dladm_wlan_str2speed(const char *str, dladm_wlan_speed_t *speed) argument
1049 *speed = (dladm_wlan_speed_t)(atof(str) * 2);
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/
H A Dbsd.c1561 unsigned speed = 9600; local
1579 speed = grub_strtoul (ptr, &ptr, 0);
1586 serial.speed = speed;
1665 serial.speed = 9600;
1684 serial.speed = grub_strtoul (ptr, &ptr, 0);
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A De1000.c109 static void e1000_get_speed_and_duplex(struct e1000_hw *hw, uint16_t *speed, uint16_t *duplex);
1431 /* Adjust VCO speed to improve BER performance */
1536 * Detects which PHY is present and the speed and duplex
1551 /* With 82543, we need to force speed and duplex on the MAC equal to what
1552 * the PHY speed and duplex configuration is. In addition, we need to
1788 * the user should have provided a speed/duplex override. If so, then
1851 * 1) Set up the MAC to the current PHY speed/duplex
1918 /* First we clear all the 10/100 mb speed bits in the Auto-Neg
1919 * Advertisement Register (Address 4) and the 1000 mb speed bits in
2032 * Link should have been established previously. Reads the speed an
2204 uint16_t speed; local
2598 e1000_get_speed_and_duplex(struct e1000_hw *hw, uint16_t *speed, uint16_t *duplex) argument
[all...]
H A Dsundance.c292 unsigned int speed; member in struct:sundance_private
591 int speed; local
658 sdc->speed = 100;
662 sdc->speed = 100;
666 sdc->speed = 10;
670 sdc->speed = 10;
683 sdc->speed = 100;
696 mii_ctl |= (sdc->speed == 100) ? BMCR_SPEED100 : 0;
699 printf("Override speed=%d, %s duplex\n",
700 sdc->speed,
[all...]
H A Dtlan.c244 u32 speed; member in struct:tlan_private
1568 if (priv->speed == TLAN_SPEED_10 &&
1571 } else if (priv->speed == TLAN_SPEED_10 &&
1575 } else if (priv->speed == TLAN_SPEED_100 &&
1578 } else if (priv->speed == TLAN_SPEED_100 &&
1627 if (priv->speed == TLAN_SPEED_100) {
H A Dns83820.c421 int speed, fullduplex, newlinkstate; local
463 speed = 4; /* 1000F */
475 speed = ((cfg / CFG_SPDSTS0) & 3);
495 speeds[speed], fullduplex ? "full" : "half");
H A Dtg3.c581 struct tg3 *tp __unused, uint32_t val, uint8_t *speed, uint8_t *duplex)
595 *speed = result >> 2;
580 tg3_aux_stat_to_speed_duplex( struct tg3 *tp __unused, uint32_t val, uint8_t *speed, uint8_t *duplex) argument
/osnet-11/usr/src/lib/storage/liba5k/common/hdrs/
H A Da5k.h329 speed : 3; member in struct:fan_element_status
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dbuiltins.c4588 unsigned int speed = 9600;
4614 else if (grub_memcmp (arg, "--speed=", sizeof ("--speed=") - 1) == 0)
4616 char *p = arg + sizeof ("--speed=") - 1;
4622 speed = (unsigned int) num;
4709 if (! serial_hw_init (port, speed, word_len, parity, stop_bit_len))
4723 "serial [--unit=UNIT] [--port=PORT] [--speed=SPEED] [--word=WORD] [--parity=PARITY] [--stop=STOP] [--device=DEV]",
4726 " set it by --port. SPEED is the DTE-DTE speed. WORD is the word length,"
4537 unsigned int speed = 9600; local

Completed in 272 milliseconds

12