/external/openssh/ |
D | poly1305.c | 36 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 …]
|
D | umac.c | 420 UINT64 h1,h2,h3; in nh_aux() local 430 h3 = *((UINT64 *)hp + 2); in nh_aux() 443 h3 += MUL64((k8 + d0), (k12 + d4)); in nh_aux() 447 h3 += MUL64((k9 + d1), (k13 + d5)); in nh_aux() 451 h3 += MUL64((k10 + d2), (k14 + d6)); in nh_aux() 455 h3 += MUL64((k11 + d3), (k15 + d7)); in nh_aux() 465 ((UINT64 *)hp)[2] = h3; in nh_aux() 475 UINT64 h1,h2,h3,h4; in nh_aux() local 486 h3 = *((UINT64 *)hp + 2); in nh_aux() 501 h3 += MUL64((k8 + d0), (k12 + d4)); in nh_aux() [all …]
|
/external/jemalloc/include/jemalloc/internal/ |
D | hash.h | 148 uint32_t h3 = seed; in hash_x86_128() local 174 h2 = hash_rotl_32(h2, 17); h2 += h3; in hash_x86_128() 177 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3; in hash_x86_128() 179 h3 = hash_rotl_32(h3, 15); h3 += h4; in hash_x86_128() 180 h3 = h3*5 + 0x96cd1c35; in hash_x86_128() 207 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3; in hash_x86_128() 224 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len; in hash_x86_128() 226 h1 += h2; h1 += h3; h1 += h4; in hash_x86_128() 227 h2 += h1; h3 += h1; h4 += h1; in hash_x86_128() 231 h3 = hash_fmix_32(h3); in hash_x86_128() [all …]
|
/external/boringssl/src/crypto/poly1305/ |
D | poly1305.c | 65 uint32_t h0, h1, h2, h3, h4; member 99 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_update() 104 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) + in poly1305_update() 107 mul32x32_64(state->h2, state->s4) + mul32x32_64(state->h3, state->s3) + in poly1305_update() 110 mul32x32_64(state->h2, state->r0) + mul32x32_64(state->h3, state->s4) + in poly1305_update() 113 mul32x32_64(state->h2, state->r1) + mul32x32_64(state->h3, state->r0) + in poly1305_update() 116 mul32x32_64(state->h2, state->r2) + mul32x32_64(state->h3, state->r1) + in poly1305_update() 128 state->h3 = (uint32_t)t[3] & 0x3ffffff; in poly1305_update() 162 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_update() 207 state->h3 = 0; in CRYPTO_poly1305_init() [all …]
|
/external/clang/test/Analysis/diagnostics/Inputs/include/ |
D | report-issues-within-main-file.h | 30 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/ |
D | cgptlib_test.c | 301 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/llvm/test/CodeGen/Thumb2/ |
D | constant-islands-jump-table.ll | 15 i32 0, label %h3 23 br label %h3 25 h3: 31 %c2 = phi i32 [%b1, %h1], [%d3, %h3]
|
/external/clang/test/Sema/ |
D | warn-missing-prototypes.c | 18 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/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,
|
/external/libxml2/result/HTML/ |
D | fp40.htm.sax | 154 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/boringssl/src/ssl/test/runner/ |
D | poly1305.go | 262 h3 := alpha32 - alpha32 449 h3 += z2 556 y3 = h3 + alpha64 580 x3 = h3 - y3 631 h3 = r1highx0 + sr2highx6 658 h3 += sr3highx4 673 h3 += r0highx2 700 h3 += z2 754 y3 = h3 + alpha64 776 x3 = h3 - y3 [all …]
|
/external/clang/test/PCH/Inputs/ |
D | chain-macro-override1.h | 8 #define h3() macro 9 #undef h3
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/_themes/webapp2/static/ |
D | webapp2.css | 70 .body h2, .body h3, .body h4, .body h5, .body h6 { 173 div.sphinxsidebar h2, div.sphinxsidebar h3, div.sphinxsidebar h4, 175 div.sphinxsidebar h3 a, div.sphinxsidebar h3 a:link, div.sphinxsidebar h3 a:active, div.sphinxsideb…
|
/external/javassist/tutorial/ |
D | brown.css | 1 h1,h2,h3 { selector 9 h3 { selector
|
/external/markdown/tests/markdown-test/ |
D | markdown-syntax.txt | 43 <h3 id="philosophy">Philosophy</h3> 71 <h3 id="html">Inline HTML</h3> 122 <h3 id="autoescape">Automatic Escaping for Special Characters</h3> 184 <h3 id="p">Paragraphs and Line Breaks</h3> 210 <h3 id="header">Headers</h3> 247 <h3 id="blockquote">Blockquotes</h3> 297 <h3 id="list">Lists</h3> 457 <h3 id="precode">Code Blocks</h3> 522 <h3 id="hr">Horizontal Rules</h3> 546 <h3 id="link">Links</h3> [all …]
|
/external/markdown/tests/extensions-x-def_list/ |
D | markdown-syntax.txt | 43 <h3 id="philosophy">Philosophy</h3> 71 <h3 id="html">Inline HTML</h3> 122 <h3 id="autoescape">Automatic Escaping for Special Characters</h3> 184 <h3 id="p">Paragraphs and Line Breaks</h3> 210 <h3 id="header">Headers</h3> 247 <h3 id="blockquote">Blockquotes</h3> 297 <h3 id="list">Lists</h3> 457 <h3 id="precode">Code Blocks</h3> 522 <h3 id="hr">Horizontal Rules</h3> 546 <h3 id="link">Links</h3> [all …]
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Markdown Documentation - Syntax.text | 43 <h3 id="philosophy">Philosophy</h3> 71 <h3 id="html">Inline HTML</h3> 122 <h3 id="autoescape">Automatic Escaping for Special Characters</h3> 184 <h3 id="p">Paragraphs and Line Breaks</h3> 210 <h3 id="header">Headers</h3> 247 <h3 id="blockquote">Blockquotes</h3> 297 <h3 id="list">Lists</h3> 457 <h3 id="precode">Code Blocks</h3> 522 <h3 id="hr">Horizontal Rules</h3> 546 <h3 id="link">Links</h3> [all …]
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Markdown Documentation - Syntax.text | 43 <h3 id="philosophy">Philosophy</h3> 71 <h3 id="html">Inline HTML</h3> 122 <h3 id="autoescape">Automatic Escaping for Special Characters</h3> 184 <h3 id="p">Paragraphs and Line Breaks</h3> 210 <h3 id="header">Headers</h3> 247 <h3 id="blockquote">Blockquotes</h3> 297 <h3 id="list">Lists</h3> 457 <h3 id="precode">Code Blocks</h3> 522 <h3 id="hr">Horizontal Rules</h3> 546 <h3 id="link">Links</h3> [all …]
|
/external/tinyxml/ |
D | readme.txt | 90 <h3> Using STL </h3> 114 <h3> UTF-8 </h3> 182 <h3> Entities </h3> 210 <h3> Streams </h3> 252 <h3> White space </h3> 269 <h3> Handles </h3> 305 <h3> Row and Column tracking </h3> 332 <h3>Windows project file for VC6</h3> 340 <h3>Linux Make file</h3> 351 <h3>To Use in an Application:</h3>
|
/external/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
|
/external/libcxxabi/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
|
/external/libcxx/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
|
/external/opencv/cxcore/src/ |
D | cxmathfuncs.cpp | 1398 int h0, h1, h2, h3; variable 1415 h3 = x[i+3]; 1421 buf[3].i = (h3 & LOGTAB_MASK2_32F) | (127 << 23); 1424 y3 = (((h3 >> 23) & 0xff) - 127) * ln_2; 1427 h3 = (h3 >> (23 - LOGTAB_SCALE - 1)) & LOGTAB_MASK * 2; 1430 y3 += icvLogTab[h3]; 1433 x3 = LOGTAB_TRANSLATE( buf[3].f, h3 ); 1442 y3 += LOGPOLY( x3, h3 == 510 ); 1498 int h0, h1, h2, h3; variable 1514 h3 = X[i + 3].i.lo; [all …]
|
/external/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
|
/external/doclava/res/assets/templates/ |
D | todo.cs | 60 <h2>Class Summary</h3> 82 <h3><a name="class_<?cs var:cl.qualified ?>"><?cs var:cl.qualified ?></a></h3>
|