| /openbsd/src/sys/crypto/ |
| D | poly1305.c | 71 unsigned long h0, h1, h2, h3, h4; in poly1305_blocks() local 89 h3 = st->h[3]; in poly1305_blocks() 97 h3 += (U8TO32(m + 9) >> 6) & 0x3ffffff; in poly1305_blocks() 104 ((unsigned long long)h3 * s2) + in poly1305_blocks() 109 ((unsigned long long)h3 * s3) + in poly1305_blocks() 114 ((unsigned long long)h3 * s4) + in poly1305_blocks() 119 ((unsigned long long)h3 * r0) + in poly1305_blocks() 124 ((unsigned long long)h3 * r1) + in poly1305_blocks() 138 h3 = (unsigned long)d3 & 0x3ffffff; in poly1305_blocks() 154 st->h[3] = h3; in poly1305_blocks() [all …]
|
| /openbsd/src/lib/libcrypto/poly1305/ |
| D | poly1305-donna.c | 89 unsigned long h0, h1, h2, h3, h4; in poly1305_blocks() local 107 h3 = st->h[3]; in poly1305_blocks() 115 h3 += (U8TO32(m + 9) >> 6) & 0x3ffffff; in poly1305_blocks() 122 ((unsigned long long)h3 * s2) + in poly1305_blocks() 127 ((unsigned long long)h3 * s3) + in poly1305_blocks() 132 ((unsigned long long)h3 * s4) + in poly1305_blocks() 137 ((unsigned long long)h3 * r0) + in poly1305_blocks() 142 ((unsigned long long)h3 * r1) + in poly1305_blocks() 156 h3 = (unsigned long)d3 & 0x3ffffff; in poly1305_blocks() 172 st->h[3] = h3; in poly1305_blocks() [all …]
|
| /openbsd/src/usr.bin/ssh/ |
| D | poly1305.c | 31 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local 64 h3 = 0; in poly1305_auth() 81 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_auth() 86 …t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x… in poly1305_auth() 87 …t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x… in poly1305_auth() 88 …t[2] = mul32x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x… in poly1305_auth() 89 …t[3] = mul32x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x… in poly1305_auth() 90 …t[4] = mul32x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x… in poly1305_auth() 95 t[3] += b; h3 = (uint32_t)t[3] & 0x3ffffff; b = (uint32_t)(t[3] >> 26); in poly1305_auth() 118 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_auth() [all …]
|
| D | umac.c | 415 UINT64 h1,h2,h3; in nh_aux() local 425 h3 = *((UINT64 *)hp + 2); in nh_aux() 438 h3 += MUL64((k8 + d0), (k12 + d4)); in nh_aux() 442 h3 += MUL64((k9 + d1), (k13 + d5)); in nh_aux() 446 h3 += MUL64((k10 + d2), (k14 + d6)); in nh_aux() 450 h3 += MUL64((k11 + d3), (k15 + d7)); in nh_aux() 460 ((UINT64 *)hp)[2] = h3; in nh_aux() 470 UINT64 h1,h2,h3,h4; in nh_aux() local 481 h3 = *((UINT64 *)hp + 2); in nh_aux() 496 h3 += MUL64((k8 + d0), (k12 + d4)); in nh_aux() [all …]
|
| /openbsd/src/regress/usr.bin/mandoc/man/SS/ |
| D | paragraph.out_html | 2 <h3 class="Ss" id="First_subsection"><a class="permalink" href="#First_subsection">First 3 subsection</a></h3> 8 <h3 class="Ss" id="Second_subsection"><a class="permalink" href="#Second_subsection">Second 9 subsection</a></h3>
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
| D | tr-warn6.c | 9 #define foo3(h3) sdf "h2" fds "h3" /* { dg-warning "macro argument \"h3\" would be stringified" "tr… argument 12 #define foo6(h3) sdf 'h2' fds 'h3' /* { dg-warning "macro argument \"h3\" would be stringified" "tr… argument 23 #define bar3(h3) sdf "h2" fds "h3" argument 26 #define bar6(h3) sdf 'h2' fds 'h3' argument
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/27_io/istream_extractor_arith/ |
| D | 07.cc | 60 unsigned int h4 = 0, h3 = 0, h2 = 0; in test07() local 77 is >> h3; in test07() 78 VERIFY( h3 == 1024365 ); in test07() 92 h3 = h4 = h2 = 0; in test07() 136 is >> h3; in test07() 137 VERIFY( h3 == 0 ); in test07()
|
| D | 08.cc | 60 unsigned int h4 = 0, h3 = 0, h2 = 0; in test08() local 74 is >> h3; in test08() 75 VERIFY( h3 == 20519 ); in test08()
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Sh/ |
| D | tag.out_html | 12 <h3 class="Ss" id="example"><a class="permalink" href="#example">Subsection</a></h3> 16 <h3 class="Ss" id="Sub-section"><a class="permalink" href="#Sub-section">Sub-section</a></h3>
|
| D | paragraph.out_html | 3 <h3 class="Ss" id="Subsection"><a class="permalink" href="#Subsection">Subsection</a></h3>
|
| /openbsd/src/gnu/llvm/llvm/docs/_themes/llvm-theme/static/ |
| D | llvm-theme.css | 102 div.sphinxsidebar h3, div.sphinxsidebar h4 { 111 div.sphinxsidebar h3 a { 172 h3 { selector 177 h3 a:hover { 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 { 187 div.body h3, 201 div.body h3 { font-size: 140%; } 206 h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor { 213 h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, 218 h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover,
|
| /openbsd/src/regress/usr.bin/mandoc/man/IP/ |
| D | literal.out_html | 21 <h3 class="Ss" id="literal_into_indented_paragraph"><a class="permalink" href="#literal_into_indent… 22 into indented paragraph</a></h3> 37 <h3 class="Ss" id="literal_out_of_indented_paragraph"><a class="permalink" href="#literal_out_of_in… 38 out of indented paragraph</a></h3>
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| D | altivec-3.c | 15 float h3[4] __attribute__((aligned(16))); variable 65 vec_store (h3, ftmp); in main() 66 compare_float4 (g3, h3); in main()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/ |
| D | r1.c | 12 h3 (int *p) in h3() function 20 h3 (p); in p3()
|
| /openbsd/src/gnu/llvm/lld/docs/llvm-theme/static/ |
| D | llvm.css | 103 div.sphinxsidebar h3, div.sphinxsidebar h4 { 112 div.sphinxsidebar h3 a { 173 h3 { selector 178 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 { 189 h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, 194 h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover,
|
| /openbsd/src/gnu/llvm/compiler-rt/www/ |
| D | content.css | 7 h1, h2, h3, tt { color: #000 } selector 11 h3 { padding-top: 0.5em; margin-bottom: -0.25em; color:#2d58b7} selector
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Tg/ |
| D | warn.out_html | 5 <h3 class="Ss" id="double"><a class="permalink" href="#double">Subsection</a></h3>
|
| /openbsd/src/gnu/usr.bin/perl/t/op/ |
| D | hash.t | 163 my ($h2, $h3, $h4); 182 %$h3 = %$h2; 183 is(join(",", sort keys %$h3),join(",",sort keys %$h2),"$desc (+$count copy) has same keys"); 184 my (undef, $total3) = validate_hash("$desc (+$count copy)", $h3);
|
| /openbsd/src/gnu/llvm/llvm/docs/_ocamldoc/ |
| D | style.css | 4 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre, selector 53 h3 { font-weight: bold; font-size: 1.125em; margin-top: 1.222em } selector 54 h3 { font-weight: bold; font-size: 1em; margin-top: 1.375em} selector 72 /* h2 + ul, h3 + ul, p + ul { } */
|
| /openbsd/src/gnu/llvm/clang/bindings/python/tests/cindex/ |
| D | test_translation_unit.py | 140 h3 = os.path.join(kInputsDir, "header3.h") 141 inc = [(src, h1), (h1, h3), (src, h2), (h2, h3)] 151 h3 = os.path.join(kInputsDir, "header3.h") 152 inc = [h1, h3, h2, h3, h1]
|
| /openbsd/src/gnu/llvm/clang/www/ |
| D | content.css | 9 h1, h2, h3, tt { color: #000 } selector 13 h3 { padding-top: 0.5em; margin-bottom: -0.25em; color:#2d58b7} selector
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
| D | xhtml10.t | 163 <h3 id="Baz">Baz</h3> 191 <h3 id="Baz">Baz</h3> 229 <h3 id="Baz">Baz</h3> 277 <h3 id="Bar">Bar</h3> 436 <h3 id="Bar">Bar</h3> 442 <h3 id="Sip">Sip</h3>
|
| /openbsd/src/gnu/llvm/llvm/docs/_static/ |
| D | llvm.css | 26 .doc_title, .doc_section, .doc_subsection, h1, h2, h3 { selector 43 h3, .doc_subsection { width: 75%; selector 82 h3+div, h3+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
|
| /openbsd/src/lib/libcrypto/curve25519/ |
| D | curve25519.c | 63 int64_t h3 = load_3(s + 10) << 3; in fe_frombytes() local 83 carry3 = h3 + (1 << 24); h4 += carry3 >> 25; h3 -= carry3 & kTop39Bits; in fe_frombytes() 88 carry2 = h2 + (1 << 25); h3 += carry2 >> 26; h2 -= carry2 & kTop38Bits; in fe_frombytes() 96 h[3] = h3; in fe_frombytes() 131 int32_t h3 = h[3]; in fe_tobytes() local 144 q = (h3 + q) >> 25; in fe_tobytes() 158 h3 += h2 >> 26; h2 &= kBottom26Bits; in fe_tobytes() 159 h4 += h3 >> 25; h3 &= kBottom25Bits; in fe_tobytes() 182 s[9] = (h2 >> 21) | ((uint32_t)(h3) << 5); in fe_tobytes() 183 s[10] = h3 >> 3; in fe_tobytes() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ADT/ |
| D | Hashing.h | 268 uint64_t h0 = 0, h1 = 0, h2 = 0, h3 = 0, h4 = 0, h5 = 0, h6 = 0; member 298 h0 = rotate(h0 + h1 + h3 + fetch64(s + 8), 37) * k1; in mix() 301 h1 += h3 + fetch64(s + 40); in mix() 303 h3 = h4 * k1; in mix() 305 mix_32_bytes(s, h3, h4); in mix() 315 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, in finalize()
|