/external/guice/extensions/struts2/example/root/ |
D | Counter.jsp | 6 <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/ |
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/jemalloc/include/jemalloc/internal/ |
D | hash.h | 168 uint32_t h3 = seed; in hash_x86_128() local 194 h2 = hash_rotl_32(h2, 17); h2 += h3; in hash_x86_128() 197 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3; in hash_x86_128() 199 h3 = hash_rotl_32(h3, 15); h3 += h4; in hash_x86_128() 200 h3 = h3*5 + 0x96cd1c35; in hash_x86_128() 227 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3; in hash_x86_128() 244 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len; in hash_x86_128() 246 h1 += h2; h1 += h3; h1 += h4; in hash_x86_128() 247 h2 += h1; h3 += h1; h4 += h1; in hash_x86_128() 251 h3 = hash_fmix_32(h3); in hash_x86_128() [all …]
|
/external/llvm/test/MC/AArch64/ |
D | arm64-fp-encoding.s | 20 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 …]
|
D | fullfp16-diagnostics.s | 45 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/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/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/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-scalar-fp.txt | 20 # 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/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/boringssl/src/ssl/test/runner/curve25519/ |
D | curve25519.go | 90 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/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/poly1305/ |
D | sum_ref.go | 253 h3 := alpha32 - alpha32 440 h3 += z2 547 y3 = h3 + alpha64 571 x3 = h3 - y3 622 h3 = r1highx0 + sr2highx6 649 h3 += sr3highx4 664 h3 += r0highx2 691 h3 += z2 745 y3 = h3 + alpha64 767 x3 = h3 - y3 [all …]
|
/external/libvpx/libvpx/vp9/encoder/mips/msa/ |
D | vp9_fdct16x16_msa.c | 20 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/chromium-trace/catapult/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/clang/test/PCH/Inputs/ |
D | chain-macro-override1.h | 8 #define h3() macro 9 #undef h3
|
/external/javassist/tutorial/ |
D | brown.css | 1 h1,h2,h3 { selector 9 h3 { selector
|
/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/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_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/testng/doc/samplereport/css/ |
D | maven-classic.css | 12 .contentBox h3 { 121 h2, h3 { selector 144 .contentBox h2, .contentBox h3, .tabs td, .tabs th, .functnbar { 193 .contentBox h2 a:link, .contentBox h2 a:visited, .contentBox h3 a:link, .contentBox h3 a:visited { 249 .docs h2, .docs h3 { 518 body, .contentBox h2, .contentBox h3, #rightcol h2, pre, code, #apphead h2 small, h3, th, td { selector 588 .contentBox h2, .contentBox h3 { 597 .h2 p, .h3 p, .h2 dt, .h3 dt { 655 .docs h2, .docs h3 { 854 .contentBox h2, .contentBox h3, .bars {
|
/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/opencv3/modules/hal/src/ |
D | mathfuncs.cpp | 1157 int h0, h1, h2, h3; in log() local 1174 h3 = x[i+3]; in log() 1180 buf[3].i = (h3 & LOGTAB_MASK2_32F) | (127 << 23); in log() 1183 y3 = (((h3 >> 23) & 0xff) - 127) * ln_2; in log() 1186 h3 = (h3 >> (23 - LOGTAB_SCALE - 1)) & LOGTAB_MASK * 2; in log() 1189 y3 += icvLogTab[h3]; in log() 1192 x3 = LOGTAB_TRANSLATE( buf[3].f, h3 ); in log() 1203 x3 += shift[h3 == 510]; in log() 1339 int h0, h1, h2, h3; in log() local 1355 h3 = X[i + 3].i.lo; in log() [all …]
|