/external/robolectric/lib/main/ |
D | h2-1.2.147.jar | ... java.lang.Object {
public abstract org.h2.table.TableBase createTable (org.h2. ... |
/external/clang/test/CodeGen/ |
D | fp16-ops.c | 13 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable 74 h1 = h0 * h2; in foo() 93 h1 = f0 * h2; in foo() 100 h1 = (h0 / h2); in foo() 118 h1 = (f0 / h2); in foo() 125 h1 = (h2 + h0); in foo() 137 h1 = (h2 + f0); in foo() 150 h1 = (h2 - h0); in foo() 162 h1 = (h2 - f0); in foo() 174 test = (h2 < h0); in foo() [all …]
|
/external/jemalloc/include/jemalloc/internal/ |
D | hash.h | 147 uint32_t h2 = seed; in hash_x86_128() local 169 h1 = hash_rotl_32(h1, 19); h1 += h2; in hash_x86_128() 172 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; in hash_x86_128() 174 h2 = hash_rotl_32(h2, 17); h2 += h3; in hash_x86_128() 175 h2 = h2*5 + 0x0bcaa747; in hash_x86_128() 213 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; 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() 230 h2 = hash_fmix_32(h2); in hash_x86_128() [all …]
|
/external/guava/guava/src/com/google/common/hash/ |
D | Murmur3_128HashFunction.java | 83 private long h2; field in Murmur3_128HashFunction.Murmur3_128Hasher 89 this.h2 = seed; in Murmur3_128Hasher() 104 h1 += h2; in bmix64() 107 h2 ^= mixK2(k2); in bmix64() 109 h2 = Long.rotateLeft(h2, 31); in bmix64() 110 h2 += h1; in bmix64() 111 h2 = h2 * 5 + 0x38495ab5; in bmix64() 155 h2 ^= mixK2(k2); in processRemaining() 160 h2 ^= length; in makeHash() 162 h1 += h2; in makeHash() [all …]
|
/external/openssh/ |
D | poly1305.c | 36 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local 68 h2 = 0; in poly1305_auth() 85 h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 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() 99 t[2] += b; h2 = (uint32_t)t[2] & 0x3ffffff; b = (uint32_t)(t[2] >> 26); in poly1305_auth() 122 h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff; in poly1305_auth() [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | inline-arity-mismatch.js | 44 function h2(a, b) { function 53 assertEquals(4, h2(o, o)); 54 assertEquals(4, h2(o, o)); 56 %OptimizeFunctionOnNextCall(h2); 58 assertEquals(4, h2(o, o)); 62 assertEquals(2, h2(o, u));
|
/external/boringssl/src/crypto/poly1305/ |
D | poly1305.c | 65 uint32_t h0, h1, h2, h3, h4; member 98 state->h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 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() 125 state->h2 = (uint32_t)t[2] & 0x3ffffff; in poly1305_update() 161 state->h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff; in poly1305_update() 206 state->h2 = 0; in CRYPTO_poly1305_init() [all …]
|
/external/vboot_reference/tests/ |
D | cgptlib_test.c | 300 GptHeader *h2 = (GptHeader *)gpt->secondary_header; in HeaderSameTest() local 303 EXPECT(0 == HeaderFieldsSame(h1, h2)); in HeaderSameTest() 305 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() 309 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() 313 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() 317 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() 321 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() 325 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() 329 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() 333 Memcpy(&h3, h2, sizeof(h3)); in HeaderSameTest() [all …]
|
/external/libphonenumber/demo/war/ |
D | phonenumberparser.jsp | 7 <h2>Phone Number Parser Demo</h2> 10 <h2>Step 1</h2> 18 <h2>Step 2</h2> 24 <h2>Step 3</h2>
|
/external/clang/test/CXX/over/over.match/over.match.funcs/ |
D | p4-0x.cpp | 31 int &h2() const&; 32 float &h2() const&&; 68 int &ir2 = lvalue<X0>().h2(); in test_ref_qualifier_overloading() 69 float &fr3 = xvalue<X0>().h2(); in test_ref_qualifier_overloading() 70 float &fr4 = prvalue<X0>().h2(); in test_ref_qualifier_overloading()
|
/external/clang/test/Analysis/diagnostics/Inputs/include/ |
D | report-issues-within-main-file.h | 22 int h2 = 0; in cause_div_by_zero_in_header2() local 23 h2 = in/h2; in cause_div_by_zero_in_header2() 24 h2++; in cause_div_by_zero_in_header2()
|
/external/doclava/res/assets/templates/ |
D | todo.cs | 33 <h2>Overall</h2> 40 <h2>Package Summary</h2> 60 <h2>Class Summary</h3> 79 <h2>Detail</h2>
|
D | sampleindex.cs | 23 <h2>Subdirectories</h2> 33 <h2>Files</h2>
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Links-in-Headers.text-out | 1 <h2>A plain header</h2> 7 <h2>Another with a <a href="http://www.link.com/">link</a></h2>
|
D | Links-in-Headers.text-res | 1 <h2><span class="markdown">A plain header</span></h2> 7 <h2>Another with a <a href="http://www.link.com/">link</a></h2>
|
/external/vboot_reference/cgpt/ |
D | cgpt_legacy.c | 13 GptHeader *h1, *h2; in CgptLegacy() local 23 h2 = (GptHeader *)drive.gpt.secondary_header; in CgptLegacy() 26 memcpy(h2->signature, GPT_HEADER_SIGNATURE, GPT_HEADER_SIGNATURE_SIZE); in CgptLegacy() 32 memcpy(h2->signature, GPT_HEADER_SIGNATURE2, GPT_HEADER_SIGNATURE_SIZE); in CgptLegacy()
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerUtil.cpp | 38 size_t h1 = 0, h2 = 0; in Hash() local 42 h2 += x; in Hash() 43 h2 *= 7; in Hash() 45 return std::to_string(h1) + std::to_string(h2); in Hash()
|
/external/vboot_reference/firmware/lib/cgptlib/ |
D | cgptlib_internal.c | 211 int HeaderFieldsSame(GptHeader *h1, GptHeader *h2) in HeaderFieldsSame() argument 213 if (Memcmp(h1->signature, h2->signature, sizeof(h1->signature))) in HeaderFieldsSame() 215 if (h1->revision != h2->revision) in HeaderFieldsSame() 217 if (h1->size != h2->size) in HeaderFieldsSame() 219 if (h1->reserved_zero != h2->reserved_zero) in HeaderFieldsSame() 221 if (h1->first_usable_lba != h2->first_usable_lba) in HeaderFieldsSame() 223 if (h1->last_usable_lba != h2->last_usable_lba) in HeaderFieldsSame() 225 if (Memcmp(&h1->disk_uuid, &h2->disk_uuid, sizeof(Guid))) in HeaderFieldsSame() 227 if (h1->number_of_entries != h2->number_of_entries) in HeaderFieldsSame() 229 if (h1->size_of_entry != h2->size_of_entry) in HeaderFieldsSame() [all …]
|
/external/llvm/test/MC/AArch64/ |
D | arm64-fp-encoding.s | 148 fcvt d1, h2 149 fcvt s1, h2 155 ; CHECK: fcvt d1, h2 ; encoding: [0x41,0xc0,0xe2,0x1e] 156 ; CHECK: fcvt s1, h2 ; encoding: [0x41,0x40,0xe2,0x1e] 421 sqxtn b4, h2 422 sqxtn h2, s3 425 ; CHECK: sqxtn b4, h2 ; encoding: [0x44,0x48,0x21,0x5e] 426 ; CHECK: sqxtn h2, s3 ; encoding: [0x62,0x48,0x61,0x5e] 429 sqxtun b4, h2 430 sqxtun h2, s3 [all …]
|
/external/clang/test/SemaCXX/ |
D | borland-extensions.cpp | 25 template<typename T> int h2(T (__pascal M::* const )()) { return 0; } in h2() function 31 i = h2<int>(&M::addP); in m2() 32 f = h2(&M::subtractP); in m2()
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/ |
D | dataurl-realdata-yuiapp.css | 40 #hd, h1, h2, p, .color { selector 44 h1, h2, a { selector 48 h1, h2 { selector 80 h2 { selector
|
D | dataurl-realdata-yuiapp.css.min | 1 …h2,p,.color{margin:auto}h1,h2,a{color:#006e9c}h1,h2{margin-top:0}h4 .title{font-weight:bold;letter…
|
/external/clang/test/CodeGenCXX/ |
D | template-instantiation.cpp | 195 friend void h2(S s); 202 h2(s1); h2(s2); h2(s3); in test()
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/out/ |
D | dataurl-realdata-yuiapp.out.b | 1 …h2,p,.color{margin:auto}h1,h2,a{color:#006e9c}h1,h2{margin-top:0}h4 .title{font-weight:bold;letter…
|
D | dataurl-realdata-yuiapp.out | 1 …h2,p,.color{margin:auto}h1,h2,a{color:#006e9c}h1,h2{margin-top:0}h4 .title{font-weight:bold;letter…
|