Home
last modified time | relevance | path

Searched refs:w2 (Results 1 – 25 of 79) sorted by relevance

1234

/freebsd/sys/libkern/arm64/
H A Dcrc32c_armv8.S39 cbz w2, end
41 sub w2, w2, 0x1
45 cmp w2, #0x2
48 sub w2, w2, 0x2
52 cmp w2, #0x4
55 sub w2, w2, 0x4
59 lsr w9, w2, #0x3
67 tbz w2, #0x2, last_half_word
71 tbz w2, #0x1, last_byte
75 tbz w2, #0x0, end
/freebsd/contrib/tcpdump/
H A Dprint-tipc.c71 #define TIPC_LINK_ACK(w2) (((w2) >> 16) & 0xFFFF) argument
72 #define TIPC_LINK_SEQ(w2) (((w2) >> 0) & 0xFFFF) argument
107 nd_uint32_t w2; member
121 nd_uint32_t w2; member
132 #define TIPC_BC_GAP_AFTER(w2) (((w2) >> 16) & 0xFFFF) argument
133 #define TIPC_BC_GAP_TO(w2) (((w2) >> 0) & 0xFFFF) argument
156 uint32_t w0, w1, w2; in print_payload() local
202 w2 = GET_BE_U_4(ap->w2); in print_payload()
203 link_ack = TIPC_LINK_ACK(w2); in print_payload()
204 link_seq = TIPC_LINK_SEQ(w2); in print_payload()
[all …]
/freebsd/lib/libc/string/
H A Dwcscoll.c78 const wchar_t *w2 = ws2; in wcscoll_l() local
100 if ((tr2 = wcsdup(w2)) == NULL) in wcscoll_l()
110 w2 = tr2; in wcscoll_l()
115 while (*w1 && *w2) { in wcscoll_l()
133 _collate_lookup(table, w2, &len2, in wcscoll_l()
151 w2 += len2; in wcscoll_l()
154 if (*w2) { in wcscoll_l()
155 ret = -(int)*w2; in wcscoll_l()
164 while (*w1 || *w2 || st1 || st2) { in wcscoll_l()
182 while (*w2 || st2) { in wcscoll_l()
[all …]
H A Dstrcoll.c54 wchar_t *w1 = NULL, *w2 = NULL; in strcoll_l() local
92 w2 = t2; in strcoll_l()
97 if ((mbsrtowcs_l(w2, &cs2, sz2, &mbs2, locale)) == (size_t)-1) in strcoll_l()
100 ret = wcscoll_l(w1, w2, locale); in strcoll_l()
/freebsd/sys/contrib/openzfs/module/zcommon/
H A Dcityhash.c53 cityhash_impl(uint64_t w1, uint64_t w2, uint64_t w3, uint64_t w4) in cityhash_impl() argument
57 uint64_t b = w2; in cityhash_impl()
74 cityhash2(uint64_t w1, uint64_t w2) in cityhash2() argument
76 return (cityhash_impl(w1, w2, 0, 0)); in cityhash2()
80 cityhash3(uint64_t w1, uint64_t w2, uint64_t w3) in cityhash3() argument
82 return (cityhash_impl(w1, w2, w3, 0)); in cityhash3()
86 cityhash4(uint64_t w1, uint64_t w2, uint64_t w3, uint64_t w4) in cityhash4() argument
88 return (cityhash_impl(w1, w2, w3, w4)); in cityhash4()
/freebsd/crypto/openssl/crypto/aria/
H A Daria.c542 uint32_t w0[4], w1[4], w2[4], w3[4]; in ossl_aria_set_encrypt_key() local
608 w2[0] = reg0; in ossl_aria_set_encrypt_key()
609 w2[1] = reg1; in ossl_aria_set_encrypt_key()
610 w2[2] = reg2; in ossl_aria_set_encrypt_key()
611 w2[3] = reg3; in ossl_aria_set_encrypt_key()
627 ARIA_GSRK(rk, w1, w2, 19); in ossl_aria_set_encrypt_key()
629 ARIA_GSRK(rk, w2, w3, 19); in ossl_aria_set_encrypt_key()
636 ARIA_GSRK(rk, w1, w2, 31); in ossl_aria_set_encrypt_key()
638 ARIA_GSRK(rk, w2, w3, 31); in ossl_aria_set_encrypt_key()
645 ARIA_GSRK(rk, w1, w2, 67); in ossl_aria_set_encrypt_key()
[all …]
/freebsd/contrib/bearssl/src/symcipher/
H A Daes_ct64_cbcdec.c50 uint32_t w1[16], w2[16]; in br_aes_ct64_cbcdec_run() local
67 w2 + (i << 2), q[i], q[i + 4]); in br_aes_ct64_cbcdec_run()
70 w2[i] ^= ivw[i]; in br_aes_ct64_cbcdec_run()
74 w2[i] ^= w1[i - 4]; in br_aes_ct64_cbcdec_run()
77 br_range_enc32le(buf, w2, 16); in br_aes_ct64_cbcdec_run()
83 w2[i] ^= w1[i - 4]; in br_aes_ct64_cbcdec_run()
86 br_range_enc32le(buf, w2, j); in br_aes_ct64_cbcdec_run()
H A Dpoly1305_ctmul.c73 uint64_t w0, w1, w2, w3, w4; in poly1305_inner() local
104 w2 = M(a0, r2) + M(a1, r1) + M(a2, r0) + M(a3, u4) + M(a4, u3); in poly1305_inner()
122 w2 += c; in poly1305_inner()
123 c = w2 >> 26; in poly1305_inner()
124 a2 = (uint32_t)w2 & 0x3FFFFFF; in poly1305_inner()
H A Ddes_ct.c394 uint32_t v, w0, w1, w2, w3; in br_des_ct_skey_expand() local
399 w2 = (v >> 2) & 0x11111111; in br_des_ct_skey_expand()
403 *sk_exp ++ = (w2 << 4) - w2; in br_des_ct_skey_expand()
H A Dpoly1305_ctmulq.c323 uint64_t w0, w1, w2, w3; in br_poly1305_ctmulq_run() local
436 w2 = (uint64_t)v2 + (uint64_t)br_dec32le(pkey + 24) + (w1 >> 32); in br_poly1305_ctmulq_run()
437 w3 = (uint64_t)v3 + (uint64_t)br_dec32le(pkey + 28) + (w2 >> 32); in br_poly1305_ctmulq_run()
440 v2 = (uint32_t)w2; in br_poly1305_ctmulq_run()
/freebsd/libexec/rbootd/
H A Drmp_var.h135 #define COPYWORD(w1,w2) (w2) = (w1) argument
150 #define COPYWORD(w1, w2) \ argument
151 { (w2).val[_WORD_HIGHPART] = (w1).val[_WORD_HIGHPART]; \
152 (w2).val[_WORD_LOWPART] = (w1).val[_WORD_LOWPART]; \
/freebsd/sys/arm64/arm64/
H A Dsupport.S69 ldxrb w2, [x0]
73 strb w2, [x1] /* Stash old value in *val */
93 swpb w7, w2, [x0]
96 strb w2, [x1] /* Stash old value in *val */
115 ldxr w2, [x0] /* Stash the old value in w2 */
119 str w2, [x1] /* Stash old value in *val */
139 swp w7, w2, [x0]
142 str w2, [x1] /* Stash old value in *val */
/freebsd/contrib/netbsd-tests/rump/rumpkern/h_client/
H A Dh_reconcli.c84 pthread_t pt, w1, w2, w3, w4; in main() local
107 pthread_create(&w2, NULL, worker, NULL); in main()
116 pthread_join(w2, NULL); in main()
/freebsd/contrib/libxo/xo/
H A Dxo.c102 int w1 = 0, w2 = 0; in formatter() local
138 w2 = strtol(next_arg(), NULL, 0); in formatter()
146 rc = snprintf(buf, bufsiz, fmt, w1, w2, value); in formatter()
155 rc = snprintf(buf, bufsiz, fmt, w1, w2, value); in formatter()
164 rc = snprintf(buf, bufsiz, fmt, w1, w2, value); in formatter()
173 rc = snprintf(buf, bufsiz, fmt, w1, w2, value); in formatter()
/freebsd/contrib/netbsd-tests/fs/vfs/
H A Dt_renamerace.c77 w2(void *arg) in w2() function
115 pthread_create(&pt2[i], NULL, w2, NULL); in renamerace()
163 pthread_create(&pt2, NULL, w2, NULL); in renamerace_dirs()
/freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daestab.h121 d_4(uint32_t, t_dec(f, l), sb_data, w0, w1, w2, w3);
135 d_4(uint32_t, t_dec(i, l), isb_data, w0, w1, w2, w3);
150 d_4(uint32_t, t_dec(l, s), sb_data, w0, w1, w2, w3);
/freebsd/contrib/nvi/common/
H A Dencoding.c213 unsigned int w1, w2; in decode_utf16() local
225 w2 = buf[2] << 8 ^ buf[3]; in decode_utf16()
227 w2 = buf[2] ^ buf[3] << 8; in decode_utf16()
228 u = ((w1 ^ 0xD800) << 10 ^ (w2 ^ 0xDC00)) + 0x10000; in decode_utf16()
/freebsd/sys/contrib/openzfs/include/sys/
H A Dspa_checksum.h42 #define ZIO_SET_CHECKSUM(zcp, w0, w1, w2, w3) \ argument
46 (zcp)->zc_word[2] = w2; \
/freebsd/usr.sbin/makefs/msdos/
H A Dmsdosfs_conv.c66 static int char8match(uint16_t *w1, uint16_t *w2, int n);
483 char8match(uint16_t *w1, uint16_t *w2, int n) in char8match() argument
489 u2 = le16toh(*w2); in char8match()
499 ++w2; in char8match()
/freebsd/contrib/ofed/librdmacm/
H A Dib.h75 __be32 w1, __be32 w2, __be32 w3, __be32 w4) in ib_addr_set() argument
78 addr->sib_addr32[1] = w2; in ib_addr_set()
/freebsd/sys/ofed/include/rdma/
H A Dib.h76 __be32 w1, __be32 w2, __be32 w3, __be32 w4) in ib_addr_set() argument
79 addr->sib_addr32[1] = w2; in ib_addr_set()
/freebsd/sys/compat/linuxkpi/common/include/net/
H A Dipv6.h90 __be32 w1, __be32 w2, in ipv6_addr_set() argument
93 __ipv6_addr_set_half(&addr->s6_addr32[0], w1, w2); in ipv6_addr_set()
/freebsd/contrib/netbsd-tests/fs/ffs/
H A Dt_fifos.c48 w2(void *arg) in w2() function
132 pthread_create(&ptw2, NULL, w2, NULL); in ATF_TC_BODY()
/freebsd/sys/contrib/openzfs/module/icp/asm-aarch64/sha2/
H A Dsha256-armv8.S408 ldp w1,w2,[x1]
458 rev w2,w2 // 15
470 add w20,w20,w2 // h+=X[i]
499 ror w9,w2,#17
511 eor w9,w9,w2,ror#19
516 eor w9,w9,w2,lsr#10 // sigma1(X[i+14])
672 add w9,w9,w2
711 str w2,[sp,#12]
718 ror w2,w2
[all...]
/freebsd/sys/crypto/openssl/aarch64/
H A Dsha256-armv8.S426 ldp w1,w2,[x1]
476 rev w2,w2 // 15
488 add w20,w20,w2 // h+=X[i]
517 ror w9,w2,#17
529 eor w9,w9,w2,ror#19
534 eor w9,w9,w2,lsr#10 // sigma1(X[i+14])
690 add w9,w9,w2
729 str w2,[sp,#12]
736 ror w2,w21,#2
743 eor w2,w2,w21,ror#13
[all …]

1234