HomeSort by relevance Sort by last modified time
    Searched refs:h3 (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/clang/test/PCH/
chain-macro-override.c 14 h3();
  /external/clang/test/PCH/Inputs/
chain-macro-override1.h 8 #define h3() macro
9 #undef h3 macro
chain-macro-override2.h 8 int h3();
  /external/chromium_org/third_party/smhasher/src/
Spooky.h 169 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,h4,h5,h6,h7,h8,h9,h10,h11)
    [all...]
MurmurHash3.cpp 158 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 ^= len; h4 ^= len
    [all...]
Spooky.cpp 135 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,h4,h5,h6,h7,h8,h9,h10,h11)
317 uint64 h3 = m_state[3]; local
    [all...]
  /external/clang/test/Sema/
warn-missing-prototypes.c 18 int h3();
24 int h3(int x);
29 int h3(int x) { return x; } // expected-warning{{no previous prototype for function 'h3'}} function
constant-builtins.c 20 int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f(); variable
  /external/clang/test/Analysis/diagnostics/Inputs/include/
report-issues-within-main-file.h 30 int h3 = 0; local
31 h3 = in/h3;
32 h3++;
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 158 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 ^= len; h4 ^= len
    [all...]
  /external/jemalloc/include/jemalloc/internal/
hash.h 147 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 ^= len; h4 ^= len
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/poly1305/
poly1305.c 65 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 = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLErrors.cpp 99 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/
event_dispatcher_unittest.cc 231 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/
math_util.cc 184 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
480 HomogeneousCoordinate h3 = local
516 HomogeneousCoordinate h3 = local
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-ia64.pl 33 ($h0,$h1,$h2,$h3,$h4) = ("h0","h1","h2","h3","h4");
41 ($h0,$h1,$h2,$h3,$h4) = ("loc5","loc6","loc7","loc8","loc9");
180 add $h3=$h3,$c };; // wrap up
255 { .mlx; ld4 $h3=[tmp0]
269 mov $D=$h3
296 st4 [tmp0]=$h3 };;
  /external/chromium_org/mojo/public/cpp/system/tests/
core_unittest.cc 66 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| over |h1| to |h0|
350 ScopedMessagePipeHandle h3; local
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
yui-3.3.0-reset-min.css 8 html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;fon (…)
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
chrome_shared.css 28 h3 {
44 h3 {
  /external/chromium_org/chrome/third_party/chromevox/chromevox/background/
chrome_shared2.css 30 h3 {
46 h3 {
  /external/chromium_org/ui/gfx/geometry/
cubic_bezier.cc 22 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/
chrome_shared.css 38 h3 {
54 h3 {
  /external/clang/test/OpenMP/
simd_metadata.c 28 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/
attr-format.cpp 15 const char* h3(const char*) __attribute__((format_arg(1))); // \
  /external/chromium_org/chrome/browser/resources/media/
webrtc_logs.css 29 #log-list h3 {

Completed in 1221 milliseconds

1 2 3 4 5 6