Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 101) sorted by relevance

12345

/dpdk/lib/hash/
H A Drte_jhash.h48 #define __rte_jhash_mix(a, b, c) do { \ argument
57 __rte_jhash_final(a,b,c) global() argument
84 uint32_t a, b, c; __rte_jhash_2hashes() local
313 __rte_jhash_3words(uint32_t a,uint32_t b,uint32_t c,uint32_t initval) __rte_jhash_3words() argument
340 rte_jhash_3words(uint32_t a,uint32_t b,uint32_t c,uint32_t initval) rte_jhash_3words() argument
359 rte_jhash_2words(uint32_t a,uint32_t b,uint32_t initval) rte_jhash_2words() argument
376 rte_jhash_1word(uint32_t a,uint32_t initval) rte_jhash_1word() argument
[all...]
/dpdk/lib/sched/
H A Drte_sched_common.h52 rte_get_gcd64(uint64_t a, uint64_t b) in rte_get_gcd64() argument
80 rte_get_gcd(uint32_t a,uint32_t b) rte_get_gcd() argument
91 rte_get_lcd(uint32_t a,uint32_t b) rte_get_lcd() argument
[all...]
H A Drte_approx.c22 less(uint32_t a, uint32_t b, uint32_t c, uint32_t d) in less()
28 less_or_equal(uint32_t a, uint32_t b, uint32_t c, uint32_t d) in less_or_equal()
35 matches(uint32_t a, uint32_t b, in matches()
171 less_64(uint64_t a, uint64_t b, uint64_t c, uint64_t d) in less_64()
177 less_or_equal_64(uint64_t a, uint64_t b, uint64_t c, uint64_t d) in less_or_equal_64()
184 matches_64(uint64_t a, uint64_t b, in matches_64()
/dpdk/drivers/net/bnxt/tf_core/
H A Dlookup3.h59 #define mix(a, b, c) \ argument
93 #define final(a, b, c) \ argument
124 uint32_t a, b, c; in hashword() local
/dpdk/drivers/common/cnxk/hw/
H A Dml.h20 #define ML_AXI_BRIDGE_CTRL(a) (0x10020 | (uint64_t)(a) << 3) argument
24 #define ML_JCMDQ_IN(a) (0x11000 | (uint64_t)(a) << 3) /* CN10KA */ argument
26 #define ML_STGX_STATUS(a) (0x11020 | (uint64_t)(a) << 3) /* CNF10KB */ argument
29 #define ML_SCRATCH(a) (0x14000 | (uint64_t)(a) << 3) argument
30 #define ML_ANBX_BACKP_DISABLE(a) (0x18000 | (uint64_t)(a) << 12) /* CN10KA */ argument
31 #define ML_ANBX_NCBI_P_OVR(a) (0x18010 | (uint64_t)(a) << 12) /* CN10KA */ argument
32 #define ML_ANBX_NCBI_NP_OVR(a) (0x18020 | (uint64_t)(a) << 12) /* CN10KA */ argument
36 #define ML_A35_0_RST_VECTOR_BASE_W(a) (0x12084014 + (a) * (0x04)) argument
37 #define ML_A35_1_RST_VECTOR_BASE_W(a) (0x1208401c + (a) * (0x04)) argument
H A Dnpc.h17 #define NPC_AF_KPUX_CFG(a) (0x500ull | (uint64_t)(a) << 3) argument
23 #define NPC_AF_KEX_LDATAX_FLAGS_CFG(a) (0x800ull | (uint64_t)(a) << 3) argument
24 #define NPC_AF_INTFX_KEX_CFG(a) (0x1010ull | (uint64_t)(a) << 8) argument
25 #define NPC_AF_PKINDX_ACTION0(a) (0x80000ull | (uint64_t)(a) << 6) argument
26 #define NPC_AF_PKINDX_ACTION1(a) (0x80008ull | (uint64_t)(a) << 6) argument
27 #define NPC_AF_PKINDX_CPI_DEFX(a, b) \ argument
30 #define NPC_AF_KPUX_ENTRYX_CAMX(a, b, c) \ argument
33 #define NPC_AF_KPUX_ENTRYX_ACTION0(a, b) \ argument
35 #define NPC_AF_KPUX_ENTRYX_ACTION1(a, b) \ argument
37 #define NPC_AF_KPUX_ENTRY_DISX(a, b) \ argument
[all …]
/dpdk/drivers/common/sfc_efx/base/
H A Defx_hash.c94 uint32_t a; in efx_hash_dwords() local
143 uint32_t a; in efx_hash_bytes() local
226 uint32_t a; in efx_hash_bytes() local
/dpdk/drivers/bus/fslmc/mc/
H A Dfsl_mc_sys.h39 #define __arch_getq(a) (*(volatile uint64_t *)(a)) argument
40 #define __arch_putq(v, a) (*(volatile uint64_t *)(a) = (v)) argument
41 #define __arch_putq32(v, a) (*(volatile uint32_t *)(a) = (v)) argument
/dpdk/lib/eal/arm/include/
H A Drte_vect.h39 vqtbl1q_u8(uint8x16_t a, uint8x16_t b) in vqtbl1q_u8()
59 vaddvq_u16(uint16x8_t a) in vaddvq_u16()
76 vcopyq_laneq_u32(uint32x4_t a, const int lane_a, in vcopyq_laneq_u32()
/dpdk/lib/eal/include/
H A Drte_reciprocal.h46 static inline uint32_t rte_reciprocal_divide(uint32_t a, struct rte_reciprocal R) in rte_reciprocal_divide()
86 rte_reciprocal_divide_u64(uint64_t a, const struct rte_reciprocal_u64 *R) in rte_reciprocal_divide_u64()
H A Drte_test.h28 #define RTE_TEST_ASSERT_EQUAL(a, b, msg, ...) \ argument
31 #define RTE_TEST_ASSERT_NOT_EQUAL(a, b, msg, ...) \ argument
H A Drte_common.h87 #define __rte_aligned(a) __declspec(align(a)) argument
624 RTE_MIN(a,b) global() argument
638 RTE_MIN_T(a,b,t) global() argument
644 RTE_MAX(a,b) global() argument
658 RTE_MAX_T(a,b,t) global() argument
697 RTE_SWAP(a,b) global() argument
734 RTE_DIM(a) global() argument
[all...]
H A Drte_version.h23 #define RTE_VERSION_NUM(a,b,c,d) ((a) << 24 | (b) << 16 | (c) << 8 | (d)) argument
H A Drte_uuid.h29 #define RTE_UUID_INIT(a, b, c, d, e) { \ argument
[all...]
/dpdk/lib/eal/windows/include/
H A Dgetopt.h42 #define getopt(a, b, c) usual_getopt(a, b, c) argument
43 #define getopt_long(a, b, c, d, e) usual_getopt_long(a, b, c, d, e) argument
/dpdk/lib/eal/x86/include/
H A Drte_vect.h71 _mm_cvtsi128_si64(a) global() argument
83 _mm_set_epi64x(a,b) global() argument
/dpdk/app/test/
H A Dtest_efd_perf.c181 unsigned int i, a; in timed_adds() local
207 unsigned int i, j, a; in timed_lookups() local
241 unsigned int i, j, k, a; in timed_lookups_multi() local
285 unsigned int i, a; in timed_deletes() local
H A Dtest_prefetch.c23 int a = 0; in test_prefetch() local
H A Dtest_seqlock.c18 uint64_t a; member
87 uint64_t a; in reader_run() local
/dpdk/drivers/common/cnxk/
H A Droc_hash.c40 #define FF(a, b, c, d, x, s, ac) \ argument
47 #define GG(a, b, c, d, x, s, ac) \ argument
54 #define HH(a, b, c, d, x, s, ac) \ argument
61 #define II(a, b, c, d, x, s, ac) \ argument
76 uint32_t a = state[0]; in roc_hash_md5_gen() local
/dpdk/drivers/raw/ifpga/base/
H A Difpga_compat.h15 #define IFPGA_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
17 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) argument
/dpdk/lib/eal/windows/
H A Dgetopt.c28 static void pass(const char *a) {(void) a; } in pass() argument
29 #define warnx(a, ...) pass(a) argument
62 gcd(int a, int b) in gcd() argument
[all...]
/dpdk/lib/net/
H A Drte_ib.h55 uint8_t a:1; /**< Acknowledge Request. */ global() member
57 uint8_t a:1; /**< Acknowledge Request. */ global() member
/dpdk/drivers/net/cxgbe/
H A Dcxgbe_compat.h75 #define CXGBE_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
76 #define PTR_ALIGN(p, a) ((typeof(p))CXGBE_ALIGN((unsigned long)(p), (a))) argument
126 #define min(a, b) RTE_MIN(a, b) argument
130 #define max(a, b) RTE_MAX(a, b) argument
/dpdk/examples/ip_pipeline/
H A Dcli.c3047 struct table_rule_action *a) in parse_table_action_fwd() argument
3099 parse_table_action_balance(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_balance() argument
3122 parse_policer_action(char * token,enum rte_table_action_policer * a) parse_policer_action() argument
3170 parse_table_action_meter(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_meter() argument
3213 parse_table_action_tm(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_tm() argument
3234 parse_table_action_encap(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_encap() argument
3588 parse_table_action_nat(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_nat() argument
3630 parse_table_action_ttl(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_ttl() argument
3650 parse_table_action_stats(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_stats() argument
3665 parse_table_action_time(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_time() argument
3967 parse_table_action_sym_crypto(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_sym_crypto() argument
4031 parse_table_action_tag(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_tag() argument
4047 parse_table_action_decap(char ** tokens,uint32_t n_tokens,struct table_rule_action * a) parse_table_action_decap() argument
4065 parse_table_action(char ** tokens,uint32_t n_tokens,char * out,size_t out_size,struct table_rule_action * a) parse_table_action() argument
4266 struct table_rule_action a; cmd_pipeline_table_rule_add() local
4759 struct table_rule_action *a = &amp;rule->action; table_rule_show() local
5011 struct table_rule_action *a = &amp;table->rule_default->action; table_rule_show() local
[all...]

12345