Home
last modified time | relevance | path

Searched refs:h6 (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-h6.dtsi5 #include <dt-bindings/clock/sun50i-h6-ccu.h>
6 #include <dt-bindings/clock/sun50i-h6-r-ccu.h>
10 #include <dt-bindings/reset/sun50i-h6-ccu.h>
11 #include <dt-bindings/reset/sun50i-h6-r-ccu.h>
103 compatible = "allwinner,sun50i-h6-display-engine";
149 compatible = "allwinner,sun50i-h6-de3",
158 compatible = "allwinner,sun50i-h6-de3-clk";
170 compatible = "allwinner,sun50i-h6-de3-mixer-0";
195 compatible = "allwinner,sun50i-h6-vpu-g2";
205 compatible = "allwinner,sun50i-h6-video-engine";
[all …]
H A Dsun50i-h6-tanix-tx6-mini.dts6 #include "sun50i-h6-tanix.dtsi"
10 compatible = "oranth,tanix-tx6-mini", "allwinner,sun50i-h6";
H A Dsun50i-h6-tanix-tx6.dts6 #include "sun50i-h6-tanix.dtsi"
10 compatible = "oranth,tanix-tx6", "allwinner,sun50i-h6";
H A Dsun50i-h6-beelink-gs1.dts6 #include "sun50i-h6.dtsi"
7 #include "sun50i-h6-cpu-opp.dtsi"
8 #include "sun50i-h6-gpu-opp.dtsi"
14 compatible = "azw,beelink-gs1", "allwinner,sun50i-h6";
65 simple-audio-card,name = "sun50i-h6-spdif";
H A Dsun50i-h6-orangepi-one-plus.dts5 #include "sun50i-h6-orangepi.dtsi"
9 compatible = "xunlong,orangepi-one-plus", "allwinner,sun50i-h6";
H A Dsun50i-h6-pine-h64-model-b.dts6 #include "sun50i-h6-pine-h64.dts"
12 compatible = "pine64,pine-h64-model-b", "allwinner,sun50i-h6";
H A Dsun50i-h6-tanix.dtsi6 #include "sun50i-h6.dtsi"
7 #include "sun50i-h6-cpu-opp.dtsi"
63 simple-audio-card,name = "sun50i-h6-spdif";
H A Dsun50i-h6-orangepi-lite2.dts4 #include "sun50i-h6-orangepi.dtsi"
8 compatible = "xunlong,orangepi-lite2", "allwinner,sun50i-h6";
H A Dsun50i-h6-pine-h64.dts6 #include "sun50i-h6.dtsi"
7 #include "sun50i-h6-cpu-opp.dtsi"
13 compatible = "pine64,pine-h64", "allwinner,sun50i-h6";
H A Dsun50i-h6-orangepi-3.dts6 #include "sun50i-h6.dtsi"
7 #include "sun50i-h6-cpu-opp.dtsi"
13 compatible = "xunlong,orangepi-3", "allwinner,sun50i-h6";
H A Dsun50i-h6-orangepi.dtsi7 #include "sun50i-h6.dtsi"
13 compatible = "xunlong,orangepi-one-plus", "allwinner,sun50i-h6";
H A Dsun50i-h6-cpu-opp.dtsi7 compatible = "allwinner,sun50i-h6-operating-points";
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/
H A Dfe.h14 int64_t h6 = load_3(s + 20) << 7; in fe25519_frombytes() local
40 h6 += carry5; in fe25519_frombytes()
55 carry6 = (h6 + (int64_t)(1L << 25)) >> 26; in fe25519_frombytes()
57 h6 -= carry6 * ((uint64_t) 1L << 26); in fe25519_frombytes()
68 h[6] = (int32_t) h6; in fe25519_frombytes()
108 int32_t h6 = f[6]; in fe25519_reduce() local
123 q = (h6 + q) >> 26; in fe25519_reduce()
148 h6 += carry5; in fe25519_reduce()
150 carry6 = h6 >> 26; in fe25519_reduce()
152 h6 -= carry6 * ((uint32_t) 1L << 26); in fe25519_reduce()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
H A Dfe_frombytes_sandy2x.c39 uint64_t h6 = load_3(s + 20) << 7; in fe_frombytes() local
57 carry5 = h5 >> 25; h6 += carry5; h5 &= 0x1FFFFFF; in fe_frombytes()
63 carry6 = h6 >> 26; h7 += carry6; h6 &= 0x3FFFFFF; in fe_frombytes()
72 h[6] = h6; in fe_frombytes()
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Ded25519_ref10_fe_25_5.h49 int32_t h6 = f[6] + g[6]; in fe25519_add() local
60 h[6] = h6; in fe25519_add()
87 int32_t h6 = f[6] - g[6]; in fe25519_sub() local
98 h[6] = h6; in fe25519_sub()
123 int32_t h6 = -f[6]; in fe25519_neg() local
134 h[6] = h6; in fe25519_neg()
520 int64_t h6 = f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + in fe25519_mul() local
562 h6 += carry5; in fe25519_mul()
572 carry6 = (h6 + (int64_t)(1L << 25)) >> 26; in fe25519_mul()
574 h6 -= carry6 * ((uint64_t) 1L << 26); in fe25519_mul()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h253 uint64_t h0 = 0, h1 = 0, h2 = 0, h3 = 0, h4 = 0, h5 = 0, h6 = 0; member
266 state.h6 = hash_16_bytes(state.h4, state.h5); in create()
289 h0 ^= h6; in mix()
295 h5 = h2 + h6; in mix()
296 h6 = h1 + fetch64(s + 16); in mix()
297 mix_32_bytes(s + 32, h5, h6); in mix()
305 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize()
/freebsd/crypto/openssl/crypto/ec/
H A Dcurve25519.c809 int64_t h6 = load_3(s + 20) << 7; in fe_frombytes() local
827 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits; in fe_frombytes()
833 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits; in fe_frombytes()
842 h[6] = (int32_t)h6; in fe_frombytes()
880 int32_t h6 = h[6]; in fe_tobytes() local
893 q = (h6 + q) >> 26; in fe_tobytes()
907 h6 += h5 >> 25; h5 &= kBottom25Bits; in fe_tobytes()
908 h7 += h6 >> 26; h6 &= kBottom26Bits; in fe_tobytes()
939 s[19] = (uint8_t)((h5 >> 24) | ((uint32_t)(h6) << 1)); in fe_tobytes()
940 s[20] = (uint8_t) (h6 >> 7); in fe_tobytes()
[all …]
/freebsd/contrib/llvm-project/lld/docs/llvm-theme/static/
H A Dllvm.css178 div.body h1 a, div.body h2 a, div.body h3 a, div.body h4 a, div.body h5 a, div.body h6 a {
182 h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor {
190 h5:hover a.anchor, h6:hover a.anchor {
195 h5 a.anchor:hover, h6 a.anchor:hover {
/freebsd/sys/modules/dtb/allwinner/
H A DMakefile56 allwinner/sun50i-h6-pine-h64.dts \
57 allwinner/sun50i-h6-pine-h64-model-b.dts
/freebsd/crypto/openssl/test/certs/
H A Dee-cert-4096.pem16 h6+wtpPcwlG/dUr1BUrSi2b6dRYwHwYDVR0jBBgwFoAUtBEz8dfiXvdTniAiEE+G
/freebsd/sys/netpfil/ipfw/
H A Dip_fw2.c634 struct ip6_hdr *h6 = NULL; in ipfw_send_pkt() local
694 h6 = mtod(m, struct ip6_hdr *); in ipfw_send_pkt()
697 h6->ip6_nxt = IPPROTO_TCP; in ipfw_send_pkt()
698 h6->ip6_plen = htons(sizeof(struct tcphdr)); in ipfw_send_pkt()
700 h6->ip6_src = id->src_ip6; in ipfw_send_pkt()
701 h6->ip6_dst = id->dst_ip6; in ipfw_send_pkt()
703 h6->ip6_src = id->dst_ip6; in ipfw_send_pkt()
704 h6->ip6_dst = id->src_ip6; in ipfw_send_pkt()
707 th = (struct tcphdr *)(h6 + 1); in ipfw_send_pkt()
755 th->th_sum = in6_cksum(m, IPPROTO_TCP, sizeof(*h6), in ipfw_send_pkt()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentHTMLTags.td27 def H6 : Tag<"h6">;
/freebsd/contrib/expat/doc/
H A Dok.min.css2h6{font-size:var(--ok-fs-5);text-transform:uppercase;font-weight:var(--ok-fw-1)}h1,h2,h3,h4,h5,h6{… selector
/freebsd/contrib/libxo/doc/_static/
H A Dbasic.css_t218 h6:hover > a.headerlink,
599 h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
/freebsd/sys/netpfil/pf/
H A Dpf_norm.c2202 struct ip6_hdr *h6 = mtod(pd->m, struct ip6_hdr *); in pf_scrub() local
2226 h6->ip6_hlim < pd->act.min_ttl) in pf_scrub()
2227 h6->ip6_hlim = pd->act.min_ttl; in pf_scrub()
2244 h6->ip6_flow &= IPV6_FLOWLABEL_MASK | IPV6_VERSION_MASK; in pf_scrub()
2245 h6->ip6_flow |= htonl((pd->act.set_tos | IPV6_ECN(h6)) << 20); in pf_scrub()

12