Searched refs:cif (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/sys/net/altq/
H A Daltq_codel.c94 struct codel_if *cif; local
105 cif = malloc(sizeof(struct codel_if), M_DEVBUF, M_NOWAIT | M_ZERO);
106 if (cif == NULL)
108 cif->cif_bandwidth = a->ifbandwidth;
109 cif->cif_ifq = &ifp->if_snd;
111 cif->cl_q = malloc(sizeof(class_queue_t), M_DEVBUF, M_NOWAIT | M_ZERO);
112 if (cif->cl_q == NULL) {
113 free(cif, M_DEVBUF);
119 qlimit(cif->cl_q) = a->qlimit;
120 qtype(cif
145 struct codel_if *cif; local
161 struct codel_if *cif; local
184 struct codel_if *cif = (struct codel_if *)ifq->altq_disc; local
213 struct codel_if *cif = (struct codel_if *) ifq->altq_disc; local
239 struct codel_if *cif = (struct codel_if *)ifq->altq_disc; local
[all...]
/freebsd-11-stable/sys/netinet/
H A Dip_carp.c262 #define CIF_LOCK_INIT(cif) mtx_init(&(cif)->cif_mtx, "carp_if", \
264 #define CIF_LOCK_DESTROY(cif) mtx_destroy(&(cif)->cif_mtx)
265 #define CIF_LOCK_ASSERT(cif) mtx_assert(&(cif)->cif_mtx, MA_OWNED)
266 #define CIF_LOCK(cif) mtx_lock(&(cif)->cif_mtx)
267 #define CIF_UNLOCK(cif) mtx_unlock(&(cif)
1268 carp_multicast_setup(struct carp_if *cif, sa_family_t sa) argument
1369 carp_multicast_cleanup(struct carp_if *cif, sa_family_t sa) argument
1486 struct carp_if *cif; local
1542 struct carp_if *cif = ifp->if_carp; local
1574 struct carp_if *cif; local
1598 carp_free_if(struct carp_if *cif) argument
1818 struct carp_if *cif = ifp->if_carp; local
1894 struct carp_if *cif = ifp->if_carp; local
[all...]
/freebsd-11-stable/sys/dev/sound/pci/
H A Dspicds.c47 unsigned int cif; /* Controll data Interface Format (0/1) */ member in struct:spicds_info
59 if (codec->cif)
84 if (codec->cif)
127 if (codec->cif) {
158 codec->cif = 0;
181 spicds_setcif(struct spicds_info *codec, unsigned int cif) argument
184 codec->cif = cif;
H A Dspicds.h116 void spicds_setcif(struct spicds_info *codec, unsigned int cif);
H A Denvy24ht.c121 u_int8_t cif, type, free; member in struct:cfg_info
653 buff->cif = 0x00;
980 spicds_setcif(ptr->info, ptr->parent->cfg->cif);
H A Denvy24.c111 u_int8_t cdti, cclk, cs, cif, type; member in struct:cfg_info
1016 spicds_setcif(ptr->info, ptr->parent->cfg->cif);
/freebsd-11-stable/lib/libc/net/
H A Dgetifaddrs.c88 struct ifaddrs *cif; local
217 cif = NULL;
233 cif = ift;
261 ift->ifa_name = cif->ifa_name;
262 ift->ifa_flags = cif->ifa_flags;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp193 ffi_cif cif; local
230 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, args.data()) ==
235 ffi_call(&cif, Fn, ret.data(), values.data());

Completed in 102 milliseconds