Home
last modified time | relevance | path

Searched refs:k1 (Results 1 – 25 of 40) sorted by relevance

12

/f-stack/freebsd/mips/mips/
H A Dexception.S128 PTR_L k1, 0(k1) #08: k1=seg entry
134 PTR_ADDU k1, k0, k1 # k1=pde entry address
135 PTR_L k1, 0(k1) # k1=pde entry
141 PTR_ADDU k1, k1, k0 #0d: k1=pte address
143 PTE_L k1, PTESIZE(k1) #0f: k1=lo0 pte
874 PTR_L k1, 0(k1) # k1=seg entry
886 PTR_L k1, 0(k1) # k1=pde entry
895 PTR_ADDU k1, k1, k0 # k1=pte address
1051 PTR_L k1, 0(k1) # k1=seg entry
1058 PTR_L k1, 0(k1) # k1=pde entry
[all …]
H A Dswtch.S91 GET_CPU_PCPU(k1)
92 PTR_L k1, PC_CURPCB(k1)
98 RESTORE_U_PCB_REG(a0, PC, k1)
100 RESTORE_U_PCB_REG(v0, V0, k1)
103 RESTORE_U_PCB_REG(v1, V1, k1)
104 RESTORE_U_PCB_REG(a0, A0, k1)
131 li k1, ~MIPS_SR_INT_MASK
132 and k0, k0, k1
133 mfc0 k1, MIPS_COP_0_STATUS
134 and k1, k1, MIPS_SR_INT_MASK
[all …]
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-debug-handler.S87 dmtc0 k1,reg
91 ld k1, 0(k1); \
177 andi k1, 0x3f
183 dext k1,k1,10,5
184 beqz k1,noexc
199 sd k1, 0(k1)
202 ld k1, 0(k1)
224 sd $\n, 0(k1)
225 addiu k1, 8
228 move $25, k1
[all …]
H A Dcvmx-interrupt-handler.S57 jalr k1, k0 // Save our address in k1, so we can tell which
94 mflo k1 // Do it here so it completes by the time we need it
101 sd k1, 264(sp) // save lo
111 li k1, 1
112 sw k1, 0(k0)
122 ld k1, 264(sp) // read lo
124 mtlo k1 // restore lo
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dhash.h90 k1 *= c1; in hash_x86_32()
91 k1 = hash_rotl_32(k1, 15); in hash_x86_32()
92 k1 *= c2; in hash_x86_32()
94 h1 ^= k1; in hash_x86_32()
104 uint32_t k1 = 0; in hash_x86_32() local
109 case 1: k1 ^= tail[0]; k1 *= c1; k1 = hash_rotl_32(k1, 15); in hash_x86_32()
110 k1 *= c2; h1 ^= k1; in hash_x86_32()
149 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1; in hash_x86_128()
201 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1; in hash_x86_128()
244 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1; in hash_x64_128()
[all …]
H A Dckh.h97 bool ckh_string_keycomp(const void *k1, const void *k2);
99 bool ckh_pointer_keycomp(const void *k1, const void *k2);
/f-stack/freebsd/contrib/ck/src/
H A Dck_ht_hash.h139 k1 *= c1; in MurmurHash3_x86_32()
140 k1 = ROTL32(k1,15); in MurmurHash3_x86_32()
141 k1 *= c2; in MurmurHash3_x86_32()
143 h1 ^= k1; in MurmurHash3_x86_32()
153 uint32_t k1 = 0; in MurmurHash3_x86_32() local
161 case 1: k1 ^= tail[0]; in MurmurHash3_x86_32()
162 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; in MurmurHash3_x86_32()
247 k1 *= m; k1 ^= k1 >> r; k1 *= m; in MurmurHash64B()
248 h1 *= m; h1 ^= k1; in MurmurHash64B()
260 k1 *= m; k1 ^= k1 >> r; k1 *= m; in MurmurHash64B()
[all …]
/f-stack/dpdk/lib/librte_gro/
H A Dgro_tcp4.h189 is_same_tcp4_flow(struct tcp4_flow_key k1, struct tcp4_flow_key k2) in is_same_tcp4_flow() argument
191 return (rte_is_same_ether_addr(&k1.eth_saddr, &k2.eth_saddr) && in is_same_tcp4_flow()
192 rte_is_same_ether_addr(&k1.eth_daddr, &k2.eth_daddr) && in is_same_tcp4_flow()
193 (k1.ip_src_addr == k2.ip_src_addr) && in is_same_tcp4_flow()
194 (k1.ip_dst_addr == k2.ip_dst_addr) && in is_same_tcp4_flow()
195 (k1.recv_ack == k2.recv_ack) && in is_same_tcp4_flow()
196 (k1.src_port == k2.src_port) && in is_same_tcp4_flow()
197 (k1.dst_port == k2.dst_port)); in is_same_tcp4_flow()
H A Dgro_udp4.h179 is_same_udp4_flow(struct udp4_flow_key k1, struct udp4_flow_key k2) in is_same_udp4_flow() argument
181 return (rte_is_same_ether_addr(&k1.eth_saddr, &k2.eth_saddr) && in is_same_udp4_flow()
182 rte_is_same_ether_addr(&k1.eth_daddr, &k2.eth_daddr) && in is_same_udp4_flow()
183 (k1.ip_src_addr == k2.ip_src_addr) && in is_same_udp4_flow()
184 (k1.ip_dst_addr == k2.ip_dst_addr) && in is_same_udp4_flow()
185 (k1.ip_id == k2.ip_id)); in is_same_udp4_flow()
H A Dgro_vxlan_tcp4.c193 is_same_vxlan_tcp4_flow(struct vxlan_tcp4_flow_key k1, in is_same_vxlan_tcp4_flow() argument
196 return (rte_is_same_ether_addr(&k1.outer_eth_saddr, in is_same_vxlan_tcp4_flow()
198 rte_is_same_ether_addr(&k1.outer_eth_daddr, in is_same_vxlan_tcp4_flow()
200 (k1.outer_ip_src_addr == k2.outer_ip_src_addr) && in is_same_vxlan_tcp4_flow()
201 (k1.outer_ip_dst_addr == k2.outer_ip_dst_addr) && in is_same_vxlan_tcp4_flow()
202 (k1.outer_src_port == k2.outer_src_port) && in is_same_vxlan_tcp4_flow()
203 (k1.outer_dst_port == k2.outer_dst_port) && in is_same_vxlan_tcp4_flow()
204 (k1.vxlan_hdr.vx_flags == k2.vxlan_hdr.vx_flags) && in is_same_vxlan_tcp4_flow()
205 (k1.vxlan_hdr.vx_vni == k2.vxlan_hdr.vx_vni) && in is_same_vxlan_tcp4_flow()
206 is_same_tcp4_flow(k1.inner_key, k2.inner_key)); in is_same_vxlan_tcp4_flow()
H A Dgro_vxlan_udp4.c184 is_same_vxlan_udp4_flow(struct vxlan_udp4_flow_key k1, in is_same_vxlan_udp4_flow() argument
193 return (rte_is_same_ether_addr(&k1.outer_eth_saddr, in is_same_vxlan_udp4_flow()
195 rte_is_same_ether_addr(&k1.outer_eth_daddr, in is_same_vxlan_udp4_flow()
197 (k1.outer_ip_src_addr == k2.outer_ip_src_addr) && in is_same_vxlan_udp4_flow()
198 (k1.outer_ip_dst_addr == k2.outer_ip_dst_addr) && in is_same_vxlan_udp4_flow()
199 (k1.outer_dst_port == k2.outer_dst_port) && in is_same_vxlan_udp4_flow()
200 (k1.vxlan_hdr.vx_flags == k2.vxlan_hdr.vx_flags) && in is_same_vxlan_udp4_flow()
201 (k1.vxlan_hdr.vx_vni == k2.vxlan_hdr.vx_vni) && in is_same_vxlan_udp4_flow()
202 is_same_udp4_flow(k1.inner_key, k2.inner_key)); in is_same_vxlan_udp4_flow()
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dbox_easy2.c20 unsigned char *k1; in main() local
43 k1 = (unsigned char *) sodium_malloc(crypto_box_BEFORENMBYTES); in main()
79 ret = crypto_box_beforenm(k1, small_order_p, bobsk); in main()
84 ret = crypto_box_beforenm(k1, alicepk, bobsk); in main()
91 if (crypto_box_easy_afternm(c, m, 0, nonce, k1) != 0) { in main()
96 crypto_box_easy_afternm(c, m, (unsigned long long) mlen, nonce, k1); in main()
128 k1); in main()
141 sodium_free(k1); in main()
/f-stack/freebsd/sys/
H A Dumtx.h190 umtx_key_match(const struct umtx_key *k1, const struct umtx_key *k2)
192 return (k1->type == k2->type &&
193 k1->info.both.a == k2->info.both.a &&
194 k1->info.both.b == k2->info.both.b);
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/
H A Dshorthash_siphash24_ref.c16 uint64_t k1 = LOAD64_LE(k + 8); in crypto_shorthash_siphash24() local
22 v3 ^= k1; in crypto_shorthash_siphash24()
24 v1 ^= k1; in crypto_shorthash_siphash24()
H A Dshorthash_siphashx24_ref.c15 uint64_t k1 = LOAD64_LE(k + 8); in crypto_shorthash_siphashx24() local
21 v3 ^= k1; in crypto_shorthash_siphashx24()
23 v1 ^= k1; in crypto_shorthash_siphashx24()
/f-stack/app/redis-5.0.5/src/
H A Dsiphash.c125 uint64_t k1 = U8TO64_LE(k + 8); in siphash() local
130 v3 ^= k1; in siphash()
132 v1 ^= k1; in siphash()
185 uint64_t k1 = U8TO64_LE(k + 8); in siphash_nocase() local
190 v3 ^= k1; in siphash_nocase()
192 v1 ^= k1; in siphash_nocase()
/f-stack/dpdk/lib/librte_net/
H A Dnet_crc_sse.c263 uint64_t k1, k2, k5, k6; in rte_net_crc_sse42_init() local
267 k1 = 0x189aeLLU; in rte_net_crc_sse42_init()
276 _mm_setr_epi64(_mm_cvtsi64_m64(k1), _mm_cvtsi64_m64(k2)); in rte_net_crc_sse42_init()
283 k1 = 0xccaa009eLLU; in rte_net_crc_sse42_init()
292 _mm_setr_epi64(_mm_cvtsi64_m64(k1), _mm_cvtsi64_m64(k2)); in rte_net_crc_sse42_init()
/f-stack/dpdk/lib/librte_ip_frag/
H A Dip_frag_common.h73 ip_frag_key_cmp(const struct ip_frag_key * k1, const struct ip_frag_key * k2) in ip_frag_key_cmp() argument
77 val = k1->id_key_len ^ k2->id_key_len; in ip_frag_key_cmp()
78 for (i = 0; i < k1->key_len; i++) in ip_frag_key_cmp()
79 val |= k1->src_dst[i] ^ k2->src_dst[i]; in ip_frag_key_cmp()
/f-stack/dpdk/lib/librte_hash/
H A Drte_cmp_x86.h11 const __m128i k1 = _mm_loadu_si128((const __m128i *) key1); in rte_hash_k16_cmp_eq() local
13 const __m128i x = _mm_xor_si128(k1, k2); in rte_hash_k16_cmp_eq()
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dsun8i-h3-nanopi.dtsi78 input-name = "k1";
80 k1 {
81 label = "k1";
H A Dsun8i-h3-nanopi-duo2.dts43 k1 {
44 label = "k1";
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dckh.c547 ckh_string_keycomp(const void *k1, const void *k2) { in ckh_string_keycomp() argument
548 assert(k1 != NULL); in ckh_string_keycomp()
551 return !strcmp((char *)k1, (char *)k2); in ckh_string_keycomp()
567 ckh_pointer_keycomp(const void *k1, const void *k2) { in ckh_pointer_keycomp() argument
568 return (k1 == k2); in ckh_pointer_keycomp()
/f-stack/app/redis-5.0.5/utils/hashtable/
H A Drehashing.c22 unsigned long k1 = (unsigned long)key1; in dictKeyCompare() local
24 return k1 == k2; in dictKeyCompare()
/f-stack/freebsd/mips/include/
H A Dregdef.h84 #define k1 $27 macro
H A Dframe.h83 register_t k1; member

12