Home
last modified time | relevance | path

Searched refs:w0 (Results 1 – 25 of 73) sorted by relevance

123

/freebsd/contrib/tcpdump/
H A Dprint-tipc.c61 nd_uint32_t w0; member
65 #define TIPC_VER(w0) (((w0) >> 29) & 0x07) argument
66 #define TIPC_USER(w0) (((w0) >> 25) & 0x0F) argument
67 #define TIPC_HSIZE(w0) (((w0) >> 21) & 0x0F) argument
68 #define TIPC_MSIZE(w0) (((w0) >> 0) & 0x1FFFF) argument
105 nd_uint32_t w0; member
119 nd_uint32_t w0; member
141 nd_uint32_t w0; member
156 uint32_t w0, w1, w2; in print_payload() local
170 w0 = GET_BE_U_4(ap->w0); in print_payload()
[all …]
/freebsd/sys/libkern/arm64/
H A Dcrc32c_armv8.S43 crc32cb w0, w0, w10
50 crc32ch w0, w0, w10
57 crc32cw w0, w0, w10
63 crc32cx w0, w0, x10
69 crc32cw w0, w0, w10
73 crc32ch w0, w0, w10
77 crc32cb w0, w0, w10
/freebsd/sys/arm64/linux/
H A Dlinux_support.S47 EXIT_USER_ACCESS_CHECK(w0, x1)
72 mov w6, w0 /* Save oparg */
74 stlxr w0, w6, [x1] /* Store oparg to uaddr */
75 cbz w0, 3f /* Exit on success */
76 sub w5, w5, w0 /* Dec loop counter, w0 is 1 */
94 mov w6, w0
97 stlxr w0, w3, [x1]
98 cbz w0, 3f
99 sub w5, w5, w0
117 mov w6, w0
[all …]
/freebsd/sys/tools/sound/
H A Dfeeder_eq_mkfilter.awk98 function feedeq_alpha(w0, A, QS)
101 alpha = sin(w0) / (2.0 * QS);
103 alpha = sin(w0) * 0.5 * sqrt(A + ((1.0 / A) * \
128 w0, A, alpha, a0, a1, a2, b0, b1, b2)
130 w0 = feedeq_w0(FEEDEQ_TREBLE_SFREQ, 1.0 * rate);
132 alpha = feedeq_alpha(w0, A, FEEDEQ_TREBLE_SLOPE);
136 b1 = -2.0 * cos(w0);
139 a1 = -2.0 * cos(w0);
142 b0 = A*((A+1.0)+((A-1.0)*cos(w0))+(2.0*sqrt(A)*alpha));
143 b1 = -2.0*A*((A-1.0)+((A+1.0)*cos(w0)) );
[all …]
/freebsd/lib/libc/aarch64/string/
H A Dtimingsafe_memcmp.S24 mov w0, #0 // empty buffer always matches
34 sub w0, w5, w6
48 csetm w0, lo // w0 = w3 >= w4 ? 0 : -1
49 csinc w0, w0, wzr, ls // w0 = w3 <=> w4 ? 1 : 0 : -1
62 csetm w0, lo // x0 = x3 >= w4 ? 0 : -1
63 csinc w0, w0, wzr, ls // x0 = x3 <=> w4 ? 1 : 0 : -1
77 csetm w0, lo
78 csinc w0, w0, wzr, ls
114 csetm w0, lo
115 csinc w0, w0, wzr, ls
H A Dtimingsafe_bcmp.S27 mov w0, #0 // empty buffer always matches
37 orr w0, w3, w5
47 orr w0, w3, w5
57 orr w0, w3, w5
80 mov w0, v0.s[0]
111 mov w0, v0.s[0]
H A Dstrcmp.S171 sub w0, w4, w5 // byte difference
210 sub w0, w4, w5
220 sub w0, w4, w5
307 sub w0, w5, w4
340 sub w0, w5, w4
/freebsd/usr.bin/calendar/tests/
H A Dregress.sh29 REGRESSION_TEST(`w0-1',`$CALENDAR -W 0 -t 28.12.2006')
30 REGRESSION_TEST(`w0-2',`$CALENDAR -W 0 -t 29.12.2006')
31 REGRESSION_TEST(`w0-3',`$CALENDAR -W 0 -t 30.12.2006')
32 REGRESSION_TEST(`w0-4',`$CALENDAR -W 0 -t 31.12.2006')
33 REGRESSION_TEST(`w0-5',`$CALENDAR -W 0 -t 01.01.2007')
34 REGRESSION_TEST(`w0-6',`$CALENDAR -W 0 -t 02.01.2007')
35 REGRESSION_TEST(`w0-7',`$CALENDAR -W 0 -t 03.01.2007')
H A DMakefile34 ${PACKAGE}FILES+= regress.w0-1.out
35 ${PACKAGE}FILES+= regress.w0-2.out
36 ${PACKAGE}FILES+= regress.w0-3.out
37 ${PACKAGE}FILES+= regress.w0-4.out
38 ${PACKAGE}FILES+= regress.w0-5.out
39 ${PACKAGE}FILES+= regress.w0-6.out
40 ${PACKAGE}FILES+= regress.w0-7.out
/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
559 w0[0] = GET_U32_BE(userKey, 0); in ossl_aria_set_encrypt_key()
560 w0[1] = GET_U32_BE(userKey, 1); in ossl_aria_set_encrypt_key()
561 w0[2] = GET_U32_BE(userKey, 2); in ossl_aria_set_encrypt_key()
562 w0[3] = GET_U32_BE(userKey, 3); in ossl_aria_set_encrypt_key()
564 reg0 = w0[0] ^ ck[0]; in ossl_aria_set_encrypt_key()
565 reg1 = w0[1] ^ ck[1]; in ossl_aria_set_encrypt_key()
566 reg2 = w0[2] ^ ck[2]; in ossl_aria_set_encrypt_key()
567 reg3 = w0[3] ^ ck[3]; in ossl_aria_set_encrypt_key()
603 reg0 ^= w0[0]; in ossl_aria_set_encrypt_key()
[all …]
/freebsd/sys/arm64/arm64/
H A Dsupport.S52 EXIT_USER_ACCESS_CHECK(w0, x1)
77 mov w0, w3
100 mov w0, #0
123 mov w0, w3
146 mov w0, #0
166 mov w0, w5 /* Result same as store status */
183 cset w0, ne /* Return 0 on success, 1 on failure */
206 mov w0, w5 /* Result same as store status */
223 cset w0, ne /* Return 0 on success, 1 on failure */
242 fsudata ldtrb, w0, 0
[all …]
H A Dbus_space_asm.S32 ldrb w0, [x1, x2]
37 ldrh w0, [x1, x2]
42 ldr w0, [x1, x2]
408 ldrb w0, [x1, x2] /* Checked instruction */
410 strb w0,[x3]
418 ldrh w0, [x1, x2] /* Checked instruction */
420 strh w0,[x3]
428 ldr w0, [x1, x2] /* Checked instruction */
430 str w0,[x3]
/freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daestab.h96 static const uint32_t t_dec(r, c)[RC_LENGTH] = rc_data(w0);
118 d_1(uint32_t, t_dec(f, l), sb_data, w0);
121 d_4(uint32_t, t_dec(f, l), sb_data, w0, w1, w2, w3);
132 d_1(uint32_t, t_dec(i, l), isb_data, w0);
135 d_4(uint32_t, t_dec(i, l), isb_data, w0, w1, w2, w3);
142 d_1(uint32_t, t_dec(l, s), sb_data, w0);
150 d_4(uint32_t, t_dec(l, s), sb_data, w0, w1, w2, w3);
/freebsd/sys/crypto/camellia/
H A Dcamellia.c81 #define CAMELLIA_ROLDQ(ll, lr, rl, rr, w0, w1, bits) \ argument
83 w0 = ll; \
87 rr = (rr << bits) + (w0 >> (32 - bits)); \
90 #define CAMELLIA_ROLDQo32(ll, lr, rl, rr, w0, w1, bits) \ argument
92 w0 = ll; \
96 rl = (rr << (bits - 32)) + (w0 >> (64 - bits)); \
97 rr = (w0 << (bits - 32)) + (w1 >> (64 - bits)); \
440 uint32_t il, ir, t0, t1, w0, w1; in camellia_setup128() local
457 CAMELLIA_ROLDQ(kll, klr, krl, krr, w0, w1, 15); in camellia_setup128()
460 CAMELLIA_ROLDQ(kll, klr, krl, krr, w0, w1, 30); in camellia_setup128()
[all …]
/freebsd/sys/cddl/dev/dtrace/aarch64/
H A Ddtrace_asm.S74 ldtrb w0, [x0]
83 ldtrh w0, [x0]
92 ldtr w0, [x0]
159 2: mov w0, w3 /* Return the value loaded from target */
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_AArch64.S49 mov w0, w17
76 mov w0, w17
103 mov w0, w17
133 mov w0, w17
/freebsd/contrib/bearssl/src/symcipher/
H A Ddes_ct.c394 uint32_t v, w0, w1, w2, w3; in br_des_ct_skey_expand() local
397 w0 = v & 0x11111111; in br_des_ct_skey_expand()
401 *sk_exp ++ = (w0 << 4) - w0; in br_des_ct_skey_expand()
406 w0 = v & 0x11111111; in br_des_ct_skey_expand()
408 *sk_exp ++ = (w0 << 4) - w0; in br_des_ct_skey_expand()
H A Dpoly1305_ctmul.c73 uint64_t w0, w1, w2, w3, w4; in poly1305_inner() local
102 w0 = M(a0, r0) + M(a1, u4) + M(a2, u3) + M(a3, u2) + M(a4, u1); in poly1305_inner()
117 c = w0 >> 26; in poly1305_inner()
118 a0 = (uint32_t)w0 & 0x3FFFFFF; in poly1305_inner()
H A Dpoly1305_ctmulq.c323 uint64_t w0, w1, w2, w3; in br_poly1305_ctmulq_run() local
434 w0 = (uint64_t)v0 + (uint64_t)br_dec32le(pkey + 16); in br_poly1305_ctmulq_run()
435 w1 = (uint64_t)v1 + (uint64_t)br_dec32le(pkey + 20) + (w0 >> 32); in br_poly1305_ctmulq_run()
438 v0 = (uint32_t)w0; in br_poly1305_ctmulq_run()
/freebsd/sys/contrib/dev/rtw89/
H A Dtxrx.h404 __le32 w0; in rtw89_core_get_tid_indicate()
415 __le32 w0;
433 __le32 w0;
447 __le32 w0;
550 __le32 w0;
227 __le32 w0; global() member
238 __le32 w0; global() member
253 __le32 w0; global() member
266 __le32 w0; global() member
273 __le32 w0; global() member
/freebsd/sys/contrib/openzfs/include/sys/
H A Dspa_checksum.h42 #define ZIO_SET_CHECKSUM(zcp, w0, w1, w2, w3) \ argument
44 (zcp)->zc_word[0] = w0; \
/freebsd/sys/crypto/openssl/aarch64/
H A Darm64cpuid.S137 neg w0,w3
138 lsr w0,w0,#31
H A Dsha256-armv8.S354 eor w0,w22,w22,ror#14
360 eor w16,w16,w0,ror#11 // Sigma1(e)
361 ror w0,w26,#2
368 eor w17,w0,w17,ror#13 // Sigma0(a)
375 ldp w15,w0,[x1],#2*4
424 rev w0,w0 // 13
434 add w22,w22,w0 // h+=X[i]
628 add w7,w7,w0
667 str w0,[sp,#4]
674 ror w0,w23,#2
[all …]
/freebsd/sys/contrib/openzfs/module/icp/asm-aarch64/sha2/
H A Dsha256-armv8.S336 eor w0,w22,w22,ror#14
342 eor w16,w16,w0,ror#11 // Sigma1(e)
343 ror w0,w26,#2
350 eor w17,w0,w17,ror#13 // Sigma0(a)
357 ldp w15,w0,[x1],#2*4
406 rev w0,w0 // 13
416 add w22,w22,w0 // h+=X[i]
610 add w7,w7,w0
649 str w0,[s
[all...]
/freebsd/contrib/diff/src/
H A Dio.c572 word *w0, *w1; in find_identical_ends() local
599 w0 = filevec[0].buffer; in find_identical_ends()
601 p0 = buffer0 = (char *) w0; in find_identical_ends()
622 while (*w0 == *w1) in find_identical_ends()
623 w0++, w1++; in find_identical_ends()
626 p0 = (char *) w0; in find_identical_ends()

123