HomeSort by relevance Sort by last modified time
    Searched defs:h1 (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/clang/test/Modules/Inputs/declare-use/
h.h 5 #include "h1.h"
6 const int h1 = aux_h*c*7*d; variable
  /external/clang/test/OpenMP/
simd_metadata.c 3 void h1(float *c, float *a, float *b, int size) function
5 // CHECK-LABEL: define void @h1
41 // Metadata for h1:
  /external/chromium_org/third_party/smhasher/src/
SpookyTest.cpp 12 uint64_t h1 = seed, h2 = seed; local
13 SpookyHash::Hash128(key, len, &h1, &h2);
14 ((uint64_t*)out)[0] = h1;
DifferentialTest.h 104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int start, int bitsleft, std::vector<keytype> & diffs )
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;
PMurHash.c 150 #define DOBLOCK(h1, k1) do{ \
155 h1 ^= k1; \
156 h1 = ROTL32(h1,13); \
157 h1 = h1*5+0xe6546b64; \
162 /* cnt=bytes to process, h1=name of h1 var, c=carry, n=bytes in c, ptr/len=payload */
163 #define DOBYTES(cnt, h1, c, n, ptr, len) do{ \
169 DOBLOCK(h1, c);
180 uint32_t h1 = *ph1; local
288 uint32_t h1=seed, carry=0; local
298 uint32_t h1=seed, carry=0; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-arity-mismatch.js 40 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/
fp16-ops.c 6 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/Parser/
attributes.c 37 void (*h1)(void (*f1)(__attribute__(()) int x)); variable
  /external/qemu/android/base/files/
ScopedHandle_unittest.cpp 64 ScopedHandle h1; local
66 EXPECT_FALSE(h1.valid());
68 h1.swap(&h2);
70 EXPECT_TRUE(h1.valid());
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 73 final Handler h1 = new Handler(th1.getLooper()) { local
87 Message msg = h1.obtainMessage(TEST_WHAT);
89 synchronized (h1) {
91 h1.sendMessage(msg);
94 h1.wait();
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1229.js 83 function h1(z2, y2) { function
122 invoke(h1, [6, 4]);
  /external/chromium_org/mojo/public/c/system/tests/
core_unittest.cc 25 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| should no longer be readable or writable
241 MojoHandle h0, h1; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_tex_layout.c 48 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/
Murmur3_32HashFunction.java 45 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 ^= h1 >>> 16
    [all...]
Murmur3_128HashFunction.java 47 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 ^= k1
    [all...]
  /external/libyuv/files/unit_test/
compare_test.cc 41 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 = HashDjb2(src_a + 1, kMaxTest, 5381)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_tex_layout.c 48 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/mojo/public/cpp/system/tests/
core_unittest.cc 35 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.set_value(static_cast<MojoHandle>(789))
152 ScopedMessagePipeHandle h1; local
195 ScopedMessagePipeHandle h1; local
298 ScopedMessagePipeHandle h1; local
345 ScopedMessagePipeHandle h1; local
    [all...]
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 100 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/libyuv/unit_test/
compare_test.cc 51 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, h2)
126 uint32 h1; local
141 uint32 h1; local
158 uint64 h1 = ComputeSumSquareError(src_a, src_b, 16); local
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-ms-back-references.cpp 56 void h1(const char* a, const char* b, VoidFunc c, VoidFunc d) {} function
57 // CHECK: "\01?h1@@YAXPBD0P6AXXZ1@Z"
  /external/guava/guava-tests/test/com/google/common/base/
ObjectsTest.java 48 int h1 = Objects.hashCode(1, "two", 3.0); local
52 assertEquals(h1, h2);
  /external/jemalloc/include/jemalloc/internal/
hash.h 93 uint32_t h1 = seed; local
110 h1 ^= k1;
111 h1 = hash_rotl_32(h1, 13);
112 h1 = h1*5 + 0xe6546b64;
126 k1 *= c2; h1 ^= k1;
131 h1 ^= len;
133 h1 = hash_fmix_32(h1);
145 uint32_t h1 = seed; local
247 uint64_t h1 = seed; local
    [all...]
  /external/libcxx/test/utilities/function.objects/unord.hash/
enum.pass.cpp 40 std::hash<T> h1; local
46 assert(h1(t) == h2(static_cast<under_type>(i)));
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_FwdTransformResidual4x4.c 85 int h1 = (g1 << 1) + g3; local
89 pDst[i+4] = (OMX_S16) h1;

Completed in 3309 milliseconds

1 2 3 4 5