Home
last modified time | relevance | path

Searched refs:h1 (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/external/clang/test/CodeGen/
Dfp16-ops.c6 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
19 test = (!h1); in foo()
23 h1 = -h1; in foo()
26 h1 = +h1; in foo()
30 h1++; in foo()
34 ++h1; in foo()
38 --h1; in foo()
42 h1--; in foo()
49 h1 = h0 * h2; in foo()
55 h1 = h0 * (__fp16) -2.0; in foo()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dhash.h93 uint32_t h1 = seed; in hash_x86_32() local
110 h1 ^= k1; in hash_x86_32()
111 h1 = hash_rotl_32(h1, 13); in hash_x86_32()
112 h1 = h1*5 + 0xe6546b64; in hash_x86_32()
126 k1 *= c2; h1 ^= k1; in hash_x86_32()
131 h1 ^= len; in hash_x86_32()
133 h1 = hash_fmix_32(h1); in hash_x86_32()
135 return (h1); in hash_x86_32()
145 uint32_t h1 = seed; in hash_x86_128() local
166 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1; in hash_x86_128()
[all …]
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
DMurmurHash3.cpp100 uint32_t h1 = seed; in MurmurHash3_x86_32() local
118 h1 ^= k1; in MurmurHash3_x86_32()
119 h1 = ROTL32(h1,13); in MurmurHash3_x86_32()
120 h1 = h1*5+0xe6546b64; in MurmurHash3_x86_32()
135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; in MurmurHash3_x86_32()
141 h1 ^= len; in MurmurHash3_x86_32()
143 h1 = fmix(h1); in MurmurHash3_x86_32()
145 *(uint32_t*)out = h1; in MurmurHash3_x86_32()
156 uint32_t h1 = seed; in MurmurHash3_x86_128() local
178 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; in MurmurHash3_x86_128()
[all …]
/external/chromium_org/third_party/smhasher/src/
DMurmurHash3.cpp100 uint32_t h1 = seed; in MurmurHash3_x86_32() local
118 h1 ^= k1; in MurmurHash3_x86_32()
119 h1 = ROTL32(h1,13); in MurmurHash3_x86_32()
120 h1 = h1*5+0xe6546b64; in MurmurHash3_x86_32()
135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; in MurmurHash3_x86_32()
141 h1 ^= len; in MurmurHash3_x86_32()
143 h1 = fmix32(h1); in MurmurHash3_x86_32()
145 *(uint32_t*)out = h1; in MurmurHash3_x86_32()
156 uint32_t h1 = seed; in MurmurHash3_x86_128() local
178 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; in MurmurHash3_x86_128()
[all …]
DSpooky.h169 uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3, in EndPartial() argument
173 h11+= h1; h2 ^= h11; h1 = Rot64(h1,44); in EndPartial()
175 h1 += h3; h4 ^= h1; h3 = Rot64(h3,34); in EndPartial()
184 h10+= h0; h1 ^= h10; h0 = Rot64(h0,54); in EndPartial()
188 uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3, in End() argument
192 EndPartial(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11); in End()
193 EndPartial(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11); in End()
194 EndPartial(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11); in End()
212 static INLINE void ShortMix(uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3) in ShortMix() argument
215 h3 = Rot64(h3,52); h3 += h0; h1 ^= h3; in ShortMix()
[all …]
DPMurHash.c150 #define DOBLOCK(h1, k1) do{ \ argument
155 h1 ^= k1; \
156 h1 = ROTL32(h1,13); \
157 h1 = h1*5+0xe6546b64; \
163 #define DOBYTES(cnt, h1, c, n, ptr, len) do{ \ argument
169 DOBLOCK(h1, c); \
180 uint32_t h1 = *ph1; in PMurHash32_Process() local
195 DOBYTES(i, h1, c, n, ptr, len); in PMurHash32_Process()
202 DOBLOCK(h1, k1); in PMurHash32_Process()
211 DOBYTES(i, h1, c, n, ptr, len); in PMurHash32_Process()
[all …]
DSpooky.cpp135 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; in Hash128() local
147 h1=h4=h7=h10 = *hash2; in Hash128()
158 Mix(u.p64, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11); in Hash128()
167 Mix(buf, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11); in Hash128()
177 Mix(buf, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11); in Hash128()
180 End(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11); in Hash128()
182 *hash2 = h1; in Hash128()
200 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; in Update() local
224 h1=h4=h7=h10 = m_state[1]; in Update()
230 h1 = m_state[1]; in Update()
[all …]
DDifferentialTest.h104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int s… in DiffTestRecurse() argument
115 if(h1 == h2) in DiffTestRecurse()
122 DiffTestRecurse(hash,k1,k2,h1,h2,i+1,bitsleft,diffs); in DiffTestRecurse()
147 hashtype h1,h2; in DiffTest() local
159 hash(&k1,sizeof(k1),0,(uint32_t*)&h1); in DiffTest()
161 DiffTestRecurse<keytype,hashtype>(hash,k1,k2,h1,h2,0,diffbits,diffs); in DiffTest()
255 hashtype h1,h2; in DiffDistTest2() local
267 hash(&k,sizeof(keytype),0,&h1); in DiffDistTest2()
271 hashes[i] = h1 ^ h2; in DiffDistTest2()
DMurmurHash2.cpp147 uint32_t h1 = uint32_t(seed) ^ len; in MurmurHash64B() local
156 h1 *= m; h1 ^= k1; in MurmurHash64B()
169 h1 *= m; h1 ^= k1; in MurmurHash64B()
181 h1 ^= h2 >> 18; h1 *= m; in MurmurHash64B()
182 h2 ^= h1 >> 22; h2 *= m; in MurmurHash64B()
183 h1 ^= h2 >> 17; h1 *= m; in MurmurHash64B()
184 h2 ^= h1 >> 19; h2 *= m; in MurmurHash64B()
186 uint64_t h = h1; in MurmurHash64B()
/external/guava/guava/src/com/google/common/hash/
DMurmur3_32HashFunction.java45 int h1; field in Murmur3_32HashFunction.Murmur3_32Hasher
52 h1 = seed; in Murmur3_32Hasher()
63 h1 ^= k1; in process()
64 h1 = Integer.rotateLeft(h1, 13); in process()
65 h1 = h1 * 5 + 0xe6546b64; in process()
85 h1 ^= k1; in processRemaining()
90 h1 ^= len; in makeHash()
92 h1 ^= h1 >>> 16; in makeHash()
93 h1 *= 0x85ebca6b; in makeHash()
94 h1 ^= h1 >>> 13; in makeHash()
[all …]
DMurmur3_128HashFunction.java47 long h1; field in Murmur3_128HashFunction.Murmur3_128Hasher
55 h1 = seed; in Murmur3_128Hasher()
70 h1 ^= k1; in bmix64()
72 h1 = Long.rotateLeft(h1, 27); in bmix64()
73 h1 += h2; in bmix64()
74 h1 = h1 * 5 + 0x52dce729; in bmix64()
82 h2 += h1; in bmix64()
129 h1 ^= k1; in processRemaining()
136 h1 ^= len; in makeHash()
139 h1 += h2; in makeHash()
[all …]
/external/chromium_org/mojo/public/cpp/system/tests/
Dcore_unittest.cc35 Handle h1(static_cast<MojoHandle>(123)); in TEST() local
36 EXPECT_EQ(static_cast<MojoHandle>(123), h1.value()); in TEST()
37 EXPECT_EQ(static_cast<MojoHandle>(123), *h1.mutable_value()); in TEST()
38 EXPECT_TRUE(h1.is_valid()); in TEST()
39 *h1.mutable_value() = static_cast<MojoHandle>(456); in TEST()
40 EXPECT_EQ(static_cast<MojoHandle>(456), h1.value()); in TEST()
41 EXPECT_TRUE(h1.is_valid()); in TEST()
43 h1.swap(h0); in TEST()
46 EXPECT_FALSE(h1.is_valid()); in TEST()
48 h1.set_value(static_cast<MojoHandle>(789)); in TEST()
[all …]
/external/chromium_org/third_party/polymer/components-chromium/core-animated-pages/transitions/
Dhero-transition-extracted.js33 h.h1.style[TRANSITION_NAME] = wt.join(', ');
34 h.h1.style.borderRadius = h.r1;
35 h.h1.style[TRANSFORM_NAME] = 'none';
75 var h1 = this.findInShadows(dst, ds);
77 if (!h1 && dst.selectedItem) {
78 h1 = this.findInShadows(dst.selectedItem, ds);
84 if (v && h1) {
86 var c1 = getComputedStyle(h1);
91 h1: h1, property
92 b1: h1.getBoundingClientRect(),
[all …]
/external/chromium_org/third_party/libyuv/unit_test/
Dcompare_test.cc51 uint32 h1 = HashDjb2(src_a, kMaxTest, 5381); in TEST_F() local
53 EXPECT_NE(h1, h2); in TEST_F()
57 h1 = HashDjb2(src_a, kMaxTest, 5381); in TEST_F()
59 EXPECT_NE(h1, h2); in TEST_F()
65 h1 = HashDjb2(src_a, kMaxTest, 5381); in TEST_F()
67 EXPECT_NE(h1, h2); in TEST_F()
71 h1 = HashDjb2(src_a, kMaxTest, 5381); in TEST_F()
73 EXPECT_EQ(h1, h2); in TEST_F()
77 h1 = HashDjb2(src_a, kMaxTest, 5381); in TEST_F()
79 EXPECT_NE(h1, h2); in TEST_F()
[all …]
/external/iproute2/misc/
Dnstat.c268 struct nstat_ent *h1; in dump_kern_db() local
271 for (h1 = h; h1; h1 = h1->next) { in dump_kern_db()
272 if (strcmp(h1->id, n->id) == 0) { in dump_kern_db()
273 val = h1->val; in dump_kern_db()
274 h = h1->next; in dump_kern_db()
291 struct nstat_ent *h1; in dump_incr_db() local
292 for (h1 = h; h1; h1 = h1->next) { in dump_incr_db()
293 if (strcmp(h1->id, n->id) == 0) { in dump_incr_db()
294 if (val < h1->val) { in dump_incr_db()
296 val = h1->val; in dump_incr_db()
[all …]
Difstat.c223 struct ifstat_ent *h1; in dump_raw_db() local
226 for (h1 = h; h1; h1 = h1->next) { in dump_raw_db()
227 if (h1->ifindex == n->ifindex) { in dump_raw_db()
228 vals = h1->val; in dump_raw_db()
229 rates = h1->rate; in dump_raw_db()
230 h = h1->next; in dump_raw_db()
401 struct ifstat_ent *h1; in dump_incr_db() local
405 for (h1 = h; h1; h1 = h1->next) { in dump_incr_db()
406 if (h1->ifindex == n->ifindex) { in dump_incr_db()
408 vals[i] -= h1->val[i]; in dump_incr_db()
[all …]
/external/chromium_org/ui/events/
Devent_dispatcher_unittest.cc231 TestEventHandler h1(1), h2(2), h3(3), h4(4); in TEST() local
236 parent.AddPreTargetHandler(&h1); in TEST()
242 h1.set_expect_pre_target(true); in TEST()
276 h1.set_event_result(ER_HANDLED); in TEST()
295 h1.set_event_result(ER_UNHANDLED); in TEST()
310 h1.set_event_result(ER_CONSUMED); in TEST()
352 TestEventHandler h1(1), h2(2); in TEST() local
354 target.AddPreTargetHandler(&h1); in TEST()
358 h1.set_expect_pre_target(true); in TEST()
379 TestEventHandler h1(1), h2(2); in TEST() local
[all …]
/external/markdown/docs/extensions/
DHeaderId.txt8 elements (h1-h6) in markdown's output.
26 <h1 id="header1">Header 1</h1>
42 <h1 id="header">Header</h1>
43 <h1 id="header_1">Another Header</h1>
44 <h1 id="header_2">Third Header</h1>
80 <h1>Some Header</h1>
81 <h1 id="foo">Header with ID</h1>
/external/chromium_org/mojo/public/c/system/tests/
Dcore_unittest.cc25 MojoHandle h0, h1; in TEST() local
72 h1 = MOJO_HANDLE_INVALID; in TEST()
74 MojoDuplicateBufferHandle(h0, NULL, &h1)); in TEST()
80 MojoHandle h0, h1; in TEST() local
86 h1 = MOJO_HANDLE_INVALID; in TEST()
87 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(NULL, &h0, &h1)); in TEST()
89 EXPECT_NE(h1, MOJO_HANDLE_INVALID); in TEST()
111 h1, kHello, buffer_size, NULL, 0, MOJO_WRITE_MESSAGE_FLAG_NONE)); in TEST()
138 h1, MOJO_HANDLE_SIGNAL_READABLE | MOJO_HANDLE_SIGNAL_WRITABLE, 1000)); in TEST()
140 EXPECT_EQ(MOJO_RESULT_OK, MojoClose(h1)); in TEST()
[all …]
/external/chromium_org/components/onc/docs/
Donc_spec.css55 h1{font-size: 38px} selector
56 section h1{font-size: 32px}
57 section section h1{font-size: 28px}
58 section section section h1{font-size: 24px}
59 section section section section h1{font-size: 20px}
60 section section section section section h1{font-size: 18px}
61 section section section section section section h1{font-size: 16px}
62 section section section section section section section h1{font-size: 14px}
/external/chromium_org/v8/test/mjsunit/compiler/
Dinline-arity-mismatch.js40 function h1(a, b) { function
51 assertEquals(4, h1(o, o));
52 assertEquals(4, h1(o, o));
55 %OptimizeFunctionOnNextCall(h1);
57 assertEquals(4, h1(o, o));
61 assertEquals(2, h1(u, o));
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
Dpoly1305.c65 uint32_t h0, h1, h2, h3, h4; member
97 state->h1 += ((((uint64_t)t1 << 32) | t0) >> 26) & 0x3ffffff; in poly1305_update()
103 t[0] = mul32x32_64(state->h0, state->r0) + mul32x32_64(state->h1, state->s4) + in poly1305_update()
106 t[1] = mul32x32_64(state->h0, state->r1) + mul32x32_64(state->h1, state->r0) + in poly1305_update()
109 t[2] = mul32x32_64(state->h0, state->r2) + mul32x32_64(state->h1, state->r1) + in poly1305_update()
112 t[3] = mul32x32_64(state->h0, state->r3) + mul32x32_64(state->h1, state->r2) + in poly1305_update()
115 t[4] = mul32x32_64(state->h0, state->r4) + mul32x32_64(state->h1, state->r3) + in poly1305_update()
122 state->h1 = (uint32_t)t[1] & 0x3ffffff; in poly1305_update()
156 state->h1 += ((((uint64_t)t1 << 32) | t0) >> 26) & 0x3ffffff; in poly1305_update()
201 state->h1 = 0; in CRYPTO_poly1305_init()
[all …]
/external/chromium_org/cc/base/
Dmath_util.cc63 const HomogeneousCoordinate& h1, in ComputeClippedPointForEdge() argument
80 DCHECK_NE(h2.w(), h1.w()); in ComputeClippedPointForEdge()
83 DCHECK(h1.ShouldBeClipped() ^ h2.ShouldBeClipped()); in ComputeClippedPointForEdge()
87 SkMScalar t = (w - h1.w()) / (h2.w() - h1.w()); in ComputeClippedPointForEdge()
89 SkMScalar x = (SK_MScalar1 - t) * h1.x() + t * h2.x(); in ComputeClippedPointForEdge()
90 SkMScalar y = (SK_MScalar1 - t) * h1.y() + t * h2.y(); in ComputeClippedPointForEdge()
91 SkMScalar z = (SK_MScalar1 - t) * h1.z() + t * h2.z(); in ComputeClippedPointForEdge()
182 HomogeneousCoordinate h1 = ProjectHomogeneousPoint(transform, q.p1()); in ProjectClippedRect() local
187 return ComputeEnclosingClippedRect(h1, h2, h3, h4); in ProjectClippedRect()
229 HomogeneousCoordinate h1 = in MapClippedQuad() local
[all …]
/external/lldb/www/
Dsidebar.incl4 <h1 class="headerbar">Goals and Status</h1>
15 <h1 class="headerbar">Use and Extension</h1>
32 <h1 class="headerbar">Mailing&nbsp;Lists</h1>
41 <h1 class="headerbar">Resources</h1>
/external/markdown/MarkdownTest/Tests_2004/
DLinks-in-Headers.text-out3 <h1>An underlined header</h1>
5 <h1>A header with a <a href="http://www.link.com">link</a></h1>

12345678910>>...15