Home
last modified time | relevance | path

Searched refs:h4 (Results 1 – 25 of 46) sorted by relevance

12

/openbsd/usr.bin/ssh/
H A Dpoly1305.c31 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local
65 h4 = 0; in poly1305_auth()
82 h4 += (t3 >> 8) | (1 << 24); in poly1305_auth()
86 …2x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1); in poly1305_auth()
87 …2x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x32_64(h4,s2); in poly1305_auth()
96 t[4] += b; h4 = (uint32_t)t[4] & 0x3ffffff; b = (uint32_t)(t[4] >> 26); in poly1305_auth()
119 h4 += (t3 >> 8); in poly1305_auth()
128 h4 += b; b = h4 >> 26; h4 = h4 & 0x3ffffff; in poly1305_auth()
136 g4 = h4 + b - (1 << 26); in poly1305_auth()
144 h4 = (h4 & nb) | (g4 & b); in poly1305_auth()
[all …]
H A Dumac.c470 UINT64 h1,h2,h3,h4; in nh_aux() local
482 h4 = *((UINT64 *)hp + 3); in nh_aux()
497 h4 += MUL64((k12 + d0), (k16 + d4)); in nh_aux()
502 h4 += MUL64((k13 + d1), (k17 + d5)); in nh_aux()
507 h4 += MUL64((k14 + d2), (k18 + d6)); in nh_aux()
512 h4 += MUL64((k15 + d3), (k19 + d7)); in nh_aux()
524 ((UINT64 *)hp)[3] = h4; in nh_aux()
/openbsd/sys/crypto/
H A Dpoly1305.c71 unsigned long h0, h1, h2, h3, h4; in poly1305_blocks() local
90 h4 = st->h[4]; in poly1305_blocks()
105 ((unsigned long long)h4 * s1); in poly1305_blocks()
110 ((unsigned long long)h4 * s2); in poly1305_blocks()
155 st->h[4] = h4; in poly1305_blocks()
218 h4 = st->h[4]; in poly1305_finish()
228 h4 += c; in poly1305_finish()
229 c = h4 >> 26; in poly1305_finish()
230 h4 = h4 & 0x3ffffff; in poly1305_finish()
249 g4 = h4 + c - (1 << 26); in poly1305_finish()
[all …]
/openbsd/lib/libcrypto/poly1305/
H A Dpoly1305-donna.c89 unsigned long h0, h1, h2, h3, h4; in poly1305_blocks() local
108 h4 = st->h[4]; in poly1305_blocks()
123 ((unsigned long long)h4 * s1); in poly1305_blocks()
128 ((unsigned long long)h4 * s2); in poly1305_blocks()
173 st->h[4] = h4; in poly1305_blocks()
238 h4 = st->h[4]; in poly1305_finish()
248 h4 += c; in poly1305_finish()
249 c = h4 >> 26; in poly1305_finish()
250 h4 = h4 & 0x3ffffff; in poly1305_finish()
269 g4 = h4 + c - (1 << 26); in poly1305_finish()
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/27_io/istream_extractor_arith/
H A D06.cc52 unsigned int h4, h3, h2; in test06() local
57 is >> h4; // 205 in test06()
58 VERIFY( h4 == 205 ); in test06()
62 is >> h4; // 199 in test06()
63 VERIFY( h4 == 199 ); in test06()
67 is >> h4; // 144 in test06()
69 VERIFY( h4 == 144 ); in test06()
H A D07.cc60 unsigned int h4 = 0, h3 = 0, h2 = 0; in test07() local
67 is >> h4; in test07()
68 VERIFY( h4 == 205199 ); in test07()
92 h3 = h4 = h2 = 0; in test07()
99 is >> h4; in test07()
100 VERIFY( h4 == 0 ); in test07()
H A D08.cc60 unsigned int h4 = 0, h3 = 0, h2 = 0; in test08() local
69 is >> h4; in test08()
70 VERIFY( h4 == 122 ); in test08()
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dxhtml10.t193 <h4 id="Howdy">Howdy</h4>
231 <h4 id="Howdy">Howdy</h4>
302 <h4 id="Bar">Bar</h4>
355 <h4 id="Four">Four</h4>
357 <h4 id="Four2">Four2</h4>
381 <h4 id="Foo">Foo</h4>
440 <h4 id="Drink">Drink</h4>
444 <h4 id="Ouch">Ouch</h4>
H A Dhtml01.t69 => qr{\s*<h4><a[^<>]+>This,\s+too,\s+is\s+a\s+heading</a></h4>\s*$},
/openbsd/gnu/llvm/llvm/docs/_themes/llvm-theme/static/
H A Dllvm-theme.css102 div.sphinxsidebar h3, div.sphinxsidebar h4 {
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 {
188 div.body h4,
202 div.body h4 { font-size: 120%; }
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/lib/libcrypto/curve25519/
H A Dcurve25519.c97 h[4] = h4; in fe_frombytes()
132 int32_t h4 = h[4]; in fe_tobytes() local
160 h5 += h4 >> 26; h4 &= kBottom26Bits; in fe_tobytes()
186 s[13] = h4 >> 2; in fe_tobytes()
187 s[14] = h4 >> 10; in fe_tobytes()
188 s[15] = h4 >> 18; in fe_tobytes()
488 h[4] = h4; in fe_mul()
629 h[4] = h4; in fe_sq()
861 h4 += h4; in fe_sq2()
891 h[4] = h4; in fe_sq2()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DHashing.h268 uint64_t h0 = 0, h1 = 0, h2 = 0, h3 = 0, h4 = 0, h5 = 0, h6 = 0; member
277 state.h6 = hash_16_bytes(state.h4, state.h5); in create()
299 h1 = rotate(h1 + h4 + fetch64(s + 48), 42) * k1; in mix()
303 h3 = h4 * k1; in mix()
304 h4 = h0 + h5; in mix()
305 mix_32_bytes(s, h3, h4); in mix()
316 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize()
/openbsd/gnu/llvm/lld/docs/llvm-theme/static/
H A Dllvm.css103 div.sphinxsidebar h3, div.sphinxsidebar h4 {
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/gnu/usr.bin/perl/t/op/
H A Dhash.t163 my ($h2, $h3, $h4);
196 %$h4 = %$h;
197 my (undef, $total4) = validate_hash("$desc ($count copy)", $h4);
/openbsd/gnu/llvm/llvm/docs/_static/
H A Dllvm.css48 h4, .doc_subsubsection { margin: 2.0em 0.5em 0.5em 0.5em; selector
83 h4+div, h4+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
/openbsd/regress/lib/libcrypto/x509/bettertls/certificates/
H A D1937.crt21 h4+DTzLA3Gxi6OmLj1D7s0iXOPmNAGkwPKKJuWSzX0ISnSTnNnYfGFand5gqr/05
H A D1906.crt17 AAEwDQYJKoZIhvcNAQELBQADggEBADKfAjiRYNQs/qn8TpZIIHOjpK5KzRjj+/h4
H A D1926.key8 +LSkj7p/XEVEiIBPJaN28O6afmV1aL8X8vbus1mgSP8fFi4FsYhrnSBWR1yA+0h4
H A D1488.key11 DkyeHq++h4/fITw1cNeJ83nfDsWKa6pzyj4J3MztQsA43HUkjR2i860/t1C86FeY
H A D1095.key15 3h4/Gqrs/t9IJn2rSFa0TD++oXDGDCmuZpY2lxJZp/MuBpLm8jnMchcCgYEA9ddZ
H A D2004.chain18 +E8CBT3GzU1nVsV7RPuTEzyOCxW84+2h4/9CsrE0XuGngavGrQyLKAqVD83NiaPa
H A D1163.chain41 4h4+MpunhdaF19fAznQisu+c7Lne+6BO56J7KFnHanu7SbEFWtfbGGwx+BBf2XDV
/openbsd/gnu/llvm/clang/www/analyzer/
H A Dcontent.css17 h4 { color:#2d58b7 } selector
18 h4.faq { color:#2d58b7 }
/openbsd/gnu/llvm/llvm/docs/_ocamldoc/
H A Dstyle.css4 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre, selector
55 h4 { font-style: italic; } selector
/openbsd/lib/libm/src/ld80/
H A De_lgammal.c140 h4 = 9.764244777714344488787381271643502742293E2L, variable
372 p2 = h0 + y * (h1 + y * (h2 + y * (h3 + y * (h4 + y * (h5 + y))))); in lgammal()

12