Searched defs:h1 (Results 1 - 25 of 88) sorted by relevance

1234

/external/clang/test/Modules/Inputs/declare-use/
H A Dh.h5 #include "h1.h"
6 const int h1 = aux_h*c*7*d; variable
/external/chromium_org/third_party/smhasher/src/
H A DSpookyTest.cpp12 uint64_t h1 = seed, h2 = seed; local
13 SpookyHash::Hash128(key, len, &h1, &h2);
14 ((uint64_t*)out)[0] = h1;
H A DAvalancheTest.h122 hashtype h1,h2; local
132 hash(&key,keybytes,0,&h1);
137 hashtype d = h1 ^ h2;
255 hashtype h1,h2; local
268 hash(&key,keybytes,0,&h1);
272 hashtype d = h1 ^ h2;
362 hashtype h1,h2; local
376 hash(&key,keybytes,0,&h1);
380 hashtype d = h1 ^ h2;
H A DDifferentialTest.h104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int start, int bitsleft, std::vector<keytype> & diffs ) argument
115 if(h1 == h2)
122 DiffTestRecurse(hash,k1,k2,h1,h2,i+1,bitsleft,diffs);
147 hashtype h1,h2; local
159 hash(&k1,sizeof(k1),0,(uint32_t*)&h1);
161 DiffTestRecurse<keytype,hashtype>(hash,k1,k2,h1,h2,0,diffbits,diffs);
255 hashtype h1,h2; local
267 hash(&k,sizeof(keytype),0,&h1);
271 hashes[i] = h1 ^ h2;
H A DKeysetTest.cpp180 uint32_t h1[16]; local
183 memset(h1,0,hashbytes);
188 hash(key,32+i,0,h1);
190 if(memcmp(h1,h2,hashbytes) == 0)
196 memcpy(h2,h1,hashbytes);
H A DMurmurHash2.cpp147 uint32_t h1 = uint32_t(seed) ^ len; local
156 h1 *= m; h1 ^= k1;
169 h1 *= m; h1 ^= k1;
181 h1 ^= h2 >> 18; h1 *= m;
182 h2 ^= h1 >> 22; h2 *= m;
183 h1 ^= h2 >> 17; h1 *
[all...]
/external/chromium_org/v8/test/mjsunit/compiler/
H A 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/clang/test/CodeGen/
H A Dfp16-ops.c6 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
19 test = (!h1);
23 h1 = -h1;
26 h1 = +h1;
30 h1++;
34 ++h1;
38 --h1;
42 h1
[all...]
/external/clang/test/OpenMP/
H A Dsimd_metadata.c3 void h1(float *c, float *a, float *b, int size) function
5 // CHECK-LABEL: define void @h1
41 // Metadata for h1:
/external/clang/test/Parser/
H A Dattributes.c37 void (*h1)(void (*f1)(__attribute__(()) int x)); variable
/external/qemu/android/base/files/
H A DScopedHandle_unittest.cpp64 ScopedHandle h1; local
66 EXPECT_FALSE(h1.valid());
68 h1.swap(&h2);
70 EXPECT_TRUE(h1.valid());
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1229.js83 function h1(z2, y2) { function
122 invoke(h1, [6, 4]);
/external/chromium_org/mojo/public/c/system/tests/
H A Dcore_unittest.cc25 MojoHandle h0, h1; local
72 h1 = MOJO_HANDLE_INVALID;
74 MojoDuplicateBufferHandle(h0, NULL, &h1));
80 MojoHandle h0, h1; local
86 h1 = MOJO_HANDLE_INVALID;
87 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(NULL, &h0, &h1));
89 EXPECT_NE(h1, MOJO_HANDLE_INVALID);
105 // Write to |h1|.
111 h1, kHello, buffer_size, NULL, 0, MOJO_WRITE_MESSAGE_FLAG_NONE));
134 // |h1| shoul
241 MojoHandle h0, h1; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c48 int h0, h1, q; local
51 h1 = ALIGN(minify(mt->height0), mt->align_h);
55 qpitch = (h0 + h1 + (intel->gen >= 7 ? 12 : 11) * mt->align_h);
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_32HashFunction.java45 int h1; field in class:Murmur3_32HashFunction.Murmur3_32Hasher
52 h1 = seed;
63 h1 ^= k1;
64 h1 = Integer.rotateLeft(h1, 13);
65 h1 = h1 * 5 + 0xe6546b64;
85 h1 ^= k1;
90 h1 ^= len;
92 h1
[all...]
H A DMurmur3_128HashFunction.java47 long h1; field in class:Murmur3_128HashFunction.Murmur3_128Hasher
55 h1 = seed;
70 h1 ^= k1;
72 h1 = Long.rotateLeft(h1, 27);
73 h1 += h2;
74 h1 = h1 * 5 + 0x52dce729;
82 h2 += h1;
129 h1
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c48 int h0, h1, q; local
51 h1 = ALIGN(minify(mt->height0), mt->align_h);
55 qpitch = (h0 + h1 + (intel->gen >= 7 ? 12 : 11) * mt->align_h);
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
H A DProviderBookmarkNodeTest.java103 private static boolean isSameHierarchy(BookmarkNode h1, BookmarkNode h2) { argument
104 return isSameHierarchyDownwards(h1.getHierarchyRoot(), h2.getHierarchyRoot());
/external/chromium_org/mojo/public/cpp/system/tests/
H A Dcore_unittest.cc35 Handle h1(static_cast<MojoHandle>(123));
36 EXPECT_EQ(static_cast<MojoHandle>(123), h1.value());
37 EXPECT_EQ(static_cast<MojoHandle>(123), *h1.mutable_value());
38 EXPECT_TRUE(h1.is_valid());
39 *h1.mutable_value() = static_cast<MojoHandle>(456);
40 EXPECT_EQ(static_cast<MojoHandle>(456), h1.value());
41 EXPECT_TRUE(h1.is_valid());
43 h1.swap(h0);
46 EXPECT_FALSE(h1.is_valid());
48 h1
152 ScopedMessagePipeHandle h1; local
195 ScopedMessagePipeHandle h1; local
298 ScopedMessagePipeHandle h1; local
345 ScopedMessagePipeHandle h1; local
[all...]
/external/chromium_org/third_party/libyuv/unit_test/
H A Dcompare_test.cc51 uint32 h1 = HashDjb2(src_a, kMaxTest, 5381); local
53 EXPECT_NE(h1, h2);
57 h1 = HashDjb2(src_a, kMaxTest, 5381);
59 EXPECT_NE(h1, h2);
65 h1 = HashDjb2(src_a, kMaxTest, 5381);
67 EXPECT_NE(h1, h2);
71 h1 = HashDjb2(src_a, kMaxTest, 5381);
73 EXPECT_EQ(h1, h2);
77 h1 = HashDjb2(src_a, kMaxTest, 5381);
79 EXPECT_NE(h1, h
126 uint32 h1; local
141 uint32 h1; local
158 uint64 h1 = ComputeSumSquareError(src_a, src_b, 16); local
[all...]
/external/libcxx/test/utilities/function.objects/unord.hash/
H A Denum.pass.cpp40 std::hash<T> h1; local
46 assert(h1(t) == h2(static_cast<under_type>(i)));
/external/libyuv/files/unit_test/
H A Dcompare_test.cc41 uint32 h1 = HashDjb2(src_a, kMaxTest, 5381); local
43 EXPECT_EQ(h1, h2);
64 uint32 h1; local
67 h1 = HashDjb2(src_a, kMaxTest, 5381);
70 EXPECT_EQ(h1, h2);
82 uint32 h1; local
84 h1 = HashDjb2(src_a, kMaxTest, 5381);
86 EXPECT_EQ(h1, h2);
98 uint32 h1; local
100 h1
[all...]
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.cpp100 uint32_t h1 = seed; local
118 h1 ^= k1;
119 h1 = ROTL32(h1,13);
120 h1 = h1*5+0xe6546b64;
135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
141 h1 ^= len;
143 h1 = fmix(h1);
156 uint32_t h1 = seed; local
261 uint64_t h1 = seed; local
[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/leveldatabase/src/util/
H A Dcache_test.cc112 Cache::Handle* h1 = cache_->Lookup(EncodeKey(100)); local
113 ASSERT_EQ(101, DecodeValue(cache_->Value(h1)));
120 cache_->Release(h1);

Completed in 7601 milliseconds

1234