HomeSort by: relevance | last modified time | path
    Searched refs:h6 (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
fe_frombytes_sandy2x.c 39 uint64_t h6 = load_3(s + 20) << 7; local
57 carry5 = h5 >> 25; h6 += carry5; h5 &= 0x1FFFFFF;
63 carry6 = h6 >> 26; h7 += carry6; h6 &= 0x3FFFFFF;
72 h[6] = h6;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/
fe.h 14 int64_t h6 = load_3(s + 20) << 7; local
40 h6 += carry5;
55 carry6 = (h6 + (int64_t)(1L << 25)) >> 26;
57 h6 -= carry6 * ((uint64_t) 1L << 26);
68 h[6] = (int32_t) h6;
108 int32_t h6 = f[6]; local
123 q = (h6 + q) >> 26;
148 h6 += carry5;
150 carry6 = h6 >> 26;
152 h6 -= carry6 * ((uint32_t) 1L << 26)
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/allwinner/
Makefile 34 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-beelink-gs1.dtb
35 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-orangepi-3.dtb
36 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-orangepi-lite2.dtb
37 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-orangepi-one-plus.dtb
38 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-pine-h64.dtb
39 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-pine-h64-model-b.dtb
40 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-tanix-tx6.dtb
41 dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-tanix-tx6-mini.dtb
  /src/external/gpl2/dtc/dist/tests/
references.c 69 uint32_t h1, h2, h4, h5, h6, hn; local
97 h6 = fdt_get_phandle(fdt, n6);
105 if (h6 != FDT_MAX_PHANDLE)
107 h6, FDT_MAX_PHANDLE);
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_25_5.h 49 int32_t h6 = f[6] + g[6]; local
60 h[6] = h6;
87 int32_t h6 = f[6] - g[6]; local
98 h[6] = h6;
123 int32_t h6 = -f[6]; local
134 h[6] = h6;
520 int64_t h6 = f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + local
542 i.e. |h0| <= 1.4*2^60; narrower ranges for h2, h4, h6, h8
562 h6 += carry5;
567 /* |h6| <= 1.41*2^60 *
727 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
899 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
1001 int64_t h6 = f6 * sn; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/docs/_themes/llvm-theme/static/
llvm-theme.css 181 div.body h1 a, div.body h2 a, div.body h3 a, div.body h4 a, div.body h5 a, div.body h6 a {
190 div.body h6 {
204 div.body h6 { font-size: 100%; }
206 h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor {
214 h5:hover a.anchor, h6:hover a.anchor {
219 h5 a.anchor:hover, h6 a.anchor:hover {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Hashing.h 264 uint64_t h0 = 0, h1 = 0, h2 = 0, h3 = 0, h4 = 0, h5 = 0, h6 = 0; member in struct:llvm::hashing::detail::hash_state
273 state.h6 = hash_16_bytes(state.h4, state.h5);
296 h0 ^= h6;
302 h5 = h2 + h6;
303 h6 = h1 + fetch64(s + 16);
304 mix_32_bytes(s + 32, h5, h6);
312 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0);
  /src/external/apache2/llvm/dist/llvm/docs/_ocamldoc/
style.css 4 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
58 h6 { font-weight: bold; font-size: 1.125em; margin-top: 1.222em }
  /src/crypto/external/apache2/openssl/dist/crypto/ec/
curve25519.c 840 int64_t h6 = load_3(s + 20) << 7; local
865 h6 += carry5 >> 25;
880 carry6 = h6 + (1 << 25);
882 h6 -= carry6 & kTop38Bits;
893 h[6] = (int32_t)h6;
931 int32_t h6 = h[6]; local
944 q = (h6 + q) >> 26;
963 h6 += h5 >> 25;
965 h7 += h6 >> 26;
966 h6 &= kBottom26Bits
1247 int64_t h6 = f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + f7g9_38 + f8g8_19 + f9g7_38; local
1445 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
1778 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
4465 int64_t h6 = f6 * (int64_t)121666; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
curve25519.c 809 int64_t h6 = load_3(s + 20) << 7; local
827 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits;
833 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits;
842 h[6] = (int32_t)h6;
880 int32_t h6 = h[6]; local
893 q = (h6 + q) >> 26;
907 h6 += h5 >> 25; h5 &= kBottom25Bits;
908 h7 += h6 >> 26; h6 &= kBottom26Bits
1187 int64_t h6 = f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + f7g9_38 + f8g8_19 + f9g7_38; local
1361 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
1670 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
4338 int64_t h6 = f6 * (int64_t) 121666; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/ec/
curve25519.c 799 int64_t h6 = load_3(s + 20) << 7; local
817 carry5 = h5 + (1 << 24); h6 += carry5 >> 25; h5 -= carry5 & kTop39Bits;
823 carry6 = h6 + (1 << 25); h7 += carry6 >> 26; h6 -= carry6 & kTop38Bits;
832 h[6] = (int32_t)h6;
870 int32_t h6 = h[6]; local
883 q = (h6 + q) >> 26;
897 h6 += h5 >> 25; h5 &= kBottom25Bits;
898 h7 += h6 >> 26; h6 &= kBottom26Bits
1177 int64_t h6 = f0g6 + f1g5_2 + f2g4 + f3g3_2 + f4g2 + f5g1_2 + f6g0 + f7g9_38 + f8g8_19 + f9g7_38; local
1351 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
1660 int64_t h6 = f0f6_2 + f1f5_4 + f2f4_2 + f3f3_2 + f7f9_76 + f8f8_19; local
4328 int64_t h6 = f6 * (int64_t) 121666; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/modes/asm/
aes-gcm-armv8-unroll8_64.pl 205 my ($h5,$h56k,$h6,$h7,$h78k,$h8)=map("v$_",(20..25));
485 ext $h6.16b, $h6.16b, $h6.16b, #8
519 pmull2 $t1.1q, $res2.2d, $h6.2d @ GHASH block 8k+2 - high
543 pmull $h6.1q, $res2.1d, $h6.1d @ GHASH block 8k+2 - low
566 eor3 $acc_lb, $acc_lb, $h6.16b, $h5.16b @ GHASH block 8k+2, 8k+3 - low
773 ext $h6.16b, $h6.16b, $h6.16b, #
    [all...]
  /src/external/mit/expat/dist/doc/
ok.min.css 2 /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}:root{--ok-sans:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue","Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--ok-mono:SFMono-Regular,Menlo,Monaco,Consolas,"Ubuntu Mono","Liberation Mono","Courier New",Courier,monospace;--ok-fw-0:400;--ok-fw-1:600;--ok-fw-2:700;--ok-fw-3:700;--ok-fs-0:2.5rem;--ok-fs-1:2rem;--ok-fs-2:1.5rem;--ok-fs-3:1.25rem;--ok-fs-4:1rem;--ok-fs-5:0.75rem;--ok-br:0.25rem;--ok-s-0:0;--ok-s-1:0.25rem;--ok-s-2:0.5rem;--ok-s-3:1rem;--ok-s-4:1.5rem;--ok-s-5:2rem;--ok-s-6:2.5rem;--ok-lh-body:1.5;--ok-lh-heading:1.25;--ok-t-hl:#ffcf30;--ok-accent-0:#3e67fa;--ok-accent-1:#4788ff;--ok-tc-accent:#3173de;--ok-tc-code:#c23a30;--ok-tc-0:#000;--ok-tc-1:#747474;--ok-tc-2:#848484;--ok-bg-0:#fff;--ok-bg-1:#f0f0f0;--ok-bg-2:#ccc;--ok-b-0:1px solid #cbcbcb;--ok-b-1:1px solid #848484;--ok-down-0:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='8' viewBox='0 0 12 8' width='24' fill='none'%3E%3Cpath d='M6 6l4-4h1v1-1L6 7 1 2h1l4 4z' fill='%23747474'/%3E%3C/svg%3E");--ok-down-1:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='8' viewBox='0 0 12 8' width='24' fill='none'%3E%3Cpath d='M6 6l4-4h1v1-1L6 7 1 2h1l4 4z' fill='%23848484'/%3E%3C/svg%3E")}@media (prefers-color-scheme:dark){:root{--ok-tc-accent:#5c9aff;--ok-tc-code:#ed5853;--ok-tc-0:#fff;--ok-tc-1:#ababab;--ok-tc-2:#929292;--ok-bg-0:#000;--ok-bg-1:#212121;--ok-bg-2:#3e3e3e;--ok-b-0:1px solid #747474;--ok-b-1:1px solid #929292;--ok-down-0:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='8' viewBox='0 0 12 8' width='24' fill='none'%3E%3Cpath d='M6 6l4-4h1v1-1L6 7 1 2h1l4 4z' fill='%23ababab'/%3E%3C/svg%3E");--ok-down-1:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='8' viewBox='0 0 12 8' width='24' fill='none'%3E%3Cpath d='M6 6l4-4h1v1-1L6 7 1 2h1l4 4z' fill='%23929292'/%3E%3C/svg%3E")}}*,:after,:before{box-sizing:border-box}*{margin:0;padding:0}html{font-family:var(--ok-sans);line-sizing:normal;line-height:var(--ok-lh-body);font-weight:var(--ok-fw-0);color:var(--ok-tc-0);background-color:var(--ok-bg-0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;text-rendering:optimizeLegibility;scroll-behavior:smooth}@supports (font-variation-settings:normal){html{font-family:Inter var,var(--ok-sans)}}button,input,optgroup,select,textarea{font-family:inherit;line-height:var(--ok-lh-body)}[role=button],button{cursor:pointer}audio,canvas,embed,iframe,img,input,object,select,svg,textarea,video{display:block}img,video{max-width:100%;height:auto}body{padding:var(--ok-s-3);max-width:80ch;margin:auto}article{padding-bottom:var(--ok-s-6)}h1{font-size:var(--ok-fs-0);margin:0}h2{font-size:var(--ok-fs-1)}h3{font-size:var(--ok-fs-2)}h4{font-size:var(--ok-fs-3)}h5{font-size:var(--ok-fs-4)}h6{font-size:var(--ok-fs-5);text-transform:uppercase;font-weight:var(--ok-fw-1)}h1,h2,h3,h4,h5,h6{line-height:var(--ok-lh-heading);font-weight:var(--ok-fw-3);margin-top:var(--ok-s-6);margin-bottom:var(--ok-s-3)}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*,hr+*{margin-top:0}p{font-size:var(--ok-fs-4)}small{font-size:var(--ok-fs-5)}b,dt,strong{font-weight:var(--ok-fw-2)}address,article,aside,audio,blockquote,button,canvas,dd,details,dialog,div,dl,embed,fieldset,figcaption,figure,footer,form,header,hgroup,hr,iframe,img,input,main,nav,object,ol,p,pre,section,select,summary,svg,table,textarea,ul,video{margin-bottom:var(--ok-s-4)}address:last-child,article:last-child,aside:last-child,blockquote:last-child,dd:last-child,details:last-child,dialog:last-child,div:last-child,dl:last-child,dt:last-child,fieldset:last-child,figcaption:last-child,figure:last-child,footer:last-child,form:last-child,h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,h6:last-child,header:last-child,hgroup:last-child,hr:last-child,input[type=checkbox],input[type=radio (…)
  /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.hash/
test_hash.d 442 enum h6 = lexpr.hashOf();
548 assert(h6 == rth6);
  /src/external/mit/libcbor/dist/docs/doxygen/
customdoxygen.css 43 h1, h2, h3, h4, h5, h6 {
64 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1310 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
doxygen.css 35 h1, h2, h3, h4, h5, h6 {
44 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1496 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/
doxygen.css 39 h1, h2, h3, h4, h5, h6 {
48 h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
1712 h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
  /src/sys/dist/pf/net/
pf.c 1662 struct ip6_hdr *h6 = NULL; local
1756 h6 = mtod(m, struct ip6_hdr *);
1759 h6->ip6_nxt = IPPROTO_TCP;
1760 h6->ip6_plen = htons(tlen);
1761 memcpy(&h6->ip6_src, &saddr->v6, sizeof(struct in6_addr));
1762 memcpy(&h6->ip6_dst, &daddr->v6, sizeof(struct in6_addr));
1764 th = (struct tcphdr *)((char *)h6 + sizeof(struct ip6_hdr));
1841 h6->ip6_vfc |= IPV6_VERSION;
1842 h6->ip6_hlim = IPV6_DEFHLIM;

Completed in 74 milliseconds

1 2