Searched defs:h3 (Results 1 - 25 of 35) sorted by relevance

12

/external/clang/test/PCH/Inputs/
H A Dchain-macro-override1.h8 #define h3() macro
9 #undef h3 macro
/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/Parser/
H A Dattributes.c40 void (*h3)(void (*f3)(__attribute__(()) x)); // expected-warning {{defaults to 'int'}} variable
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1229.js99 function h3(z2, y2, x2) { function
124 invoke(h3, [8, 6, 4]);
/external/clang/test/Sema/
H A Dconstant-builtins.c20 int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f(); variable
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
/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/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/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/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/chromium_org/third_party/boringssl/src/include/openssl/
H A Dsha.h101 uint32_t h0, h1, h2, h3, h4; member in struct:sha_state_st
/external/chromium_org/third_party/smhasher/src/
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...]
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...]
/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;
H A Drect_unittest.cc91 int h3; member in struct:gfx::__anon16846
115 Rect r3(tests[i].x3, tests[i].y3, tests[i].w3, tests[i].h3);
137 int h3; member in struct:gfx::Test
164 Rect r3(tests[i].x3, tests[i].y3, tests[i].w3, tests[i].h3);
195 int h3; member in struct:gfx::Test
216 Rect r3(tests[i].x3, tests[i].y3, tests[i].w3, tests[i].h3);
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-back-references.cpp62 PInt3Func h3(PInt3Func x, PInt3Func y, int* z) { return 0; } function
63 // CHECK: "\01?h3@@YAP6APAHPAH0@ZP6APAH00@Z10@Z"
H A Dstatic-init.cpp41 void h3() { function
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp38 void h3() { consume((A){}); } function in namespace:PointerToArrayDecay
H A Dreturn-noreturn.cpp92 int h3(int x) { function in namespace:abort_struct_complex_cfgs
/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/openssl/crypto/sha/
H A Dsha.h102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
/external/openssl/include/openssl/
H A Dsha.h102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
/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/skia/src/utils/
H A DSkPatchUtils.cpp84 SkScalar h3 = h2 * h; local
86 fFwDiff[3].set(6.f * fCoefs[0].x() * h3, 6.f * fCoefs[0].y() * h3); //6ah^3
89 fFwDiff[1].set(fCoefs[0].x() * h3 + fCoefs[1].x() * h2 + fCoefs[2].x() * h,//ah^3 + bh^2 +ch
90 fCoefs[0].y() * h3 + fCoefs[1].y() * h2 + fCoefs[2].y() * h);

Completed in 581 milliseconds

12