Searched refs:h1 (Results 1 - 25 of 289) sorted by relevance

1234567891011>>

/external/clang/test/Modules/
H A Ddeclare-use2.cpp7 const int h2 = h1+e+f;
/external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
H A Dop_++int.pass.cpp24 std::chrono::hours h1(3);
25 std::chrono::hours h2 = h1++;
26 return h1.count() == 4 && h2.count() == 3;
33 std::chrono::hours h1(3);
34 std::chrono::hours h2 = h1++;
35 assert(h1.count() == 4);
H A Dop_--int.pass.cpp24 std::chrono::hours h1(3);
25 std::chrono::hours h2 = h1--;
26 return h1.count() == 2 && h2.count() == 3;
34 std::chrono::hours h1(3);
35 std::chrono::hours h2 = h1--;
36 assert(h1.count() == 2);
/external/clang/test/CodeGen/
H A Dfp16-ops.c16 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
38 test = (!h1);
44 h1 = -h1;
49 h1 = +h1;
54 h1++;
59 ++h1;
64 --h1;
69 h1
[all...]
H A Dcfi-icall-cross-dso.c59 Fn h1() { function
/external/clang/test/Modules/Inputs/declare-use/
H A Dh.h5 #include "h1.h"
6 const int h1 = aux_h*c*7*d; variable
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_32HashFunction.java86 int h1 = mixH1(seed, k1);
88 return fmix(h1, Ints.BYTES);
96 int h1 = mixH1(seed, k1);
99 h1 = mixH1(h1, k1);
101 return fmix(h1, Longs.BYTES);
106 int h1 = seed;
112 h1 = mixH1(h1, k1);
119 h1
132 mixH1(int h1, int k1) argument
140 fmix(int h1, int length) argument
152 private int h1; field in class:Murmur3_32HashFunction.Murmur3_32Hasher
[all...]
H A DMurmur3_128HashFunction.java82 private long h1; field in class:Murmur3_128HashFunction.Murmur3_128Hasher
88 this.h1 = seed;
101 h1 ^= mixK1(k1);
103 h1 = Long.rotateLeft(h1, 27);
104 h1 += h2;
105 h1 = h1 * 5 + 0x52dce729;
110 h2 += h1;
154 h1
[all...]
/external/fio/crc/
H A Dmurmur3.c24 const uint32_t c2, uint32_t h1)
39 h1 ^= k1;
42 return fmix32(h1 ^ len);
49 uint32_t h1 = seed; local
62 h1 ^= k1;
63 h1 = rotl32(h1, 13);
64 h1 = h1 * 5 + 0xe6546b64;
67 return murmur3_tail(data, nblocks, len, c1, c2, h1);
22 murmur3_tail(const uint8_t *data, const int nblocks, uint32_t len, const uint32_t c1, const uint32_t c2, uint32_t h1) argument
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dhash.h110 uint32_t h1 = seed; local
127 h1 ^= k1;
128 h1 = hash_rotl_32(h1, 13);
129 h1 = h1*5 + 0xe6546b64;
143 k1 *= c2; h1 ^= k1;
148 h1 ^= len;
150 h1 = hash_fmix_32(h1);
162 uint32_t h1 = seed; local
264 uint64_t h1 = seed; local
[all...]
/external/llvm/test/MC/AArch64/
H A Darm64-v128_lo-diagnostics.s7 sqrdmulh h0, h1, v16.h[0]
H A Dfullfp16-diagnostics.s44 fmla h0, h1, v16.h[3]
48 // CHECK-NEXT: fmla h0, h1, v16.h[3]
54 fmls h0, h1, v16.h[3]
58 // CHECK-NEXT: fmls h0, h1, v16.h[3]
64 fmul h0, h1, v16.h[3]
68 // CHECK-NEXT: fmul h0, h1, v16.h[3]
74 fmulx h0, h1, v16.h[3]
78 // CHECK-NEXT: fmulx h0, h1, v16.h[3]
H A Dneon-scalar-by-elem-saturating-mul.s6 sqdmull s1, h1, v1.h[1]
15 // CHECK: sqdmull s1, h1, v1.h[1] // encoding: [0x21,0xb0,0x51,0x5f]
27 sqdmulh h0, h1, v0.h[0]
33 // CHECK: sqdmulh h0, h1, v0.h[0] // encoding: [0x20,0xc0,0x40,0x5f]
44 sqrdmulh h1, h1, v1.h[4]
50 // CHECK: sqrdmulh h1, h1, v1.h[4] // encoding: [0x21,0xd8,0x41,0x5f]
H A Darm64-fp-encoding.s10 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, h
[all...]
/external/libcxx/test/libcxx/utilities/function.objects/unord.hash/
H A Dmurmur2_or_cityhash_ubsan_unsigned_overflow_ignored.pass.cpp25 Hash32 h1; local
27 DoNotOptimize(h1(key, i));
/external/python/cpython2/Lib/json/tests/
H A Dtest_separators.py35 h1 = self.loads(d1)
38 self.assertEqual(h1, h)
/external/libmojo/mojo/public/cpp/system/tests/
H A Dcore_unittest.cc44 Handle h1(static_cast<MojoHandle>(123));
45 EXPECT_EQ(static_cast<MojoHandle>(123), h1.value());
46 EXPECT_EQ(static_cast<MojoHandle>(123), *h1.mutable_value());
47 EXPECT_TRUE(h1.is_valid());
48 *h1.mutable_value() = static_cast<MojoHandle>(456);
49 EXPECT_EQ(static_cast<MojoHandle>(456), h1.value());
50 EXPECT_TRUE(h1.is_valid());
52 h1.swap(h0);
55 EXPECT_FALSE(h1.is_valid());
57 h1
177 ScopedMessagePipeHandle h1; local
237 ScopedMessagePipeHandle h1; local
362 ScopedMessagePipeHandle h1; local
416 ScopedMessagePipeHandle h1; local
492 ScopedSharedBufferHandle h1 = local
[all...]
/external/vboot_reference/cgpt/
H A Dcgpt_legacy.c13 GptHeader *h1, *h2; local
22 h1 = (GptHeader *)drive.gpt.primary_header;
25 memcpy(h1->signature, GPT_HEADER_SIGNATURE, GPT_HEADER_SIGNATURE_SIZE);
31 memcpy(h1->signature, GPT_HEADER_SIGNATURE2, GPT_HEADER_SIGNATURE_SIZE);
/external/dtc/tests/
H A Dreferences.c80 uint32_t h1, h2, h4, h5; local
101 h1 = fdt_get_phandle(fdt, n1);
106 if (h1 != 0x2000)
108 h1, 0x2000);
117 if ((h5 == h4) || (h5 == h2) || (h5 == h1))
121 check_ref(fdt, n2, h1);
/external/libmojo/mojo/public/c/system/tests/
H A Dcore_unittest.cc33 MojoHandle h0, h1; local
82 h1 = MOJO_HANDLE_INVALID;
84 MojoDuplicateBufferHandle(h0, nullptr, &h1));
90 MojoHandle h0, h1; local
96 h1 = MOJO_HANDLE_INVALID;
97 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(nullptr, &h0, &h1));
99 EXPECT_NE(h1, MOJO_HANDLE_INVALID);
124 // Write to |h1|.
127 EXPECT_EQ(MOJO_RESULT_OK, MojoWriteMessage(h1, kHello, buffer_size, nullptr,
160 MojoWait(h1, MOJO_HANDLE_SIGNAL_PEER_CLOSE
291 MojoHandle h0, h1; local
[all...]
/external/boringssl/src/ssl/test/runner/poly1305/
H A Dsum_amd64.s9 #define POLY1305_ADD(msg, h0, h1, h2) \
11 ADCQ 8(msg), h1; \
15 #define POLY1305_MUL(h0, h1, h2, r0, r1, t0, t1, t2, t3) \
21 MULQ h1; \
36 MULQ h1; \
43 MOVQ t1, h1; \
49 ADCQ t3, h1; \
54 ADCQ t3, h1; \
73 XORQ R9, R9 // h1
/external/libnl/doc/stylesheets/
H A Dasciidoc-manpage.css2 h1 {
/external/python/cpython3/Lib/test/test_json/
H A Dtest_separators.py35 h1 = self.loads(d1)
38 self.assertEqual(h1, h)
/external/python/cpython3/Modules/_decimal/tests/
H A Dbignum.py39 h1 = xhash(coeff, -849999999) variable
42 assert h2 == h1
/external/wayland/doc/publican/sources/css/
H A Dbrand.css2 h1, h2, h3, h4, h5, h6,

Completed in 1408 milliseconds

1234567891011>>