Searched refs:fc (Results 1 - 25 of 150) sorted by last modified time

123456

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c3396 const struct _7z_coder *fc = folder->coders; local
3407 if (folder->numCoders == 4 && fc[3].codec == _7Z_X86_BCJ2 &&
3414 scoder[1] = &(fc[1]);
3415 scoder[2] = &(fc[0]);
3418 coder1 = &(fc[2]);
3438 if (fc[0].codec == _7Z_COPY &&
3439 fc[1].codec == _7Z_COPY)
3441 else if (fc[0].codec == _7Z_COPY &&
3442 fc[2].codec == _7Z_COPY)
3444 else if (fc[
[all...]
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/testcode/
H A Dfake_event.c1330 struct fake_commpoint* fc = (struct fake_commpoint*)calloc(1, local
1331 sizeof(*fc));
1332 if(!fc) return NULL;
1333 fc->typecode = FAKE_COMMPOINT_TYPECODE;
1334 return (struct comm_point*)fc;
1343 struct fake_commpoint* fc = (struct fake_commpoint*)calloc(1, local
1344 sizeof(*fc));
1345 if(!fc) return NULL;
1346 fc->typecode = FAKE_COMMPOINT_TYPECODE;
1347 return (struct comm_point*)fc;
1364 struct fake_commpoint* fc = (struct fake_commpoint*)c; local
1652 struct fake_commpoint* fc = (struct fake_commpoint*)calloc(1, local
1672 struct fake_commpoint* fc = (struct fake_commpoint*)calloc(1, local
1744 struct fake_commpoint* fc = (struct fake_commpoint*)calloc(1, local
1770 struct fake_commpoint* fc = (struct fake_commpoint*)c; local
[all...]
/freebsd-11-stable/sys/net/
H A Dif_fwsubr.c82 struct fw_com *fc = IFP2FWC(ifp); local
177 error = nd6_resolve(fc->fc_ifp, is_gw, m, dst,
201 bcopy(&fc->fc_hwaddr, h.firewire_shost, 8);
223 speed = min(fc->fc_speed, destfw->sspd);
333 firewire_input_fragment(struct fw_com *fc, struct mbuf *m, int src) argument
347 STAILQ_FOREACH(r, &fc->fc_frags, fr_link)
358 STAILQ_INSERT_HEAD(&fc->fc_frags, r, fr_link);
448 STAILQ_REMOVE(&fc->fc_frags, r, fw_reass, fr_link);
500 struct fw_com *fc = IFP2FWC(ifp); local
532 m = firewire_input_fragment(fc,
744 struct fw_com *fc = IFP2FWC(ifp); local
791 struct fw_com *fc = IFP2FWC(ifp); local
812 struct fw_com *fc; local
[all...]
/freebsd-11-stable/sys/dev/ixl/
H A Dixl_pf_main.c4393 OID_AUTO, "fc", CTLTYPE_INT | CTLFLAG_RW,
4613 requested_fc = pf->fc;
4624 "Invalid fc mode; valid modes are 0 through 3\n");
4628 /* Set fc ability for port */
4629 hw->fc.requested_mode = requested_fc;
4633 "%s: Error setting new fc mode %d; fc_err %#x\n",
4637 pf->fc = requested_fc;
H A Di40e_common.c1739 enum i40e_fc_mode fc_mode = hw->fc.requested_mode;
1960 /* update fc info */
1964 hw->fc.current_mode = I40E_FC_FULL;
1966 hw->fc.current_mode = I40E_FC_TX_PAUSE;
1968 hw->fc.current_mode = I40E_FC_RX_PAUSE;
1970 hw->fc.current_mode = I40E_FC_NONE;
/freebsd-11-stable/sbin/ifconfig/
H A Difieee80211.c231 const struct ieee80211_channel *fc = &chaninfo->ic_chans[i]; local
234 if ((fc->ic_flags & from) != from)
238 chaninfo->ic_chans[i+1].ic_freq == fc->ic_freq &&
245 tc->ic_freq == fc->ic_freq && (tc->ic_flags & to) == to)
/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_cam.c1994 struct ccb_pathinq_settings_fc *fc = &cpi->xport_specific.fc; local
2015 fc->bitrate = value.value * 1000; /* speed in Mbps */
2018 fc->wwpn = be64toh(wwn);
2021 fc->wwnn = be64toh(wwn);
2023 fc->port = fcp->fc_id;
2066 struct ccb_trans_settings_fc *fc = &cts->xport_specific.fc; local
2100 fc->bitrate = value.value * 100;
2102 fc
[all...]
/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 De1000_ich8lan.c5258 if (hw->fc.requested_mode == e1000_fc_default)
5259 hw->fc.requested_mode = e1000_fc_full;
5264 hw->fc.current_mode = hw->fc.requested_mode;
5267 hw->fc.current_mode);
5274 E1000_WRITE_REG(hw, E1000_FCTTV, hw->fc.pause_time);
5279 E1000_WRITE_REG(hw, E1000_FCRTV_PCH, hw->fc.refresh_time);
5283 hw->fc.pause_time);
/freebsd-11-stable/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.c198 int32_t fc; local
210 fc = 0;
219 fc = -1;
222 fc++;
227 return (fc);
/freebsd-11-stable/sys/dev/cxgbe/
H A Dt4_main.c2405 if (lc->fc & PAUSE_RX)
2407 if (lc->fc & PAUSE_TX)
4720 * fec/fc/etc. when the notification is processed. If the link
4727 lc->fc = lc->requested_fc & (PAUSE_TX | PAUSE_RX);
6881 sbuf_printf(sb, "%b", (lc->fc & (PAUSE_TX | PAUSE_RX)) |
/freebsd-11-stable/sys/dev/cxgb/
H A Dcxgb_main.c1210 * @fc: the new flow-control setting
1218 int duplex, int fc, int mac_was_reset)
1217 t3_os_link_changed(adapter_t *adapter, int port_id, int link_status, int speed, int duplex, int fc, int mac_was_reset) argument
/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dflock.c33 int fc; local
43 fc = (type & APR_FLOCK_NONBLOCK) ? F_SETLK : F_SETLKW;
46 while ((rc = fcntl(thefile->filedes, fc, &l)) < 0 && errno == EINTR)
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_enc_ses.c101 union ses_fcobj_hdr *fc; member in union:ses_addl_status::__anon2
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp6574 unsigned fc; local
6577 fc = fieldFromInstruction(Insn, 12, 1) << 2 |
6584 fc = fieldFromInstruction(Insn, 12, 1) << 2 |
6593 if (!Check(S, predicate_decoder(Inst, fc, Address, Decoder)))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DIfConversion.cpp183 bool tc = false, bool fc = false)
185 TClobbersPred(tc), FClobbersPred(fc) {}
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp1189 for (FileChecksumEntry &fc : checksums) {
1191 exitOnErr(cVStrTab.getString(fc.FileNameOffset));
1194 newChecksums->addChecksum(filename, fc.Kind, fc.Checksum);
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwind-sjlj.c82 __Unwind_SjLj_SetTopOfFunctionStack(struct _Unwind_FunctionContext *fc) { argument
84 _pthread_setspecific_direct(__PTK_LIBC_DYLD_Unwind_SjLj_Key, fc);
86 stack = fc;
95 _Unwind_SjLj_Register(struct _Unwind_FunctionContext *fc) { argument
96 fc->prev = __Unwind_SjLj_GetTopOfFunctionStack();
97 __Unwind_SjLj_SetTopOfFunctionStack(fc);
103 _Unwind_SjLj_Unregister(struct _Unwind_FunctionContext *fc) { argument
104 __Unwind_SjLj_SetTopOfFunctionStack(fc->prev);
/freebsd-11-stable/contrib/llvm-project/libunwind/include/
H A Dunwind.h287 extern void _Unwind_SjLj_Register(_Unwind_FunctionContext_t fc);
288 extern void _Unwind_SjLj_Unregister(_Unwind_FunctionContext_t fc);
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-802_11.c164 #define FC_VERSION(fc) ((fc) & 0x3)
165 #define FC_TYPE(fc) (((fc) >> 2) & 0x3)
166 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF)
167 #define FC_TO_DS(fc) ((fc) & 0x0100)
168 #define FC_FROM_DS(fc) ((fc)
177 uint16_t fc; member in struct:mgmt_header_t
300 uint16_t fc; member in struct:ctrl_control_wrapper_hdr_t
313 uint16_t fc; member in struct:ctrl_rts_hdr_t
323 uint16_t fc; member in struct:ctrl_cts_hdr_t
331 uint16_t fc; member in struct:ctrl_ack_hdr_t
339 uint16_t fc; member in struct:ctrl_ps_poll_hdr_t
349 uint16_t fc; member in struct:ctrl_end_hdr_t
359 uint16_t fc; member in struct:ctrl_end_ack_hdr_t
369 uint16_t fc; member in struct:ctrl_ba_hdr_t
377 uint16_t fc; member in struct:ctrl_bar_hdr_t
1620 mgmt_body_print(netdissect_options *ndo, uint16_t fc, const uint8_t *src, const u_char *p, u_int length) argument
1664 ctrl_body_print(netdissect_options *ndo, uint16_t fc, const u_char *p) argument
1748 get_data_src_dst_mac(uint16_t fc, const u_char *p, const uint8_t **srcp, const uint8_t **dstp) argument
1800 data_header_print(netdissect_options *ndo, uint16_t fc, const u_char *p) argument
1861 ctrl_header_print(netdissect_options *ndo, uint16_t fc, const u_char *p) argument
1910 extract_header_length(netdissect_options *ndo, uint16_t fc) argument
1963 ieee_802_11_hdr_print(netdissect_options *ndo, uint16_t fc, const u_char *p, u_int hdrlen, u_int meshdrlen) argument
2027 uint16_t fc; local
[all...]
/freebsd-11-stable/sbin/camcontrol/
H A Dcamcontrol.c1112 struct ccb_trans_settings_fc *fc = local
1113 &ccb->cts.xport_specific.fc;
1115 if (fc->valid & CTS_FC_VALID_SPEED)
1116 speed = fc->bitrate;
5072 struct ccb_trans_settings_fc *fc = local
5073 &cts->xport_specific.fc;
5075 if (fc->valid & CTS_FC_VALID_WWNN)
5077 (long long) fc->wwnn);
5078 if (fc->valid & CTS_FC_VALID_WWPN)
5080 (long long) fc
[all...]
/freebsd-11-stable/sys/dev/cxgbe/common/
H A Dt4_hw.c3860 unsigned int aneg, fc, fec, speed, rcap; local
3862 fc = 0;
3864 fc |= FW_PORT_CAP32_FC_RX;
3866 fc |= FW_PORT_CAP32_FC_TX;
3868 fc |= FW_PORT_CAP32_FORCE_PAUSE;
3898 rcap = aneg | speed | fc | fec;
8517 unsigned char fc, fec; local
8561 fc = 0;
8563 fc |= PAUSE_RX;
8565 fc |
[all...]
/freebsd-11-stable/sys/dev/hwpmc/
H A Dhwpmc_core.c447 uint32_t fc; local
460 fc = (IAF_MASK << (ri * 4));
464 fc &= ~IAF_ANY;
466 iafc->pc_iafctrl &= ~fc;
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_frontend_cam_sim.c671 struct ccb_trans_settings_fc *fc; local
675 fc = &cts->xport_specific.fc;
685 fc->valid = CTS_FC_VALID_SPEED;
686 fc->bitrate = 800000;
687 fc->wwnn = softc->wwnn;
688 fc->wwpn = softc->wwpn;
689 fc->port = softc->port.targ_port;
690 fc->valid |= CTS_FC_VALID_WWNN | CTS_FC_VALID_WWPN |
780 cpi->xport_specific.fc
[all...]

Completed in 579 milliseconds

123456