/external/scapy/scapy/contrib/ |
D | http2.uts | 15 import scapy.contrib.http2 as h2 30 f = h2.UVarIntField('value', 0, 5) 36 f = h2.UVarIntField('value', 0, 8) 42 f = h2.UVarIntField('value', 0, 8) 52 f = h2.UVarIntField('value', 0, 5) 62 f = h2.UVarIntField('value', 0, 8) 87 f = h2.UVarIntField('value', 0, 5) 112 f = h2.UVarIntField('value', 0, 8) 122 f = h2.UVarIntField('value', 0, 5) 132 f = h2.UVarIntField('value', 0, 8) [all …]
|
/external/llvm/test/MC/AArch64/ |
D | arm64-fp-encoding.s | 10 fabs h1, h2 14 ; FP16: fabs h1, h2 ; encoding: [0x41,0xc0,0xe0,0x1e] 16 ; NO-FP16-NEXT: fabs h1, h2 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 [all …]
|
/external/clang/test/CodeGen/ |
D | fp16-ops.c | 16 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable 77 h1 = h0 * h2; in foo() 96 h1 = f0 * h2; in foo() 108 h1 = (h0 / h2); in foo() 126 h1 = (f0 / h2); in foo() 138 h1 = (h2 + h0); in foo() 150 h1 = (h2 + f0); in foo() 168 h1 = (h2 - h0); in foo() 180 h1 = (h2 - f0); in foo() 197 test = (h2 < h0); in foo() [all …]
|
/external/boringssl/src/ssl/test/runner/poly1305/ |
D | sum_ref.go | 16 h0, h1, h2, h3, h4 uint32 // the hash accumulators 32 h2 += (binary.LittleEndian.Uint32(msg[6:]) >> 4) & 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) +… 46 h2 = uint32(d2) & 0x3ffffff 65 h2 += (binary.LittleEndian.Uint32(block[6:]) >> 4) & 0x3ffffff 70 …d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) … [all …]
|
D | sum_amd64.s | 9 #define POLY1305_ADD(msg, h0, h1, h2) \ argument 12 ADCQ $1, h2; \ 15 #define POLY1305_MUL(h0, h1, h2, r0, r1, t0, t1, t2, t3) \ argument 25 IMULQ h2, t2; \ 34 IMULQ h2, t3; \ 44 MOVQ t2, h2; \ 45 ANDQ $3, h2; \ 50 ADCQ $0, h2; \ 55 ADCQ $0, h2
|
/external/jemalloc/include/jemalloc/internal/ |
D | hash.h | 163 uint32_t h2 = seed; in hash_x86_128() local 185 h1 = hash_rotl_32(h1, 19); h1 += h2; in hash_x86_128() 188 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; in hash_x86_128() 190 h2 = hash_rotl_32(h2, 17); h2 += h3; in hash_x86_128() 191 h2 = h2*5 + 0x0bcaa747; in hash_x86_128() 229 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; 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() 246 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/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-scalar-fp.txt | 12 # FP16: fabs h1, h2 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 [all …]
|
/external/kmod/testsuite/ |
D | test-hash.c | 131 struct hash *h2 = hash_new(8, NULL); in test_hash_iter() local 138 hash_add(h2, k1, v1); in test_hash_iter() 140 hash_add(h2, k2, v2); in test_hash_iter() 142 hash_add(h2, k3, v3); in test_hash_iter() 146 v2 = hash_find(h2, k); in test_hash_iter() 148 hash_del(h2, k); in test_hash_iter() 152 assert_return(hash_get_count(h2) == 0, EXIT_FAILURE); in test_hash_iter() 155 hash_free(h2); in test_hash_iter() 165 struct hash *h2 = hash_new(8, NULL); in test_hash_iter_after_del() local 172 hash_add(h2, k1, v1); in test_hash_iter_after_del() [all …]
|
/external/boringssl/src/crypto/poly1305/ |
D | poly1305.c | 47 uint32_t h0, h1, h2, h3, h4; member 85 state->h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 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() 112 state->h2 = (uint32_t)t[2] & 0x3ffffff; in poly1305_update() 148 state->h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff; in poly1305_update() 193 state->h2 = 0; in CRYPTO_poly1305_init() [all …]
|
/external/libxaac/decoder/generic/ |
D | ixheaacd_qmf_dec_generic.c | 740 WORD32 l1, l2, h2, fft_jmp; in ixheaacd_esbr_radix4bfly() local 755 h2 = index << 1; in ixheaacd_esbr_radix4bfly() 761 x_h2 = &(x[h2]); in ixheaacd_esbr_radix4bfly() 775 x_h2_0 = x[h2]; in ixheaacd_esbr_radix4bfly() 789 x_h2_1 = x[h2 + 1]; in ixheaacd_esbr_radix4bfly() 826 x[h2] = (WORD32)((mul_1 + mul_4) >> 32) << RADIXSHIFT; in ixheaacd_esbr_radix4bfly() 830 x[h2 + 1] = (WORD32)((mul_7 - mul_10) >> 32) << RADIXSHIFT; in ixheaacd_esbr_radix4bfly() 843 WORD32 h2; in ixheaacd_esbr_postradixcompute2() local 865 h2 = *pdig_rev_tbl++ >> 2; in ixheaacd_esbr_postradixcompute2() 885 y0[h2] = n00; in ixheaacd_esbr_postradixcompute2() [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/libyuv/files/unit_test/ |
D | compare_test.cc | 53 uint32 h2 = HashDjb2(src_b, kMaxTest, 5381); in TEST_F() local 54 EXPECT_NE(h1, h2); in TEST_F() 59 h2 = HashDjb2(src_b, kMaxTest, 5381); in TEST_F() 60 EXPECT_NE(h1, h2); in TEST_F() 67 h2 = HashDjb2(src_b, kMaxTest, 5381); in TEST_F() 68 EXPECT_NE(h1, h2); in TEST_F() 73 h2 = HashDjb2(src_b, kMaxTest, 5381); in TEST_F() 74 EXPECT_EQ(h1, h2); in TEST_F() 79 h2 = HashDjb2(src_b, kMaxTest, 1234); in TEST_F() 80 EXPECT_NE(h1, h2); in TEST_F() [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/libxaac/decoder/armv8/ |
D | ixheaacd_qmf_dec_armv8.c | 503 WORD32 l1, l2, h2, fft_jmp; in ixheaacd_esbr_radix4bfly() local 518 h2 = index << 1; in ixheaacd_esbr_radix4bfly() 524 x_h2 = &(x[h2]); in ixheaacd_esbr_radix4bfly() 538 x_h2_0 = x[h2]; in ixheaacd_esbr_radix4bfly() 552 x_h2_1 = x[h2 + 1]; in ixheaacd_esbr_radix4bfly() 589 x[h2] = (WORD32)((mul_1 + mul_4) >> 32) << RADIXSHIFT; in ixheaacd_esbr_radix4bfly() 593 x[h2 + 1] = (WORD32)((mul_7 - mul_10) >> 32) << RADIXSHIFT; in ixheaacd_esbr_radix4bfly() 606 WORD32 h2; in ixheaacd_esbr_postradixcompute2() local 626 h2 = *pdig_rev_tbl++ >> 2; in ixheaacd_esbr_postradixcompute2() 637 y0[h2] = ixheaacd_add32_sat(x_0, x_2); in ixheaacd_esbr_postradixcompute2() [all …]
|
/external/libmojo/mojo/public/cpp/system/tests/ |
D | core_unittest.cc | 65 Handle h2(h0); in TEST() local 66 EXPECT_EQ(static_cast<MojoHandle>(789), h2.value()); in TEST() 68 h2 = h1; in TEST() 69 EXPECT_EQ(static_cast<MojoHandle>(456), h2.value()); in TEST() 74 h2 = Handle(static_cast<MojoHandle>(321)); in TEST() 79 handle_to_int[h2] = 2; in TEST() 87 EXPECT_FALSE(handle_to_int.find(h2) == handle_to_int.end()); in TEST() 88 EXPECT_EQ(2, handle_to_int[h2]); in TEST() 366 ScopedMessagePipeHandle h2; in TEST() local 368 if (CreateMessagePipe(nullptr, &h2, &h3) != MOJO_RESULT_OK) in TEST() [all …]
|
/external/lzma/C/ |
D | LzHash.h | 19 h2 = temp & (kHash2Size - 1); \ 24 h2 = temp & (kHash2Size - 1); \ 31 h2 = temp & (kHash2Size - 1); \ 43 h2 = (p->crc[cur[0]] ^ cur[1]) & (kHash2Size - 1); 47 h2 = temp & (kHash2Size - 1); \ 52 h2 = temp & (kHash2Size - 1); \
|
/external/dtc/tests/ |
D | references.c | 80 uint32_t h1, h2, h4, h5; in main() local 102 h2 = fdt_get_phandle(fdt, n2); in main() 109 if (h2 != 0x1) in main() 111 h2, 0x1); in main() 117 if ((h5 == h4) || (h5 == h2) || (h5 == h1)) in main() 120 check_ref(fdt, n1, h2); in main()
|
/external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/ |
D | op_++int.pass.cpp | 25 std::chrono::hours h2 = h1++; in test_constexpr() local 26 return h1.count() == 4 && h2.count() == 3; in test_constexpr() 34 std::chrono::hours h2 = h1++; in main() local 36 assert(h2.count() == 3); in main()
|
D | op_--int.pass.cpp | 25 std::chrono::hours h2 = h1--; in test_constexpr() local 26 return h1.count() == 2 && h2.count() == 3; in test_constexpr() 35 std::chrono::hours h2 = h1--; in main() local 37 assert(h2.count() == 3); in main()
|
/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>
|
/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/python/cpython2/Lib/test/ |
D | test_hmac.py | 269 h2 = h.copy() 278 h2 = h1.copy() 279 self.assertTrue(h1.digest_cons == h2.digest_cons, 281 self.assertTrue(type(h1.inner) == type(h2.inner), 283 self.assertTrue(type(h1.outer) == type(h2.outer), 289 h2 = h1.copy() 291 self.assertTrue(id(h1) != id(h2), "No real copy of the HMAC instance.") 292 self.assertTrue(id(h1.inner) != id(h2.inner), 294 self.assertTrue(id(h1.outer) != id(h2.outer), 301 h2 = h1.copy() [all …]
|
/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/tensorflow/tensorflow/core/lib/histogram/ |
D | histogram_test.cc | 31 Histogram h2; in Validate() local 32 EXPECT_TRUE(h2.DecodeFromProto(proto_with_zeroes)); in Validate() 33 string s2 = h2.ToString(); in Validate() 136 Histogram h2; in TEST() local 137 EXPECT_TRUE(h2.DecodeFromProto(tsh_proto)); in TEST() 142 EXPECT_EQ(h2.ToString(), tsh2.ToString()); in TEST()
|