Home
last modified time | relevance | path

Searched refs:fcs (Results 1 – 11 of 11) sorted by relevance

/openbsd/usr.sbin/pppd/
H A Ddemand.c66 int fcs; variable
99 fcs = PPP_INITFCS; in demand_conf()
142 fcs = PPP_INITFCS; in demand_drop()
214 && framelen > 2 && fcs == PPP_GOODFCS) {
222 fcs = PPP_INITFCS;
239 fcs = PPP_FCS(fcs, c);
/openbsd/sys/net/
H A Dppp_defs.h89 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff]) argument
H A Dppp_tty.c132 u_int16_t pppfcs(u_int16_t fcs, u_char *cp, int len);
481 pppfcs(u_int16_t fcs, u_char *cp, int len) in pppfcs() argument
484 fcs = PPP_FCS(fcs, *cp++); in pppfcs()
485 return (fcs); in pppfcs()
/openbsd/usr.bin/file/magdir/
H A Dfcs1 # $OpenBSD: fcs,v 1.1 2004/06/03 03:14:20 tedu Exp $
4 # fcs: file(1) magic for FCS (Flow Cytometry Standard) data files
/openbsd/gnu/gcc/gcc/config/i386/
H A Dcrtfastmath.c91 long int fcs; in set_fast_math() member
/openbsd/usr.sbin/tcpdump/
H A Dprint-802_11.c1607 u_int32_t fcs; in ieee802_11_radio_if_print() local
1608 bcopy(t, &fcs, sizeof(u_int32_t)); in ieee802_11_radio_if_print()
1609 printf(", fcs %08x", letoh32(fcs)); in ieee802_11_radio_if_print()
/openbsd/usr.sbin/smtpd/
H A Dsmtpd.c1255 struct filter_config *fcs; in fork_filter_processes() local
1264 fcs = dict_xget(env->sc_filters_dict, fc->chain[i]); in fork_filter_processes()
1265 fcs->filter_subsystem |= fc->filter_subsystem; in fork_filter_processes()
/openbsd/gnu/llvm/llvm/cmake/modules/
H A DHandleLLVMOptions.cmake1052 append("-fcs-profile-generate=\"${LLVM_CSPROFILE_DATA_DIR}\""
1056 append("-fcs-profile-generate=\"${LLVM_CSPROFILE_DATA_DIR}\""
/openbsd/gnu/llvm/clang/docs/
H A DUsersManual.rst2556 profile creation and use. Flag ``-fcs-profile-generate`` also instruments
2590 .. option:: -fcs-profile-generate[=<dirname>]
2592 The ``-fcs-profile-generate`` and ``-fcs-profile-generate=`` flags will use
2599 The profile generated by ``-fcs-profile-generate`` and ``-fprofile-generate``
2613 $ clang++ -O2 -fprofile-use=code.profdata -fcs-profile-generate=sss/ttt \
/openbsd/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td1324 def fcs_profile_generate : Flag<["-"], "fcs-profile-generate">,
1327 def fcs_profile_generate_EQ : Joined<["-"], "fcs-profile-generate=">,
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DAttrDocs.td2827 ``-fcs-profile-generate`` / ``-fprofile-arcs`` flags.