Searched refs:fc (Results 76 - 100 of 150) sorted by relevance

123456

/freebsd-11-stable/sys/dev/e1000/
H A Dif_em.c560 OID_AUTO, "fc", CTLTYPE_INT|CTLFLAG_RW, adapter, 0,
3125 hw->fc.high_water = rx_buffer_size -
3127 hw->fc.low_water = hw->fc.high_water - 1500;
3129 if (adapter->fc) /* locally set flow control value? */
3130 hw->fc.requested_mode = adapter->fc;
3132 hw->fc.requested_mode = e1000_fc_full;
3135 hw->fc.pause_time = 0xFFFF;
3137 hw->fc
[all...]
H A Dif_igb.c438 OID_AUTO, "fc", CTLTYPE_INT|CTLFLAG_RW,
2156 struct e1000_fc_info *fc = &hw->fc; local
2200 switch (fc->current_mode) {
3036 struct e1000_fc_info *fc = &hw->fc; local
3115 fc->high_water = hwm & 0xFFF8; /* 8-byte granularity */
3116 fc->low_water = fc->high_water - 8;
3118 fc
[all...]
H A Dif_em.h467 u16 fc; member in struct:adapter
/freebsd-11-stable/sys/dev/cxgb/common/
H A Dcxgb_t3_hw.c1523 int link_ok, speed, duplex, fc, link_fault, link_state; local
1532 fc = lc->fc;
1535 phy->ops->get_link_status(phy, &link_state, &speed, &duplex, &fc);
1548 fc &= lc->requested_fc;
1550 fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX);
1554 (speed != lc->speed || duplex != lc->duplex || fc != lc->fc))
1555 t3_mac_set_speed_duplex_fc(mac, speed, duplex, fc);
1592 duplex == lc->duplex && fc
1675 unsigned int fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); local
[all...]
H A Dcxgb_common.h438 unsigned char fc; /* actual link flow control */ member in struct:link_config
568 int *duplex, int *fc);
766 int fc);
830 int t3_vsc7323_set_speed_fc(adapter_t *adap, int speed, int fc, int port);
H A Dcxgb_xgmac.c552 * @fc: desired Tx/Rx PAUSE configuration
558 int t3_mac_set_speed_duplex_fc(struct cmac *mac, int speed, int duplex, int fc) argument
585 return t3_vsc7323_set_speed_fc(adap, speed, fc, mac->ext_port);
614 if (fc & PAUSE_TX) {
623 (fc & PAUSE_RX) ? F_TXPAUSEEN : 0);
/freebsd-11-stable/sys/dev/isp/
H A Disp_pci.c1641 struct isp_fc *fc = ISP_FC_PC(isp, cmap); local
1643 (void **)&base, BUS_DMA_COHERENT, &fc->scmap) != 0)
1647 if (bus_dmamap_load(isp->isp_osinfo.scdmat, fc->scmap,
1650 base, fc->scmap);
1659 while (fc->nexus_free_list) {
1660 n = fc->nexus_free_list;
1661 fc->nexus_free_list = n->next;
1666 n->next = fc->nexus_free_list;
1667 fc->nexus_free_list = n;
1735 struct isp_fc *fc local
[all...]
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-ppc.c2178 int fc;
2269 fc = 0;
2412 if (fc >= MAX_INSN_FIXUPS)
2415 fixups[fc].reloc = toc_reloc;
2416 fixups[fc].exp = ex;
2417 fixups[fc].opindex = *opindex_ptr;
2418 ++fc;
2556 if (fc >= MAX_INSN_FIXUPS)
2558 fixups[fc].exp = tls_exp;
2559 fixups[fc]
2167 int fc; local
[all...]
/freebsd-11-stable/sys/dev/ixgbe/
H A Dif_ix.c561 adapter->hw.fc.requested_mode == ixgbe_fc_none) {
795 hw->fc.requested_mode = ixgbe_flow_control;
2192 if (hw->fc.current_mode == ixgbe_fc_rx_pause ||
2193 hw->fc.current_mode == ixgbe_fc_full)
2195 if (hw->fc.current_mode == ixgbe_fc_tx_pause ||
2196 hw->fc.current_mode == ixgbe_fc_full)
2510 SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "fc", CTLTYPE_INT | CTLFLAG_RW,
3264 hw->fc.high_water[0] = rxpb - size;
3278 hw->fc.low_water[0] = IXGBE_BT2KB(tmp);
3280 hw->fc
4013 int error, fc; local
4039 ixgbe_set_flowcntl(struct adapter *adapter, int fc) argument
[all...]
/freebsd-11-stable/sys/dev/firewire/
H A Dsbp_targ.c314 src = sc->fd.fc->crom_src;
315 root = sc->fd.fc->crom_root;
473 sc->fd.fc->ibr(sc->fd.fc);
519 sc->fd.fc->ibr(sc->fd.fc);
1912 fwdev = fw_noderesolve_nodeid(sc->fd.fc, fp->mode.wreqb.src & 0x3f);
1941 fw_asyreq(xfer->fc, -1, xfer);
1950 struct firewire_comm *fc; local
1956 sc->fd.fc
[all...]
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_xpt.c619 SCSI_XPT_XPORT(fc, FC);
3072 struct ccb_trans_settings_fc *fc = local
3073 &cts.xport_specific.fc;
3075 if (fc->valid & CTS_FC_VALID_SPEED)
3076 speed = fc->bitrate;
3118 struct ccb_trans_settings_fc *fc; local
3120 fc = &cts.xport_specific.fc;
3121 if (fc->valid & CTS_FC_VALID_WWNN)
3122 printf(" WWNN 0x%llx", (long long) fc
[all...]
/freebsd-11-stable/usr.sbin/crunch/crunchgen/
H A Dcrunchgen.c250 void parse_line(char *pline, int *fc, char **fv, int nf);
345 parse_line(char *pline, int *fc, char **fv, int nf) argument
350 *fc = 0;
359 if (*fc < nf)
360 fv[(*fc)++] = p;
/freebsd-11-stable/sys/dev/pms/RefTisa/tisa/api/
H A Dtiapi.h456 agsaFastCommand_t *fc);
462 agsaFastCommand_t *fc,
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_string.c867 find_sconv_object(struct archive *a, const char *fc, const char *tc) argument
875 if (strcmp(sc->from_charset, fc) == 0 &&
1127 create_sconv_object(const char *fc, const char *tc, argument
1136 sc->from_charset = strdup(fc);
1166 sc->from_cp = make_codepage_from_charset(fc);
1176 if (strcmp(fc, tc) == 0 ||
1191 if (strcmp(fc, "UTF-8") == 0)
1193 else if (strcmp(fc, "UTF-16BE") == 0)
1195 else if (strcmp(fc, "UTF-16LE") == 0)
1267 sc->cd = iconv_open(tc, fc);
1641 get_sconv_object(struct archive *a, const char *fc, const char *tc, int flag) argument
[all...]
/freebsd-11-stable/sys/dev/vr/
H A Dif_vr.c301 uint8_t cr0, cr1, fc; local
346 fc = 0;
349 fc = CSR_READ_1(sc, VR_FLOWCR1);
350 fc &= ~(VR_FLOWCR1_TXPAUSE | VR_FLOWCR1_RXPAUSE);
353 fc |= VR_FLOWCR1_RXPAUSE;
356 fc |= VR_FLOWCR1_TXPAUSE;
359 CSR_WRITE_1(sc, VR_FLOWCR1, fc);
362 fc = CSR_READ_1(sc, VR_MISC_CR0);
363 fc &= ~VR_MISCCR0_RXPAUSE;
366 fc |
[all...]
/freebsd-11-stable/contrib/wpa/src/drivers/
H A Ddriver_atheros.c866 u16 fc, stype; local
875 fc = le_to_host16(mgmt->frame_control);
877 if (WLAN_FC_GET_TYPE(fc) != WLAN_FC_TYPE_MGMT)
880 stype = WLAN_FC_GET_STYPE(fc);
1367 u16 fc; local
1381 fc = le_to_host16(hdr->frame_control);
1384 event.tx_status.type = WLAN_FC_GET_TYPE(fc);
1385 event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
1405 u16 fc, stype; local
1444 fc
[all...]
H A Ddriver_nl80211_event.c640 u16 fc, stype; local
651 fc = le_to_host16(mgmt->frame_control);
652 stype = WLAN_FC_GET_STYPE(fc);
664 " freq=%d ssi_signal=%d fc=0x%x seq_ctrl=0x%x stype=%u (%s) len=%u",
666 rx_freq, ssi_signal, fc,
667 le_to_host16(mgmt->seq_ctrl), stype, fc2str(fc),
683 u16 fc; local
703 fc = le_to_host16(hdr->frame_control);
706 event.tx_status.type = WLAN_FC_GET_TYPE(fc);
707 event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
[all...]
/freebsd-11-stable/tools/tools/net80211/w00t/ap/
H A Dap.c468 char fc[2]; local
472 memcpy(fc, wh->i_fc, 2);
488 memcpy(wh->i_fc, fc, sizeof(fc));
/freebsd-11-stable/sys/dev/mpt/
H A Dmpt.h604 #define mpt_fcport_page0 cfg.fc._port_page0
605 #define mpt_fcport_speed cfg.fc._port_speed
606 } fc; member in union:mpt_softc::__anon7154
619 } fc; member in union:mpt_softc::__anon7155
/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_ioctl.h69 } fc; member in union:__anon7612::__anon7613
/freebsd-11-stable/contrib/wpa/src/eap_common/
H A Deap_sim_common.c432 u8 fc; local
455 fc = 0x20;
460 wpa_printf(MSG_DEBUG, "EAP-AKA': FC = 0x%x", fc);
470 addr[0] = &fc;
/freebsd-11-stable/contrib/wpa/src/common/
H A Dieee802_11_defs.h27 #define WLAN_FC_GET_TYPE(fc) (((fc) & 0x000c) >> 2)
28 #define WLAN_FC_GET_STYPE(fc) (((fc) & 0x00f0) >> 4)
H A Dieee802_11_common.h189 const char * fc2str(u16 fc);
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dieee802_11.c2036 u16 fc; local
2066 fc = le_to_host16(mgmt->frame_control);
2079 status_code, !!(fc & WLAN_FC_ISWEP),
2081 seq_ctrl, (fc & WLAN_FC_RETRY) ? " retry" : "",
2230 if ((fc & WLAN_FC_RETRY) &&
2358 fc & WLAN_FC_ISWEP);
3862 u16 capab_info, listen_interval, seq_ctrl, fc; local
3902 fc = le_to_host16(mgmt->frame_control);
3914 seq_ctrl, (fc & WLAN_FC_RETRY) ? " retry" : "");
3925 seq_ctrl, (fc
4442 u16 fc = le_to_host16(mgmt->frame_control); local
4612 u16 fc, stype; local
[all...]
/freebsd-11-stable/sys/dev/ixl/
H A Dixl_pf.h122 int fc; /* link flow ctrl setting */ member in struct:ixl_pf

Completed in 517 milliseconds

123456