HomeSort by relevance Sort by last modified time
    Searched defs:h4 (Results 1 - 21 of 21) sorted by null

  /external/clang/test/Parser/
attributes.c 41 void (*h4)(void (*f4)(__attribute__(()))); // expected-error {{expected parameter declarator}} variable
  /external/clang/test/Analysis/diagnostics/Inputs/include/
report-issues-within-main-file.h 38 int h4 = 0; local
39 h4 = in/h4;
40 h4++;
  /external/clang/test/Sema/
constant-builtins.c 21 int h4 = __builtin_bswap32(0x1234) == 0x34120000 ? 1 : f(); variable
warn-missing-prototypes.c 19 int h4(int);
20 int h4();
25 int h4();
30 int h4(int x) { return x; } function
constant-builtins-2.c 172 int h4 = __builtin_bswap32(0x1234) == 0x34120000 ? 1 : f(); variable
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 159 uint32_t h4 = seed; local
188 h3 = ROTL32(h3,15); h3 += h4; h3 = h3*5+0x96cd1c35;
190 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
192 h4 = ROTL32(h4,13); h4 += h1; h4 = h4*5+0x32ac3b17;
210 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
234 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len
    [all...]
  /external/jemalloc/include/jemalloc/internal/
hash.h 148 uint32_t h4 = seed; local
178 h3 = hash_rotl_32(h3, 15); h3 += h4;
181 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
183 h4 = hash_rotl_32(h4, 13); h4 += h1;
184 h4 = h4*5 + 0x32ac3b17;
200 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
223 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
sha.h 101 uint32_t h0, h1, h2, h3, h4; member in struct:sha_state_st
  /external/chromium_org/third_party/smhasher/src/
MurmurHash3.cpp 159 uint32_t h4 = seed; local
188 h3 = ROTL32(h3,15); h3 += h4; h3 = h3*5+0x96cd1c35;
190 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
192 h4 = ROTL32(h4,13); h4 += h1; h4 = h4*5+0x32ac3b17;
210 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
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
147 h1=h4=h7=h10 = *hash2;
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
224 h1=h4=h7=h10 = m_state[1];
233 h4 = m_state[4];
250 Mix(u.p64, h0,h1,h2,h3,h4,h5,h6,h7,h8,h9,h10,h11)
318 uint64 h4 = m_state[4]; local
    [all...]
  /external/clang/test/SemaCXX/
address-of-temporary.cpp 39 void h4() { consume(AZ{}); } function in namespace:PointerToArrayDecay
return-noreturn.cpp 96 int h4(int x) { function in namespace:abort_struct_complex_cfgs
cxx0x-initializer-constructor.cpp 193 H h4 = {1, 1}; // expected-error {{constructor is explicit}} member in struct:objects::memberinit
  /external/openssl/crypto/sha/
sha.h 102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
  /external/openssl/include/openssl/
sha.h 102 SHA_LONG h0,h1,h2,h3,h4; member in struct:SHAstate_st
  /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
100 state->h4 += (t3 >> 8) | (1 << 24);
105 mul32x32_64(state->h4, state->s1);
108 mul32x32_64(state->h4, state->s2);
111 mul32x32_64(state->h4, state->s3);
114 mul32x32_64(state->h4, state->s4);
117 mul32x32_64(state->h4, state->r0);
131 state->h4 = (uint32_t)t[4] & 0x3ffffff;
159 state->h4 += (t3 >> 8);
204 state->h4 = 0
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FileHandlerTest.java 528 FileHandler h4 = new FileHandler("%t/log/string"); local
532 h4.publish(r);
536 h4.close();
  /external/chromium_org/cc/base/
math_util.cc 185 HomogeneousCoordinate h4 = ProjectHomogeneousPoint(transform, q.p4()); local
187 return ComputeEnclosingClippedRect(h1, h2, h3, h4);
235 HomogeneousCoordinate h4 = local
272 if (h3.ShouldBeClipped() ^ h4.ShouldBeClipped()) {
274 ComputeClippedPointForEdge(h3, h4).CartesianPoint2d(),
279 if (!h4.ShouldBeClipped()) {
281 h4.CartesianPoint2d(), clipped_quad, num_vertices_in_clipped_quad);
284 if (h4.ShouldBeClipped() ^ h1.ShouldBeClipped()) {
286 ComputeClippedPointForEdge(h4, h1).CartesianPoint2d(),
304 HomogeneousCoordinate h4 local
482 HomogeneousCoordinate h4 = local
518 HomogeneousCoordinate h4 = local
    [all...]
  /external/llvm/include/llvm/ADT/
Hashing.h 267 uint64_t h0, h1, h2, h3, h4, h5, h6; member in struct:llvm::hashing::detail::hash_state
276 state.h6 = hash_16_bytes(state.h4, state.h5);
298 h1 = rotate(h1 + h4 + fetch64(s + 48), 42) * k1;
302 h3 = h4 * k1;
303 h4 = h0 + h5;
304 mix_32_bytes(s, h3, h4);
315 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0);
  /external/chromium_org/v8/test/cctest/
test-heap.cc 339 Handle<Object> h4; local
350 h4 = global_handles->Create(*u);
359 CHECK((*h4)->IsHeapNumber());
365 CHECK_EQ(*h4, *h2);
367 GlobalHandles::Destroy(h4.location());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTest.cpp 3224 Persistent<Weak> h4; local
    [all...]

Completed in 613 milliseconds