Home
last modified time | relevance | path

Searched refs:key1 (Results 1 – 13 of 13) sorted by relevance

/dpdk/lib/hash/
H A Drte_cmp_x86.h21 return rte_hash_k16_cmp_eq(key1, key2, key_len) || in rte_hash_k32_cmp_eq()
22 rte_hash_k16_cmp_eq((const char *) key1 + 16, in rte_hash_k32_cmp_eq()
29 return rte_hash_k16_cmp_eq(key1, key2, key_len) || in rte_hash_k48_cmp_eq()
30 rte_hash_k16_cmp_eq((const char *) key1 + 16, in rte_hash_k48_cmp_eq()
32 rte_hash_k16_cmp_eq((const char *) key1 + 32, in rte_hash_k48_cmp_eq()
40 rte_hash_k32_cmp_eq((const char *) key1 + 32, in rte_hash_k64_cmp_eq()
48 rte_hash_k16_cmp_eq((const char *) key1 + 64, in rte_hash_k80_cmp_eq()
56 rte_hash_k32_cmp_eq((const char *) key1 + 64, in rte_hash_k96_cmp_eq()
64 rte_hash_k32_cmp_eq((const char *) key1 + 64, in rte_hash_k112_cmp_eq()
66 rte_hash_k16_cmp_eq((const char *) key1 + 96, in rte_hash_k112_cmp_eq()
[all …]
H A Drte_cmp_arm64.h7 rte_hash_k16_cmp_eq(const void *key1, const void *key2, in rte_hash_k16_cmp_eq() argument
15 : [p1]"r"(key1) in rte_hash_k16_cmp_eq()
31 rte_hash_k16_cmp_eq((const char *) key1 + 16, in rte_hash_k32_cmp_eq()
39 rte_hash_k16_cmp_eq((const char *) key1 + 16, in rte_hash_k48_cmp_eq()
41 rte_hash_k16_cmp_eq((const char *) key1 + 32, in rte_hash_k48_cmp_eq()
49 rte_hash_k32_cmp_eq((const char *) key1 + 32, in rte_hash_k64_cmp_eq()
57 rte_hash_k16_cmp_eq((const char *) key1 + 64, in rte_hash_k80_cmp_eq()
65 rte_hash_k32_cmp_eq((const char *) key1 + 64, in rte_hash_k96_cmp_eq()
73 rte_hash_k32_cmp_eq((const char *) key1 + 64, in rte_hash_k112_cmp_eq()
75 rte_hash_k16_cmp_eq((const char *) key1 + 96, in rte_hash_k112_cmp_eq()
[all …]
H A Drte_hash.h70 typedef int (*rte_hash_cmp_eq_t)(const void *key1, const void *key2, size_t key_len);
H A Drte_cuckoo_hash.c95 rte_hash_cmp_eq(const void *key1, const void *key2, const struct rte_hash *h) in rte_hash_cmp_eq() argument
98 return h->rte_hash_custom_cmp_eq(key1, key2, h->key_len); in rte_hash_cmp_eq()
100 return cmp_jump_table[h->cmp_jump_table_idx](key1, key2, h->key_len); in rte_hash_cmp_eq()
/dpdk/app/test/test_cfgfiles/etc/
H A Drealloc_sections.ini2 key1=value1_section1 key
25 key1=value1_section2 key
48 key1=value1_section3 key
71 key1=value1_section4 key
81 key1=value1_section5 key
91 key1=value1_section6 key
101 key1=value1_section7 key
111 key1=value1_section8 key
121 key1=value1_section9 key
H A Dsample1.ini5 key1=value1 key
9 ;key1=value1
H A Dsample2.ini5 key1=value1 key
9 #key1=value1
H A Dinvalid_section.ini3 key1=value1 key
/dpdk/examples/l3fwd/
H A Dl3fwd_em.c319 convert_ipv4_5tuple(struct ipv4_5tuple *key1, in convert_ipv4_5tuple() argument
322 key2->ip_dst = rte_cpu_to_be_32(key1->ip_dst); in convert_ipv4_5tuple()
323 key2->ip_src = rte_cpu_to_be_32(key1->ip_src); in convert_ipv4_5tuple()
324 key2->port_dst = rte_cpu_to_be_16(key1->port_dst); in convert_ipv4_5tuple()
325 key2->port_src = rte_cpu_to_be_16(key1->port_src); in convert_ipv4_5tuple()
326 key2->proto = key1->proto; in convert_ipv4_5tuple()
332 convert_ipv6_5tuple(struct ipv6_5tuple *key1, in convert_ipv6_5tuple() argument
338 key2->ip_dst[i] = key1->ip_dst[i]; in convert_ipv6_5tuple()
339 key2->ip_src[i] = key1->ip_src[i]; in convert_ipv6_5tuple()
341 key2->port_dst = rte_cpu_to_be_16(key1->port_dst); in convert_ipv6_5tuple()
[all …]
/dpdk/app/test/
H A Dtest_efd_perf.c115 static int key_compare(const void *key1, const void *key2) in key_compare() argument
117 return memcmp(key1, key2, MAX_KEYSIZE); in key_compare()
H A Dtest_member_perf.c116 static int key_compare(const void *key1, const void *key2) in key_compare() argument
118 return memcmp(key1, key2, MAX_KEYSIZE); in key_compare()
H A Dtest_member.c531 static int key_compare(const void *key1, const void *key2) in key_compare() argument
533 return memcmp(key1, key2, KEY_SIZE); in key_compare()
/dpdk/drivers/net/mlx5/
H A Dmlx5_flow_dv.c17909 const void *key1 = r1->key ? r1->key : rss_hash_default_key; in flow_dv_mtr_policy_rss_compare() local
17912 if (memcmp(key1, key2, MLX5_RSS_HASH_KEY_LEN)) in flow_dv_mtr_policy_rss_compare()