Home
last modified time | relevance | path

Searched refs:cif (Results 1 – 7 of 7) sorted by relevance

/freebsd-9-stable/sys/netinet/
Dip_carp.c180 #define CARP_LOCK_INIT(cif) mtx_init(&(cif)->vhif_mtx, "carp_if", \ argument
182 #define CARP_LOCK_DESTROY(cif) mtx_destroy(&(cif)->vhif_mtx) argument
183 #define CARP_LOCK_ASSERT(cif) mtx_assert(&(cif)->vhif_mtx, MA_OWNED) argument
184 #define CARP_LOCK(cif) mtx_lock(&(cif)->vhif_mtx) argument
185 #define CARP_UNLOCK(cif) mtx_unlock(&(cif)->vhif_mtx) argument
500 struct carp_if *cif; in carpdetach() local
525 cif = (struct carp_if *)sc->sc_carpdev->if_carp; in carpdetach()
526 CARP_LOCK_ASSERT(cif); in carpdetach()
527 TAILQ_REMOVE(&cif->vhif_vrs, sc, sc_list); in carpdetach()
528 if (!--cif->vhif_nvrs) { in carpdetach()
[all …]
/freebsd-9-stable/sys/dev/sound/pci/
Dspicds.c47 unsigned int cif; /* Controll data Interface Format (0/1) */ member
59 if (codec->cif) in spicds_wrbit()
84 if (codec->cif) in spicds_wrcd()
127 if (codec->cif) { in spicds_wrcd()
158 codec->cif = 0; in spicds_create()
181 spicds_setcif(struct spicds_info *codec, unsigned int cif) in spicds_setcif() argument
184 codec->cif = cif; in spicds_setcif()
Dspicds.h116 void spicds_setcif(struct spicds_info *codec, unsigned int cif);
Denvy24ht.c121 u_int8_t cif, type, free; member
652 buff->cif = 0x00; in envy24ht_rom2cfg()
979 spicds_setcif(ptr->info, ptr->parent->cfg->cif); in envy24ht_spi_init()
Denvy24.c111 u_int8_t cdti, cclk, cs, cif, type; member
1015 spicds_setcif(ptr->info, ptr->parent->cfg->cif); in envy24_delta_ak4524_init()
/freebsd-9-stable/lib/libc/net/
Dgetifaddrs.c102 struct ifaddrs *cif = 0; in getifaddrs() local
279 cif = ift; in getifaddrs()
314 ift->ifa_name = cif->ifa_name; in getifaddrs()
315 ift->ifa_flags = cif->ifa_flags; in getifaddrs()
/freebsd-9-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/
DExternalFunctions.cpp184 ffi_cif cif; in ffiInvoke() local
221 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) { in ffiInvoke()
225 ffi_call(&cif, Fn, ret.data(), values.data()); in ffiInvoke()