Home
last modified time | relevance | path

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

/f-stack/dpdk/drivers/common/mlx5/
H A Dmlx5_common.h25 #define BITFIELD_DECLARE(bf, type, size) \ argument
28 #define BITFIELD_DEFINE(bf, type, size) \ argument
29 BITFIELD_DECLARE((bf), type, (size)) = { 0 }
30 #define BITFIELD_SET(bf, b) \ argument
31 (void)((bf)[((b) / (sizeof((bf)[0]) * CHAR_BIT))] |= \
32 ((size_t)1 << ((b) % (sizeof((bf)[0]) * CHAR_BIT))))
33 #define BITFIELD_RESET(bf, b) \ argument
34 (void)((bf)[((b) / (sizeof((bf)[0]) * CHAR_BIT))] &= \
35 ~((size_t)1 << ((b) % (sizeof((bf)[0]) * CHAR_BIT))))
36 #define BITFIELD_ISSET(bf, b) \ argument
[all …]
H A Dmlx5_prm.h1274 u8 bf[0x1]; member
/f-stack/freebsd/kern/
H A Dkern_jail.c360 bf++) { in kern_jail()
363 ? bf->name : bf->noname); in kern_jail()
632 bf++) { in kern_jail_set()
633 vfs_flagopt(opts, bf->name, &pr_flags, bf->flag); in kern_jail_set()
634 vfs_flagopt(opts, bf->noname, &ch_flags, bf->flag); in kern_jail_set()
696 bf++) { in kern_jail_set()
697 vfs_flagopt(opts, bf->name, &pr_allow, bf->flag); in kern_jail_set()
698 vfs_flagopt(opts, bf->noname, &ch_allow, bf->flag); in kern_jail_set()
4116 for (bf = pr_flag_allow; ; bf++) { in prison_add_allow()
4417 for (bf = pr_flag_bool; bf < pr_flag_bool + nitems(pr_flag_bool); bf++) in db_show_prison()
[all …]
/f-stack/dpdk/drivers/compress/octeontx/include/
H A Dzip_regs.h195 uint64_t bf : 1; member
209 uint64_t bf : 1;
376 uint64_t bf : 1; member
390 uint64_t bf : 1;
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_file.c743 flock64_t bf; in zpl_fallocate_common() local
750 bf.l_type = F_WRLCK; in zpl_fallocate_common()
751 bf.l_whence = SEEK_SET; in zpl_fallocate_common()
752 bf.l_start = offset; in zpl_fallocate_common()
753 bf.l_len = len; in zpl_fallocate_common()
754 bf.l_pid = 0; in zpl_fallocate_common()
756 error = -zfs_space(ITOZ(ip), F_FREESP, &bf, O_RDWR, offset, cr); in zpl_fallocate_common()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/inuse/
H A Dinuse_003_pos.ksh130 ufsdump 0bf 512 $rawdisk0 $disk1 &
/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_eeprom.c626 int bf, factor, plus; in interpolate() local
664 plus = (bf % 2); in interpolate()
665 factor = bf / 2; in interpolate()
2150 int bf, factor, plus; in ar9300_calibration_apply() local
2243 bf = 2 * diff * mult / div; in ar9300_calibration_apply()
2244 plus = (bf % 2); in ar9300_calibration_apply()
2245 factor = bf / 2; in ar9300_calibration_apply()
2250 plus = (bf % 2); in ar9300_calibration_apply()
2251 factor = bf / 2; in ar9300_calibration_apply()
2256 plus = (bf % 2); in ar9300_calibration_apply()
[all …]
/f-stack/freebsd/net/
H A Dbpf.c2242 bpf_jit_filter *bf; in bpf_tap() local
2258 bf = bpf_jitter_enable != 0 ? d->bd_bfilter : NULL; in bpf_tap()
2259 if (bf != NULL) in bpf_tap()
2260 slen = (*(bf->func))(pkt, pktlen, pktlen); in bpf_tap()
2299 bpf_jit_filter *bf; in bpf_mtap() local
2319 bf = bpf_jitter_enable != 0 ? d->bd_bfilter : NULL; in bpf_mtap()
2321 if (bf != NULL && m->m_next == NULL) in bpf_mtap()
2322 slen = (*(bf->func))(mtod(m, u_char *), pktlen, in bpf_mtap()
/f-stack/dpdk/drivers/compress/octeontx/
H A Dotx_zip_pmd.c39 inst->s.bf = 1; in reset_stream()
134 inst->s.bf = 1; in zip_set_stream_parameters()
H A Dotx_zip.h234 cmd83->s.ef, cmd83->s.bf, cmd83->s.op, cmd83->s.ds, in zip_dump_instruction()
/f-stack/dpdk/drivers/net/mlx5/linux/
H A Dmlx5_verbs.c1027 txq_ctrl->bf_reg = qp.bf.reg; in mlx5_txq_ibv_obj_new()