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

1 2 3 4

  /external/clang/test/Modules/
declare-use2.cpp 7 const int h2 = h1+e+f; variable
  /external/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
op_++int.pass.cpp 22 std::chrono::hours h2 = h++; local
24 assert(h2.count() == 3);
op_--int.pass.cpp 22 std::chrono::hours h2 = h--; local
24 assert(h2.count() == 3);
  /external/clang/test/OpenMP/
simd_metadata.c 16 void h2(float *c, float *a, float *b, int size) function
18 // CHECK-LABEL: define void @h2
46 // Metadata for h2:
  /external/clang/test/SemaCXX/
cv-unqual-rvalues.cpp 11 template<typename T, T X> void h2() { function
23 h2<const int, 0>(); // expected-note{{instantiation of}}
goto.cpp 52 void h2(int end) { function
  /external/chromium_org/third_party/smhasher/src/
SpookyTest.cpp 12 uint64_t h1 = seed, h2 = seed; local
13 SpookyHash::Hash128(key, len, &h1, &h2);
15 ((uint64_t*)out)[1] = h2;
DifferentialTest.h 104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int start, int bitsleft, std::vector<keytype> & diffs )
113 hash(&k2,sizeof(k2),0,&h2);
115 if(h1 == h2)
122 DiffTestRecurse(hash,k1,k2,h1,h2,i+1,bitsleft,diffs);
147 hashtype h1,h2; local
161 DiffTestRecurse<keytype,hashtype>(hash,k1,k2,h1,h2,0,diffbits,diffs);
214 hashtype h2; local
224 hash(&k2,sizeof(k2),0,&h2);
226 B[i] = A[i] ^ h2;
255 hashtype h1,h2; local
    [all...]
  /external/clang/test/PCH/Inputs/
chain-macro-override1.h 6 #define h2() f() macro
chain-macro-override2.h 6 #undef h2 macro
  /external/clang/test/CodeGen/
extern-inline.c 24 int h2(void) {return f2(1,2);} function
fp16-ops.c 6 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
49 h1 = h0 * h2;
63 h1 = f0 * h2;
69 h1 = (h0 / h2);
82 h1 = (f0 / h2);
88 h1 = (h2 + h0);
97 h1 = (h2 + f0);
107 h1 = (h2 - h0);
116 h1 = (h2 - f0);
125 test = (h2 < h0)
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-arity-mismatch.js 44 function h2(a, b) { function
53 assertEquals(4, h2(o, o));
54 assertEquals(4, h2(o, o));
56 %OptimizeFunctionOnNextCall(h2);
58 assertEquals(4, h2(o, o));
62 assertEquals(2, h2(o, u));
  /external/clang/test/Parser/
attributes.c 38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}} variable
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1229.js 91 function h2(z2, y2, x2) { function
123 invoke(h2, [6, 4, 8]);
  /external/clang/test/Analysis/diagnostics/Inputs/include/
report-issues-within-main-file.h 22 int h2 = 0; local
23 h2 = in/h2;
24 h2++;
  /external/clang/test/Sema/
warn-missing-prototypes.c 23 int h2(int x);
28 int h2(int x) { return x; } // expected-warning{{no previous prototype for function 'h2'}} function
  /external/libcxx/test/utilities/time/time.duration/time.duration.literals/
literals.pass.cpp 31 auto h2 = 4.0h; local
32 assert ( h == h2 );
literals1.pass.cpp 20 auto h2 = 4.0h; local
21 assert ( h == h2 );
literals2.pass.cpp 23 auto h2 = 4.0h; local
24 assert ( h == h2 );
  /external/libyuv/files/unit_test/
compare_test.cc 42 uint32 h2 = ReferenceHashDjb2(src_a, kMaxTest, 5381); local
43 EXPECT_EQ(h1, h2);
63 uint32 h2 = ReferenceHashDjb2(src_a, kMaxTest, 5381); local
70 EXPECT_EQ(h1, h2);
81 uint32 h2 = ReferenceHashDjb2(src_a, kMaxTest, 5381); local
86 EXPECT_EQ(h1, h2);
97 uint32 h2 = ReferenceHashDjb2(src_a + 1, kMaxTest, 5381); local
102 EXPECT_EQ(h1, h2);
  /external/chromium_org/mojo/public/cpp/system/tests/
core_unittest.cc 56 Handle h2(h0);
57 EXPECT_EQ(static_cast<MojoHandle>(789), h2.value());
59 h2 = h1;
60 EXPECT_EQ(static_cast<MojoHandle>(456), h2.value());
65 h2 = Handle(static_cast<MojoHandle>(321));
70 handle_to_int[h2] = 2;
78 EXPECT_FALSE(handle_to_int.find(h2) == handle_to_int.end());
79 EXPECT_EQ(2, handle_to_int[h2]);
302 ScopedMessagePipeHandle h2; local
304 CreateMessagePipe(NULL, &h2, &h3)
349 ScopedMessagePipeHandle h2; local
    [all...]
  /external/chromium_org/sync/internal_api/public/util/
weak_handle_unittest.cc 82 WeakHandle<int> h2(h);
83 EXPECT_FALSE(h2.IsInitialized());
87 WeakHandle<int> h2; local
88 h2 = h;
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 157 uint32_t h2 = seed; local
180 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b;
182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
184 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747;
222 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
234 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len
262 uint64_t h2 = seed; local
    [all...]
  /external/chromium_org/third_party/libyuv/unit_test/
compare_test.cc 52 uint32 h2 = HashDjb2(src_b, kMaxTest, 5381); local
53 EXPECT_NE(h1, h2);
58 h2 = HashDjb2(src_b, kMaxTest, 5381);
59 EXPECT_NE(h1, h2);
66 h2 = HashDjb2(src_b, kMaxTest, 5381);
67 EXPECT_NE(h1, h2);
72 h2 = HashDjb2(src_b, kMaxTest, 5381);
73 EXPECT_EQ(h1, h2);
78 h2 = HashDjb2(src_b, kMaxTest, 1234);
79 EXPECT_NE(h1, h2);
125 uint32 h2 = ReferenceHashDjb2(src_a, kMaxTest, 5381); local
140 uint32 h2 = ReferenceHashDjb2(src_a + 1, kMaxTest, 5381); local
    [all...]

Completed in 2594 milliseconds

1 2 3 4