Home
last modified time | relevance | path

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

/dpdk/drivers/common/mlx5/
H A Dmlx5_common.h33 #define BITFIELD_DECLARE(bf, type, size) \ argument
36 #define BITFIELD_DEFINE(bf, type, size) \ argument
37 BITFIELD_DECLARE((bf), type, (size)) = { 0 }
38 #define BITFIELD_SET(bf, b) \ argument
39 (void)((bf)[((b) / (sizeof((bf)[0]) * CHAR_BIT))] |= \
40 ((size_t)1 << ((b) % (sizeof((bf)[0]) * CHAR_BIT))))
41 #define BITFIELD_RESET(bf, b) \ argument
42 (void)((bf)[((b) / (sizeof((bf)[0]) * CHAR_BIT))] &= \
43 ~((size_t)1 << ((b) % (sizeof((bf)[0]) * CHAR_BIT))))
44 #define BITFIELD_ISSET(bf, b) \ argument
[all …]
H A Dmlx5_prm.h1567 u8 bf[0x1]; member
/dpdk/app/dumpcap/
H A Dmain.c273 struct bpf_program bf; in compile_filter() local
280 if (pcap_compile(pcap, &bf, filter_str, in compile_filter()
285 bpf_prm = rte_bpf_convert(&bf); in compile_filter()
292 printf("cBPF program (%u insns)\n", bf.bf_len); in compile_filter()
293 bpf_dump(&bf, 1); in compile_filter()
300 pcap_freecode(&bf); in compile_filter()
/dpdk/drivers/compress/octeontx/include/
H A Dzip_regs.h207 uint64_t bf : 1; member
221 uint64_t bf : 1;
388 uint64_t bf : 1; member
402 uint64_t bf : 1;
/dpdk/drivers/compress/octeontx/
H A Dotx_zip_pmd.c39 inst->s.bf = 1; in reset_stream()
136 inst->s.bf = 1; in zip_set_stream_parameters()
H A Dotx_zip.h235 cmd83->s.ef, cmd83->s.bf, cmd83->s.op, cmd83->s.ds, in zip_dump_instruction()
/dpdk/drivers/net/mlx5/linux/
H A Dmlx5_verbs.c1074 mlx5_txq_ibv_uar_init(txq_ctrl, qp.bf.reg); in mlx5_txq_ibv_obj_new()