Home
last modified time | relevance | path

Searched full:q6 (Results 1 – 25 of 118) sorted by relevance

12345

/freebsd/sys/crypto/openssl/arm/
H A Dbsaes-armv7.S117 veor q10, q6, q9
127 vshr.u64 q10, q6, #1
137 veor q6, q6, q10
155 veor q11, q11, q6
160 veor q6, q6, q11
179 veor q11, q11, q6
184 veor q6, q6, q11
225 veor q10, q10, q6
238 veor q1, q1, q6
240 veor q6, q6, q4
[all …]
H A Darmv4-mont.S228 vmull.u32 q6,d28,d0[0]
245 vmlal.u32 q6,d29,d4[0]
252 vmov q5,q6
254 vmov q6,q7
277 vmlal.u32 q6,d28,d0[0]
294 vmlal.u32 q6,d29,d4[0]
300 vmov q5,q6
302 vmov q6,q7
331 veor q6,q6,q6
347 vst1.64 {q6,q7},[r7,:256]!
[all …]
H A Dpoly1305-armv4.S426 vmull.u32 q6,d1,d0[1]
432 vmlal.u32 q6,d0,d1[1]
438 vmlal.u32 q6,d7,d4[1]
445 vmlal.u32 q6,d5,d6[1]
451 vmlal.u32 q6,d3,d8[1]
510 vadd.i64 q6,q6,q4 @ h0 -> h1
515 vshr.u64 q4,q6,#26
516 vmovn.i64 d12,q6
789 vmull.u32 q6,d23,d0[1]
799 vmlal.u32 q6,d21,d1[1]
[all …]
H A Dchacha-armv4.S854 vmov q6,q2
887 vadd.i32 q6,q6,q7
893 veor q13,q5,q6
935 vadd.i32 q6,q6,q7
941 veor q13,q5,q6
959 vext.8 q6,q6,q6,#8
995 vadd.i32 q6,q6,q7
1001 veor q13,q5,q6
1043 vadd.i32 q6,q6,q7
1049 veor q13,q5,q6
[all …]
H A Daesv8-armx.S621 vld1.8 {q6},[r4]
638 veor q0,q0,q6
656 vst1.8 {q6},[r1]!
699 veor q6,q0,q7
702 vst1.8 {q6},[r1]!
714 vst1.8 {q6},[r1]!
738 veor q6,q0,q7
741 vst1.8 {q6},[r1]!
782 veor q4,q6,q7
797 vorr q6,q11,q11
[all …]
H A Dsha1-armv4-large.S1382 vld1.8 {q6,q7},[r1]!
1387 vrev32.8 q6,q6
1395 vadd.i32 q12,q8,q6
1396 INST(0x4c,0x8c,0x3a,0xe2) @ sha1su0 q4,q5,q6
1401 INST(0x4e,0xac,0x3c,0xe2) @ sha1su0 q5,q6,q7
1406 INST(0x48,0xcc,0x3e,0xe2) @ sha1su0 q6,q7,q4
1410 INST(0x8a,0xc3,0xba,0xf3) @ sha1su1 q6,q5
1414 vadd.i32 q12,q9,q6
1415 INST(0x8c,0xe3,0xba,0xf3) @ sha1su1 q7,q6
1416 INST(0x4c,0x8c,0x3a,0xe2) @ sha1su0 q4,q5,q6
[all …]
/freebsd/sys/netinet6/
H A Dfrag6.c77 * +--- TAILQ(struct ip6q, packets) *q6; tailq entries holding
292 frag6_rmqueue(struct ip6q *q6, uint32_t bucket) in frag6_rmqueue() argument
296 TAILQ_REMOVE(IP6QB_HEAD(bucket), q6, ip6q_tq); in frag6_rmqueue()
299 mac_ip6q_destroy(q6); in frag6_rmqueue()
301 free(q6, M_FRAG6); in frag6_rmqueue()
309 frag6_freef(struct ip6q *q6, uint32_t bucket) in frag6_freef() argument
317 while ((af6 = TAILQ_FIRST(&q6->ip6q_frags)) != NULL) { in frag6_freef()
319 TAILQ_REMOVE(&q6->ip6q_frags, af6, ip6af_tq); in frag6_freef()
330 ip6->ip6_src = q6->ip6q_src; in frag6_freef()
331 ip6->ip6_dst = q6->ip6q_dst; in frag6_freef()
[all …]
/freebsd/sys/security/mac/
H A Dmac_inet6.c84 mac_ip6q_init(struct ip6q *q6, int flag) in mac_ip6q_init() argument
88 q6->ip6q_label = mac_ip6q_label_alloc(flag); in mac_ip6q_init()
89 if (q6->ip6q_label == NULL) in mac_ip6q_init()
92 q6->ip6q_label = NULL; in mac_ip6q_init()
105 mac_ip6q_destroy(struct ip6q *q6) in mac_ip6q_destroy() argument
108 if (q6->ip6q_label != NULL) { in mac_ip6q_destroy()
109 mac_ip6q_label_free(q6->ip6q_label); in mac_ip6q_destroy()
110 q6->ip6q_label = NULL; in mac_ip6q_destroy()
115 mac_ip6q_reassemble(struct ip6q *q6, struct mbuf *m) in mac_ip6q_reassemble() argument
124 MAC_POLICY_PERFORM_NOSLEEP(ip6q_reassemble, q6, q6->ip6q_label, m, in mac_ip6q_reassemble()
[all …]
H A Dmac_framework.h213 void mac_ip6q_create(struct mbuf *m, struct ip6q *q6);
214 void mac_ip6q_destroy(struct ip6q *q6);
215 int mac_ip6q_init(struct ip6q *q6, int);
216 int mac_ip6q_match(struct mbuf *m, struct ip6q *q6);
217 void mac_ip6q_reassemble(struct ip6q *q6, struct mbuf *m);
218 void mac_ip6q_update(struct mbuf *m, struct ip6q *q6);
/freebsd/contrib/bearssl/src/symcipher/
H A Daes_ct64_dec.c35 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; in br_aes_ct64_bitslice_invSbox() local
43 q6 = ~q[6]; in br_aes_ct64_bitslice_invSbox()
45 q[7] = q1 ^ q4 ^ q6; in br_aes_ct64_bitslice_invSbox()
48 q[4] = q6 ^ q1 ^ q3; in br_aes_ct64_bitslice_invSbox()
51 q[1] = q3 ^ q6 ^ q0; in br_aes_ct64_bitslice_invSbox()
62 q6 = ~q[6]; in br_aes_ct64_bitslice_invSbox()
64 q[7] = q1 ^ q4 ^ q6; in br_aes_ct64_bitslice_invSbox()
67 q[4] = q6 ^ q1 ^ q3; in br_aes_ct64_bitslice_invSbox()
70 q[1] = q3 ^ q6 ^ q0; in br_aes_ct64_bitslice_invSbox()
112 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; in inv_mix_columns() local
[all …]
H A Daes_ct_dec.c49 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; in br_aes_ct_bitslice_invSbox() local
57 q6 = ~q[6]; in br_aes_ct_bitslice_invSbox()
59 q[7] = q1 ^ q4 ^ q6; in br_aes_ct_bitslice_invSbox()
62 q[4] = q6 ^ q1 ^ q3; in br_aes_ct_bitslice_invSbox()
65 q[1] = q3 ^ q6 ^ q0; in br_aes_ct_bitslice_invSbox()
76 q6 = ~q[6]; in br_aes_ct_bitslice_invSbox()
78 q[7] = q1 ^ q4 ^ q6; in br_aes_ct_bitslice_invSbox()
81 q[4] = q6 ^ q1 ^ q3; in br_aes_ct_bitslice_invSbox()
84 q[1] = q3 ^ q6 ^ q0; in br_aes_ct_bitslice_invSbox()
123 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; in inv_mix_columns() local
[all …]
H A Daes_ct_enc.c65 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; in mix_columns() local
74 q6 = q[6]; in mix_columns()
82 r6 = (q6 >> 8) | (q6 << 24); in mix_columns()
91 q[6] = q5 ^ r5 ^ r6 ^ rotr16(q6 ^ r6); in mix_columns()
92 q[7] = q6 ^ r6 ^ r7 ^ rotr16(q7 ^ r7); in mix_columns()
H A Daes_ct64_enc.c68 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; in mix_columns() local
77 q6 = q[6]; in mix_columns()
85 r6 = (q6 >> 16) | (q6 << 48); in mix_columns()
94 q[6] = q5 ^ r5 ^ r6 ^ rotr32(q6 ^ r6); in mix_columns()
95 q[7] = q6 ^ r6 ^ r7 ^ rotr32(q7 ^ r7); in mix_columns()
/freebsd/sys/contrib/openzfs/module/icp/algs/edonr/
H A Dedonr.c121 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; in Q512() local
159 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7); in Q512()
167 LS2_512(q0, q1, q2, q3, q4, q5, q6, q7); in Q512()
168 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7); in Q512()
175 LS1_512(q0, q1, q2, q3, q4, q5, q6, q7); in Q512()
177 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7); in Q512()
185 LS2_512(q0, q1, q2, q3, q4, q5, q6, q7); in Q512()
186 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7); in Q512()
203 p[14] ^= d(6) ^ q6; in Q512()
/freebsd/sys/contrib/device-tree/Bindings/remoteproc/
H A Dqcom,qcs404-cdsp-pil.yaml51 - description: Q6 AXIM clock
84 offset within syscon for q6 halt register.
88 - description: offset to the Q6 halt register
H A Dqcom,sdm845-adsp-pil.yaml84 offset within syscon for q6 halt register.
88 - description: offset to the Q6 halt register
H A Dqcom,sc7280-adsp-pil.yaml80 four offsets within syscon for q6, modem, nc and qv6 halt registers.
84 - description: offset to the Q6 halt register
/freebsd/share/msgdef/
H A Dzh_CN.GB2312.src10 ^((7q6()|(7q)|([nN]([oO])?)|([nN]))
16 7q6(:7q:no:n:NO:N
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dqcs8550.dtsi92 q6_mpss_dtb_mem: q6-mpss-dtb-region@9b000000 {
142 q6_cdsp_dtb_mem: q6-cdsp-dtb-region@9e900000 {
147 q6_adsp_dtb_mem: q6-adsp-dtb-region@9e980000 {
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfos_arm.h619 FPU_REG(s24, 4, 24, q6),
620 FPU_REG(s25, 4, 25, q6),
621 FPU_REG(s26, 4, 26, q6),
622 FPU_REG(s27, 4, 27, q6),
654 FPU_REG(d12, 8, 24, q6),
655 FPU_REG(d13, 8, 26, q6),
681 FPU_QREG(q6, 24),
/freebsd/tools/test/xregs_sig/
H A Dc2x2c_aarch64.S23 stp q6, q7, [x0, #( 6 * 16)]
47 ldp q6, q7, [x0, #( 6 * 16)]
/freebsd/tests/sys/netinet6/frag6/
H A Dfrag6_15.py63 # The 4th packet will flush the entire q6.
84 # The 4th packet will flush the entire q6.
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Derfc.c19 double q6, r6; member
41 .q6 = 0x1.2aaaaaaaaaaabp0,
122 svfloat64_t qr6 = svld1rq (svptrue_b64 (), &dat->q6); in SV_NAME_D1()
/freebsd/sys/crypto/openssl/aarch64/
H A Dbsaes-armv8.S1021 ldr q6, [sp]
1024 str q6, [sp]
1042 ldr q6, [x0], #16
1095 ldr q6, [x0], #-6*16
1114 str q6, [x1], #16
1330 ldr q6, [x0], #16
1332 ldr q6, [x0], #16
1362 str q6, [x1], #16
1512 ldr q6, .Lxts_magic+16
1591 str q6, [x21], #16
[all …]
/freebsd/crypto/openssl/crypto/aes/asm/
H A Dbsaes-armv8.pl1054 ldr q6, [sp]
1057 str q6, [sp]
1075 ldr q6, [x0], #16
1128 ldr q6, [x0], #-6*16
1147 str q6, [x1], #16
1363 ldr q6, [x0], #16
1365 ldr q6, [x0], #16
1395 str q6, [x1], #16
1545 ldr q6, .Lxts_magic+16
1624 str q6, [x21], #16
[all …]

12345