Home
last modified time | relevance | path

Searched refs:h3 (Results 1 – 25 of 203) sorted by relevance

123456789

/external/boringssl/src/ssl/test/runner/poly1305/
Dsum_ref.go16 h0, h1, h2, h3, h4 uint32 // the hash accumulators
33 h3 += (binary.LittleEndian.Uint32(msg[9:]) >> 6) & 0x3ffffff
37 …d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) …
38 …d1 := (d0 >> 26) + (uint64(h0) * r1) + (uint64(h1) * r0) + (uint64(h2) * R4) + (uint64(h3) * R3) +…
39 …d2 := (d1 >> 26) + (uint64(h0) * r2) + (uint64(h1) * r1) + (uint64(h2) * r0) + (uint64(h3) * R4) +…
40 …d3 := (d2 >> 26) + (uint64(h0) * r3) + (uint64(h1) * r2) + (uint64(h2) * r1) + (uint64(h3) * r0) +…
41 …d4 := (d3 >> 26) + (uint64(h0) * r4) + (uint64(h1) * r3) + (uint64(h2) * r2) + (uint64(h3) * r1) +…
47 h3 = uint32(d3) & 0x3ffffff
66 h3 += (binary.LittleEndian.Uint32(block[9:]) >> 6) & 0x3ffffff
70 …d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) …
[all …]
/external/openssh/
Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local
69 h3 = 0; in poly1305_auth()
86 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_auth()
91 …t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x… in poly1305_auth()
92 …t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x… in poly1305_auth()
93 …t[2] = mul32x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x… in poly1305_auth()
94 …t[3] = mul32x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x… in poly1305_auth()
95 …t[4] = mul32x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x… in poly1305_auth()
100 t[3] += b; h3 = (uint32_t)t[3] & 0x3ffffff; b = (uint32_t)(t[3] >> 26); in poly1305_auth()
123 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_auth()
[all …]
/external/guice/extensions/struts2/example/root/
DCounter.jsp6 <h3><b>Hits in this session:</b>
7 <s:property value="count"/></h3>
9 <h3><b>Status:</b>
10 <s:property value="status"/></h3>
12 <h3><b>Message:</b>
13 <s:property value="message"/></h3>
/external/boringssl/src/crypto/poly1305/
Dpoly1305.c47 uint32_t h0, h1, h2, h3, h4; member
86 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_update()
91 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) + in poly1305_update()
94 mul32x32_64(state->h2, state->s4) + mul32x32_64(state->h3, state->s3) + in poly1305_update()
97 mul32x32_64(state->h2, state->r0) + mul32x32_64(state->h3, state->s4) + in poly1305_update()
100 mul32x32_64(state->h2, state->r1) + mul32x32_64(state->h3, state->r0) + in poly1305_update()
103 mul32x32_64(state->h2, state->r2) + mul32x32_64(state->h3, state->r1) + in poly1305_update()
115 state->h3 = (uint32_t)t[3] & 0x3ffffff; in poly1305_update()
149 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_update()
194 state->h3 = 0; in CRYPTO_poly1305_init()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dhash.h164 uint32_t h3 = seed; in hash_x86_128() local
190 h2 = hash_rotl_32(h2, 17); h2 += h3; in hash_x86_128()
193 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3; in hash_x86_128()
195 h3 = hash_rotl_32(h3, 15); h3 += h4; in hash_x86_128()
196 h3 = h3*5 + 0x96cd1c35; in hash_x86_128()
223 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3; in hash_x86_128()
240 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len; in hash_x86_128()
242 h1 += h2; h1 += h3; h1 += h4; in hash_x86_128()
243 h2 += h1; h3 += h1; h4 += h1; in hash_x86_128()
247 h3 = hash_fmix_32(h3); in hash_x86_128()
[all …]
/external/llvm/test/MC/AArch64/
Darm64-fp-encoding.s20 fadd h1, h2, h3
24 ; FP16: fadd h1, h2, h3 ; encoding: [0x41,0x28,0xe3,0x1e]
26 ; NO-FP16-NEXT: fadd h1, h2, h3
30 fdiv h1, h2, h3
34 ; FP16: fdiv h1, h2, h3 ; encoding: [0x41,0x18,0xe3,0x1e]
36 ; NO-FP16-NEXT: fdiv h1, h2, h3
40 fmadd h1, h2, h3, h4
44 ; FP16: fmadd h1, h2, h3, h4 ; encoding: [0x41,0x10,0xc3,0x1f]
46 ; NO-FP16-NEXT: fmadd h1, h2, h3, h4
50 fmax h1, h2, h3
[all …]
Dfullfp16-diagnostics.s45 fmla h2, h3, v17.h[6]
55 fmls h2, h3, v17.h[6]
65 fmul h2, h3, v17.h[6]
75 fmulx h2, h3, v17.h[6]
/external/doclava/res/assets/templates-sdk/
Dclass.cs135 <h3 class="api-name"><?cs var:field.name ?></h3>
167 <h3 class="api-name"><?cs var:method.name ?></h3>
189 <h3 class="api-name"><?cs var:attr.name ?></h3>
352 <tr><th colspan="2"><h3>Nested classes</h3></th></tr>
360 <tr><th colspan="2"><h3>XML attributes</h3></th></tr>
369 <tr><th><h3>Inherited XML attributes</h3></th></tr>
400 <tr><th colspan="2"><h3>Enum values</h3></th></tr>
419 <tr><th colspan="2"><h3>Constants</h3></th></tr>
429 <tr><th><h3>Inherited constants</h3></th></tr>
460 <tr><th colspan="2"><h3>Fields</h3></th></tr>
[all …]
/external/libmojo/mojo/public/cpp/system/tests/
Dcore_unittest.cc75 Handle h3; in TEST() local
80 handle_to_int[h3] = 3; in TEST()
89 EXPECT_FALSE(handle_to_int.find(h3) == handle_to_int.end()); in TEST()
90 EXPECT_EQ(3, handle_to_int[h3]); in TEST()
367 ScopedMessagePipeHandle h3; in TEST() local
368 if (CreateMessagePipe(nullptr, &h2, &h3) != MOJO_RESULT_OK) in TEST()
369 CreateMessagePipe(nullptr, &h2, &h3); // Must be old EDK. in TEST()
383 WriteMessageRaw(h3.get(), in TEST()
394 h3_value = h3.release().value(); in TEST()
396 EXPECT_FALSE(h3.get().is_valid()); in TEST()
[all …]
/external/clang/test/Analysis/diagnostics/Inputs/include/
Dreport-issues-within-main-file.h30 int h3 = 0; in cause_div_by_zero_in_header3() local
31 h3 = in/h3; in cause_div_by_zero_in_header3()
32 h3++; in cause_div_by_zero_in_header3()
/external/vboot_reference/tests/
Dcgptlib_test.c301 GptHeader h3; in HeaderSameTest() local
305 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest()
306 h3.signature[0] ^= 0xba; in HeaderSameTest()
307 EXPECT(1 == HeaderFieldsSame(h1, &h3)); in HeaderSameTest()
309 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest()
310 h3.revision++; in HeaderSameTest()
311 EXPECT(1 == HeaderFieldsSame(h1, &h3)); in HeaderSameTest()
313 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest()
314 h3.size++; in HeaderSameTest()
315 EXPECT(1 == HeaderFieldsSame(h1, &h3)); in HeaderSameTest()
[all …]
/external/libcups/filter/
Dspec-ppd.shtml33 <h3><span class='info'>macOS 10.5</span><a name='APAutoSetupTool'>APAutoSetupTool</a></h3>
48 <h3><span class='info'>macOS 10.2/CUPS 1.4</span><a name='QUERYKEYWORD'>?MainKeyword</a></h3>
77 <h3><span class='info'>macOS 10.4/CUPS 1.5</span><a name='OID'>OIDMainKeyword</a></h3>
108 <h3><span class='info'>Deprecated</span><a name='cupsColorProfile'>cupsColorProfile</a></h3>
145 <h3><span class='info'>macOS 10.3/CUPS 1.2</span><a name='cupsICCProfile'>cupsICCProfile</a></h3>
184 <h3><span class='info'>macOS 10.4</span><a name='APCustom'>Custom Color Matching Support</a></h3>
285 <h3><span class='info'>CUPS 1.4/macOS 10.6</span><a name='cupsUIConstraints'>cupsUIConstraints</a><…
315 <h3><span class='info'>CUPS 1.4/macOS 10.6</span><a name='cupsUIResolver'>cupsUIResolver</a></h3>
532 <h3>Custom Page Size Code</h3>
545 <h3>Supported PostScript Operators</h3>
[all …]
/external/llvm/test/CodeGen/Thumb2/
Dconstant-islands-jump-table.ll15 i32 0, label %h3
23 br label %h3
25 h3:
31 %c2 = phi i32 [%b1, %h1], [%d3, %h3]
/external/llvm/test/MC/Disassembler/AArch64/
Darm64-scalar-fp.txt20 # FP16: fadd h1, h2, h3
28 # FP16: fdiv h1, h2, h3
36 # FP16: fmadd h1, h2, h3, h4
47 # FP16: fmax h1, h2, h3
50 # FP16: fmaxnm h1, h2, h3
61 # FP16: fmin h1, h2, h3
64 # FP16: fminnm h1, h2, h3
72 # FP16: fmsub h1, h2, h3, h4
80 # FP16: fmul h1, h2, h3
96 # FP16: fnmadd h1, h2, h3, h4
[all …]
/external/clang/test/Sema/
Dwarn-missing-prototypes.c18 int h3();
24 int h3(int x); in test()
29 int h3(int x) { return x; } // expected-warning{{no previous prototype for function 'h3'}} in h3() function
/external/lzma/C/
DLzHash.h26 h3 = temp & (kHash3Size - 1); \
33 h3 = temp & (kHash3Size - 1); \
48 h3 = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); }
54 h3 = temp & (kHash3Size - 1); \
/external/boringssl/src/ssl/test/runner/curve25519/
Dcurve25519.go90 h3 := load3(src[10:]) << 3
105 carry[3] = (h3 + 1<<24) >> 25
107 h3 -= carry[3] << 25
119 h3 += carry[2]
134 dst[3] = int32(h3)
420 h3 := f0g3 + f1g2 + f2g1 + f3g0 + f4g9_19 + f5g8_19 + f6g7_19 + f7g6_19 + f8g5_19 + f9g4_19
457 h3 += carry[2]
467 carry[3] = (h3 + (1 << 24)) >> 25
469 h3 -= carry[3] << 25
504 h[3] = int32(h3)
[all …]
/external/llvm/docs/_themes/llvm-theme/static/
Dllvm-theme.css102 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,
/external/libxml2/result/HTML/
Dfp40.htm.sax154 SAX.startElement(h3)
158 SAX.endElement(h3)
220 SAX.startElement(h3)
224 SAX.endElement(h3)
260 SAX.startElement(h3)
264 SAX.endElement(h3)
354 SAX.startElement(h3)
358 SAX.endElement(h3)
385 SAX.startElement(h3)
389 SAX.endElement(h3)
[all …]
/external/clang/test/PCH/Inputs/
Dchain-macro-override1.h8 #define h3() macro
9 #undef h3
/external/libvpx/libvpx/vp9/encoder/mips/msa/
Dvp9_fdct16x16_msa.c20 v8i16 tp0, tp1, tp2, tp3, g0, g1, g2, g3, g8, g9, g10, g11, h0, h1, h2, h3; in fadst16_cols_step1_msa() local
52 MADD_BF(g1, g3, g9, g11, k0, k1, k2, k0, h0, h1, h2, h3); in fadst16_cols_step1_msa()
55 ST_SH2(h3, h2, int_buf + 12 * 8, 8); in fadst16_cols_step1_msa()
77 MADD_BF(r13, r2, r5, r10, k0, k1, k2, k3, h0, h1, h2, h3); in fadst16_cols_step1_msa()
79 ST_SH2(h1, h3, int_buf + 11 * 8, 4 * 8); in fadst16_cols_step1_msa()
89 v8i16 h0, h1, h2, h3, h4, h5, h6, h7, h10, h11; in fadst16_cols_step2_msa() local
112 h3 = LD_SH(int_buf + 12 * 8); in fadst16_cols_step2_msa()
113 MADD_BF(h1, h3, h5, h7, k0, k1, k2, k0, out12, out14, out13, out15); in fadst16_cols_step2_msa()
206 v8i16 tp0, tp1, tp2, tp3, g0, g1, g2, g3, g8, g9, g10, g11, h0, h1, h2, h3; in fadst16_rows_step1_msa() local
236 MADD_BF(g1, g3, g9, g11, k0, k1, k2, k0, h0, h1, h2, h3); in fadst16_rows_step1_msa()
[all …]
/external/fmtlib/doc/bootstrap/
Dtype.less9 h1, h2, h3, h4, h5, h6,
10 .h1, .h2, .h3, .h4, .h5, .h6 {
26 h3, .h3 {
49 h3, .h3 { font-size: @font-size-h3; }
/external/skia/third_party/lua/doc/
Dlua.css10 h1, h2, h3, h4 { selector
25 h3 { selector
30 table h3 {
/external/javassist/tutorial/
Dbrown.css1 h1,h2,h3 { selector
9 h3 { selector
/external/syslinux/com32/lua/doc/
Dlua.css16 h1, h2, h3, h4 { selector
32 h3 { selector
37 table h3 {

123456789