Searched refs:h3 (Results 1 - 25 of 117) sorted by relevance

12345

/external/clang/test/PCH/
H A Dchain-macro-override.c14 h3();
/external/clang/test/PCH/Inputs/
H A Dchain-macro-override1.h8 #define h3() macro
9 #undef h3 macro
H A Dchain-macro-override2.h8 int h3();
/external/chromium_org/third_party/smhasher/src/
H A DSpooky.h169 uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3,
174 h0 += h2; h3 ^= h0; h2 = Rot64(h2,15);
175 h1 += h3; h4 ^= h1; h3 = Rot64(h3,34);
177 h3 += h5; h6 ^= h3; h5 = Rot64(h5,38);
188 uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3,
192 EndPartial(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
193 EndPartial(h0,h1,h2,h3,h
168 EndPartial( uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3, uint64 &h4, uint64 &h5, uint64 &h6, uint64 &h7, uint64 &h8, uint64 &h9, uint64 &h10,uint64 &h11) argument
187 End( uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3, uint64 &h4, uint64 &h5, uint64 &h6, uint64 &h7, uint64 &h8, uint64 &h9, uint64 &h10,uint64 &h11) argument
212 ShortMix(uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3) argument
240 ShortEnd(uint64 &h0, uint64 &h1, uint64 &h2, uint64 &h3) argument
[all...]
H A DMurmurHash3.cpp158 uint32_t h3 = seed; local
184 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747;
186 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
188 h3 = ROTL32(h3,15); h3 += h4; h3 = h3*5+0x96cd1c35;
216 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
234 h1 ^= len; h2 ^= len; h3
[all...]
H A DSpooky.cpp135 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; local
146 h0=h3=h6=h9 = *hash1;
158 Mix(u.p64, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
167 Mix(buf, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
177 Mix(buf, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
180 End(h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11);
200 uint64 h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11; local
223 h0=h3=h6=h9 = m_state[0];
232 h3 = m_state[3];
250 Mix(u.p64, h0,h1,h2,h3,h
317 uint64 h3 = m_state[3]; local
[all...]
/external/clang/test/Sema/
H A Dwarn-missing-prototypes.c18 int h3();
24 int h3(int x);
29 int h3(int x) { return x; } // expected-warning{{no previous prototype for function 'h3'}} function
H A Dconstant-builtins.c20 int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f(); variable
/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h30 int h3 = 0; local
31 h3 = in/h3;
32 h3++;
/external/wpa_supplicant_8/hs20/server/www/
H A Dfree-remediation.php7 <h3>Hotspot 2.0 - public and free hotspot</h3>
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.cpp158 uint32_t h3 = seed; local
184 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747;
186 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
188 h3 = ROTL32(h3,15); h3 += h4; h3 = h3*5+0x96cd1c35;
216 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
234 h1 ^= len; h2 ^= len; h3
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dhash.h147 uint32_t h3 = seed; local
173 h2 = hash_rotl_32(h2, 17); h2 += h3;
176 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
178 h3 = hash_rotl_32(h3, 15); h3 += h4;
179 h3 = h3*5 + 0x96cd1c35;
206 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
223 h1 ^= len; h2 ^= len; h3
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305.c65 uint32_t h0, h1, h2, h3, h4; member in struct:poly1305_state_st
99 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
104 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) +
107 mul32x32_64(state->h2, state->s4) + mul32x32_64(state->h3, state->s3) +
110 mul32x32_64(state->h2, state->r0) + mul32x32_64(state->h3, state->s4) +
113 mul32x32_64(state->h2, state->r1) + mul32x32_64(state->h3, state->r0) +
116 mul32x32_64(state->h2, state->r2) + mul32x32_64(state->h3, state->r1) +
128 state->h3 = (uint32_t)t[3] & 0x3ffffff;
158 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
203 state->h3
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLErrors.cpp99 RefPtrWillBeRawPtr<Element> h3 = doc->createElement(h3Tag, true); local
100 reportElement->parserAppendChild(h3.get());
101 h3->parserAppendChild(doc->createTextNode("This page contains the following errors:"));
111 h3 = doc->createElement(h3Tag, true);
112 reportElement->parserAppendChild(h3.get());
113 h3->parserAppendChild(doc->createTextNode("Below is a rendering of the page up to the first error."));
/external/chromium_org/ui/events/
H A Devent_dispatcher_unittest.cc231 TestEventHandler h1(1), h2(2), h3(3), h4(4);
239 child.AddPreTargetHandler(&h3);
244 h3.set_expect_pre_target(true);
459 TestEventHandler h3(3);
463 target.AddPreTargetHandler(&h3);
467 // |h3| should not receive events as the target will be invalidated.
468 h3.set_expect_pre_target(false);
500 TestEventHandler* h3 = new TestEventHandler(3); local
501 EventHandlerDestroyer handle_destroyer(2, h3);
505 target.AddPreTargetHandler(h3);
529 TestEventHandler* h3 = new TestEventHandler(3); local
557 TestEventHandler* h3 = new TestEventHandler(3); local
586 TestEventHandler* h3 = new TestEventHandler(3); local
[all...]
/external/chromium_org/cc/base/
H A Dmath_util.cc184 HomogeneousCoordinate h3 = ProjectHomogeneousPoint(transform, q.p3()); local
187 return ComputeEnclosingClippedRect(h1, h2, h3, h4);
233 HomogeneousCoordinate h3 = local
260 if (h2.ShouldBeClipped() ^ h3.ShouldBeClipped()) {
262 ComputeClippedPointForEdge(h2, h3).CartesianPoint2d(),
267 if (!h3.ShouldBeClipped()) {
269 h3.CartesianPoint2d(), clipped_quad, num_vertices_in_clipped_quad);
272 if (h3.ShouldBeClipped() ^ h4.ShouldBeClipped()) {
274 ComputeClippedPointForEdge(h3, h4).CartesianPoint2d(),
302 HomogeneousCoordinate h3 local
382 ComputeEnclosingClippedRect( const HomogeneousCoordinate& h1, const HomogeneousCoordinate& h2, const HomogeneousCoordinate& h3, const HomogeneousCoordinate& h4) argument
480 HomogeneousCoordinate h3 = local
516 HomogeneousCoordinate h3 = local
[all...]
/external/chromium_org/mojo/public/cpp/system/tests/
H A Dcore_unittest.cc66 Handle h3; local
71 handle_to_int[h3] = 3;
80 EXPECT_FALSE(handle_to_int.find(h3) == handle_to_int.end());
81 EXPECT_EQ(3, handle_to_int[h3]);
303 ScopedMessagePipeHandle h3; local
304 CreateMessagePipe(NULL, &h2, &h3);
306 // Write a message to |h2|, before we send |h3|.
314 // And also a message to |h3|.
316 WriteMessageRaw(h3.get(),
321 // Send |h3| ove
350 ScopedMessagePipeHandle h3; local
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
H A Dchrome_shared.css28 h3 {
44 h3 {
/external/chromium_org/chrome/third_party/chromevox/chromevox/background/
H A Dchrome_shared2.css30 h3 {
46 h3 {
/external/chromium_org/ui/gfx/geometry/
H A Dcubic_bezier.cc22 const double h3 = p1_times_3; local
25 return t * (t * (t * h1 + h2) + h3);
31 const double h3 = 3.0 * p1; local
32 return t * (t * h1 + h2) + h3;
/external/chromium_org/ui/webui/resources/css/
H A Dchrome_shared.css38 h3 {
54 h3 {
/external/clang/test/OpenMP/
H A Dsimd_metadata.c28 void h3(float *c, float *a, float *b, int size) function
30 // CHECK-LABEL: define void @h3
49 // Metadata for h3:
/external/clang/test/SemaCXX/
H A Dattr-format.cpp15 const char* h3(const char*) __attribute__((format_arg(1))); // \
/external/valgrind/main/docs/lib/
H A Dvg_basic.css16 h1, h2, h3, h4 { color: #74240f; }
17 h3 { margin-bottom: 0.4em; }
/external/chromium_org/chrome/browser/resources/media/
H A Dwebrtc_logs.css29 #log-list h3 {

Completed in 5031 milliseconds

12345