Home
last modified time | relevance | path

Searched refs:s6 (Results 1 – 25 of 145) sorted by relevance

123456

/freebsd/crypto/openssl/crypto/ec/asm/
H A Decp_sm2p256-armv8.pl23 my ($s0,$s1,$s2,$s3,$s4,$s5,$s6,$s7)=map("x$_",(7..14));
35 ldp $s6,$s7,[x2,#16]
40 adcs $s2,$s2,$s6
48 ldp $s6,$s7,[x2,#16]
59 sbcs $t2,$t2,$s6
82 ldp $s6,$s7,[x2,#16]
87 sbcs $s2,$s2,$s6
95 ldp $s6,$s7,[x2,#16]
106 adcs $t2,$t2,$s6
142 ldp $s6,$s7,[x2,#16]
[all …]
/freebsd/tests/sys/netinet/
H A Dtcp_md5_getsockopt.c49 struct sockaddr_in6 s6 = { 0 }; in test_tcp_md5_getsockopt() local
57 len = sizeof(s6); in test_tcp_md5_getsockopt()
59 s6.sin6_family = pf; in test_tcp_md5_getsockopt()
60 s6.sin6_len = sizeof(s6); in test_tcp_md5_getsockopt()
61 s6.sin6_addr = in6addr_loopback; in test_tcp_md5_getsockopt()
62 s6.sin6_port = 0; in test_tcp_md5_getsockopt()
64 s = (struct sockaddr_in *)&s6; in test_tcp_md5_getsockopt()
/freebsd/usr.sbin/mtest/
H A Dmtest.c221 int i, s, s6; in main() local
224 s6 = -1; in main()
231 s6 = socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP); in main()
232 if (s6 == -1 && errno != EAFNOSUPPORT) in main()
235 if (s == -1 && s6 == -1) in main()
246 process_cmd(line, s, s6, stdin); in main()
253 process_file(&line[i], s, s6); in main()
259 process_file(argv[i], s, s6); in main()
265 if (s6 != -1) in main()
266 close(s6); in main()
[all …]
/freebsd/sbin/ifconfig/
H A Daf_nd6.c143 int s6; in nd6_status() local
149 if ((s6 = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) { in nd6_status()
154 error = ioctl(s6, SIOCGIFINFO_IN6, &nd); in nd6_status()
158 close(s6); in nd6_status()
161 isdefif = isnd6defif(ctx, s6); in nd6_status()
162 close(s6); in nd6_status()
H A Daf_inet6.c293 int s6; in in6_status() local
302 if ((s6 = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) { in in6_status()
307 if (ioctl(s6, SIOCGIFAFLAG_IN6, &ifr6) < 0) { in in6_status()
309 close(s6); in in6_status()
315 if (ioctl(s6, SIOCGIFALIFETIME_IN6, &ifr6) < 0) { in in6_status()
317 close(s6); in in6_status()
321 close(s6); in in6_status()
/freebsd/contrib/blocklist/test/
H A Dcltest.c73 struct sockaddr_in6 *s6 = (void *)ss; in getaddr() local
74 c = inet_pton(AF_INET6, a, &s6->sin6_addr); in getaddr()
75 s6->sin6_family = AF_INET6; in getaddr()
76 *slen = sizeof(*s6); in getaddr()
77 s6->sin6_port = p; in getaddr()
H A Dsrvtest.c121 struct sockaddr_in6 *s6 = (void *)&ss; in cr() local
122 s6->sin6_family = AF_INET6; in cr()
123 slen = sizeof(*s6); in cr()
124 s6->sin6_port = p; in cr()
/freebsd/usr.sbin/rrenumd/
H A Drrenumd.c93 int s4, s6; variable
282 (s6 = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6)) < 0) { in sock6_open()
299 if (setsockopt(s6, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, in sock6_open()
308 if (setsockopt(s6, IPPROTO_IPV6, IPV6_RECVPKTINFO, &on, in sock6_open()
323 if (setsockopt(s6, IPPROTO_IPV6, IPV6_IPSEC_POLICY, in sock6_open()
331 if (setsockopt(s6, IPPROTO_IPV6, IPV6_AUTH_TRANS_LEVEL, in sock6_open()
340 if (setsockopt(s6, IPPROTO_IPV6, IPV6_ESP_TRANS_LEVEL, in sock6_open()
455 i = sendmsg(dl->dl_dst->sa_family == AF_INET ? s4 : s6, &sndmhdr, 0); in rrenum_output()
617 FD_SET(s6, &fdset); in main()
618 if (s6 > maxfd) in main()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/
H A Ded25519_ref10.c1118 int64_t s6; in sc25519_muladd() local
1167 s6 = c6 + a0 * b6 + a1 * b5 + a2 * b4 + a3 * b3 + a4 * b2 + a5 * b1 + in sc25519_muladd()
1206 carry6 = (s6 + (int64_t) (1L << 20)) >> 21; in sc25519_muladd()
1208 s6 -= carry6 * ((uint64_t) 1L << 21); in sc25519_muladd()
1241 s6 += carry5; in sc25519_muladd()
1303 s6 += s18 * 666643; in sc25519_muladd()
1310 carry6 = (s6 + (int64_t) (1L << 20)) >> 21; in sc25519_muladd()
1312 s6 -= carry6 * ((uint64_t) 1L << 21); in sc25519_muladd()
1346 s6 += s17 * 470296; in sc25519_muladd()
1354 s6 += s16 * 654183; in sc25519_muladd()
[all …]
/freebsd/contrib/netbsd-tests/net/mcast/
H A Dmcast.c96 struct sockaddr_in6 *s6; in addmc() local
108 s6 = (void *)ai->ai_addr; in addmc()
119 if (bug && IN6_IS_ADDR_V4MAPPED(&s6->sin6_addr)) { in addmc()
120 memcpy(&m4.imr_multiaddr, &s6->sin6_addr.s6_addr[12], in addmc()
126 assert(sizeof(*s6) == ai->ai_addrlen); in addmc()
145 m6.ipv6mr_multiaddr = s6->sin6_addr; in addmc()
157 struct sockaddr_in6 *s6; in allowv4mapped() local
163 s6 = (void *)ai->ai_addr; in allowv4mapped()
165 if (!IN6_IS_ADDR_V4MAPPED(&s6->sin6_addr)) in allowv4mapped()
/freebsd/crypto/krb5/src/plugins/preauth/spake/
H A Dedwards25519.c1058 int64_t s6 = 2097151 & (load_4(s + 15) >> 6); in x25519_sc_reduce() local
1134 s6 += s18 * 666643; in x25519_sc_reduce()
1142 carry6 = (s6 + (1 << 20)) >> 21; in x25519_sc_reduce()
1144 s6 -= int64_lshift21(carry6); in x25519_sc_reduce()
1178 s6 += s17 * 470296; in x25519_sc_reduce()
1187 s6 += s16 * 654183; in x25519_sc_reduce()
1196 s6 -= s15 * 997805; in x25519_sc_reduce()
1205 s6 += s14 * 136657; in x25519_sc_reduce()
1214 s6 -= s13 * 683901; in x25519_sc_reduce()
1234 carry6 = (s6 + (1 << 20)) >> 21; in x25519_sc_reduce()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td346 // OpenCL v1.0/1.2/2.0 s6.1.1: Built-in Scalar Data Types.
382 // OpenCL v1.0/1.2/2.0 s6.1.2: Built-in Vector Data Types.
385 // OpenCL v1.0/1.2/2.0 s6.1.3: Other Built-in Data Types.
410 // OpenCL v2.0 s6.13.11: Atomic integer and floating-point types.
510 // OpenCL v1.1/1.2/2.0 s6.2.3 - Explicit conversions.
511 // OpenCL v2.0 Extensions s5.1.1 and s6.1.1 - Conversions.
537 // OpenCL v1.1 s6.11.1, v1.2 s6.12.1, v2.0 s6.13.1 - Work-item Functions
555 // OpenCL v1.1 s6.11.2, v1.2 s6.12.2, v2.0 s6.13.2 - Math functions
556 // OpenCL Extension v2.0 s5.1.2 and s6.1.2 - Math Functions
664 // OpenCL v1.1 s6.11.3, v1.2 s6.12.3, v2.0 s6.13.3 - Integer Functions
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/amlogic/
H A Damlogic-s6-s905x5-bl209.dts8 #include "amlogic-s6.dtsi"
11 compatible = "amlogic,bl209", "amlogic,s6";
/freebsd/crypto/openssl/crypto/ec/
H A Dcurve25519.c4782 int64_t s6 = kBottom21Bits & (load_4(s + 15) >> 6); in x25519_sc_reduce() local
4858 s6 += s18 * 666643; in x25519_sc_reduce()
4866 carry6 = (s6 + (1 << 20)) >> 21; in x25519_sc_reduce()
4868 s6 -= carry6 * (1 << 21); in x25519_sc_reduce()
4902 s6 += s17 * 470296; in x25519_sc_reduce()
4911 s6 += s16 * 654183; in x25519_sc_reduce()
4920 s6 -= s15 * 997805; in x25519_sc_reduce()
4929 s6 += s14 * 136657; in x25519_sc_reduce()
4938 s6 -= s13 * 683901; in x25519_sc_reduce()
4958 carry6 = (s6 + (1 << 20)) >> 21; in x25519_sc_reduce()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/setjmp/
H A Dsetjmp_rv64g.S53 sd s6, (6 * 8)(a0)
80 ld s6, (6 * 8)(a0)
H A Dsetjmp_mips.S65 REG_S s6, 9*SZREG(a0)
96 REG_L s6, 9*SZREG(a0)
H A Dsetjmp_loongarch64.S51 st.d $s6, $a0, 10*8
70 ld.d $s6, $a0, 10*8
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc126 const char* s4, const char* s5, const char* s6, in Concat7() argument
128 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7; in Concat7()
132 const char* s4, const char* s5, const char* s6, in Concat8() argument
134 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8; in Concat8()
138 const char* s4, const char* s5, const char* s6, in Concat9() argument
140 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9; in Concat9()
144 const char* s4, const char* s5, const char* s6, in Concat10() argument
147 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10; in Concat10()
175 const char* s4, const char* s5, const char* s6, in Concat7() argument
177 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7; in Concat7()
[all …]
/freebsd/sys/riscv/vmm/
H A Dvmm_switch.S52 sd s6, (HYP_H_S + 6 * 8)(a0)
103 ld s6, (HYP_G_S + 6 * 8)(a0)
143 sd s6, (HYP_G_S + 6 * 8)(a0)
187 ld s6, (HYP_H_S + 6 * 8)(a0)
/freebsd/lib/libc/riscv/gen/
H A D_setjmp.S52 sd s6, (6 * 8)(a0)
104 ld s6, (6 * 8)(a0)
H A Dsetjmp.S66 sd s6, (6 * 8)(a0)
134 ld s6, (6 * 8)(a0)
/freebsd/sys/contrib/openzfs/module/icp/algs/edonr/
H A Dedonr.c80 s6 = rotl64(z2 + z4 + x0, 50); z6 = z3 + z4; \
107 r3 = (z3 ^ s4) + (t0 ^ z7); z4 = s5 ^ s6; \
111 r2 = (z2 ^ s6) + (z5 ^ t3); \
123 uint64_t s0, s1, s2, s3, s4, s5, s6, s7; in Q512() local
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dmips-mont.pl37 ($s0,$s1,$s2,$s3,$s4,$s5,$s6,$s7,$s8,$s9,$s10,$s11)=map("\$$_",(12..23));
117 $nlo=$s6;
166 $REG_S $s6,($FRAMESIZE-7)*$SZREG($sp)
415 $REG_L $s6,($FRAMESIZE-7)*$SZREG($sp)
/freebsd/sys/riscv/riscv/
H A Dswtch.S241 ld s6, (PCB_S + 6 * 8)(x13)
290 sd s6, (PCB_S + 6 * 8)(x13)
392 ld s6, (PCB_S + 6 * 8)(x13)
449 ld s6, (TF_S + 6 * 8)(sp)
500 sd s6, (PCB_S + 6 * 8)(a0)
/freebsd/sys/netpfil/ipfw/
H A Dip_fw_dynamic.c2074 struct dyn_ipv6_state *s6, *s6n; in dyn_free_states() local
2150 DYN_FREE_STATES(s6, s6n, ipv6); in dyn_free_states()
2298 struct dyn_ipv6_state *s6, *s6n, *s6p; in dyn_expire_states() local
2377 DYN_UNLINK_STATES(s6, s6p, s6n, data->expire, ipv6, ipv6, 1); in dyn_expire_states()
2378 DYN_UNLINK_STATES(s6, s6p, s6n, limit->expire, ipv6, in dyn_expire_states()
2379 ipv6_parent, (s6->limit->count == 0)); in dyn_expire_states()
2630 struct dyn_ipv6_state *s6; in dyn_grow_hashtable() local
2730 DYN_RELINK_STATES(s6, data->hashval, bucket, ipv6, ipv6); in dyn_grow_hashtable()
2731 DYN_RELINK_STATES(s6, limit->hashval, bucket, ipv6_parent, in dyn_grow_hashtable()
2865 struct dyn_ipv6_state *s6; in ipfw_dyn_reset_eaction() local
[all …]

123456