Searched defs:h2 (Results 1 - 25 of 98) sorted by relevance

1234

/external/clang/test/Modules/
H A Ddeclare-use2.cpp7 const int h2 = h1+e+f; variable
/external/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
H A Dop_++int.pass.cpp22 std::chrono::hours h2 = h++; local
24 assert(h2.count() == 3);
H A Dop_--int.pass.cpp22 std::chrono::hours h2 = h--; local
24 assert(h2.count() == 3);
/external/clang/test/PCH/Inputs/
H A Dchain-macro-override1.h6 #define h2() f() macro
H A Dchain-macro-override2.h6 #undef h2 macro
/external/clang/test/SemaCXX/
H A Dcv-unqual-rvalues.cpp11 template<typename T, T X> void h2() { function
23 h2<const int, 0>(); // expected-note{{instantiation of}}
H A Dgoto.cpp52 void h2(int end) { function
/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);
15 ((uint64_t*)out)[1] = h2;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dinline-arity-mismatch.js44 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/CodeGen/
H A Dextern-inline.c24 int h2(void) {return f2(1,2);} function
H A Dfp16-ops.c6 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 < h
[all...]
/external/clang/test/OpenMP/
H A Dsimd_metadata.c16 void h2(float *c, float *a, float *b, int size) function
18 // CHECK-LABEL: define void @h2
46 // Metadata for h2:
/external/clang/test/Parser/
H A Dattributes.c38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}} variable
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1229.js91 function h2(z2, y2, x2) { function
123 invoke(h2, [6, 4, 8]);
/external/clang/test/Sema/
H A Dwarn-missing-prototypes.c23 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/
H A Dliterals.pass.cpp31 auto h2 = 4.0h; local
32 assert ( h == h2 );
H A Dliterals1.pass.cpp20 auto h2 = 4.0h; local
21 assert ( h == h2 );
H A Dliterals2.pass.cpp23 auto h2 = 4.0h; local
24 assert ( h == h2 );
/external/robolectric/lib/main/
H A Dh2-1.2.147.jar ... .h2.bnf.Rule parseRule () private org.h2.bnf.Rule parseOr () private org.h2. ...
/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h22 int h2 = 0; local
23 h2 = in/h2;
24 h2++;
/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.cc56 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,
349 ScopedMessagePipeHandle h2; local
[all...]
/external/chromium_org/sync/internal_api/public/util/
H A Dweak_handle_unittest.cc82 WeakHandle<int> h2(h);
83 EXPECT_FALSE(h2.IsInitialized());
87 WeakHandle<int> h2; local
88 h2 = h;
/external/chromium_org/third_party/libyuv/unit_test/
H A Dcompare_test.cc52 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...]
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java48 long h2; field in class:Murmur3_128HashFunction.Murmur3_128Hasher
56 h2 = seed;
73 h1 += h2;
79 h2 ^= k2;
81 h2 = Long.rotateLeft(h2, 31);
82 h2 += h1;
83 h2 = h2 * 5 + 0x38495ab5;
108 h2
[all...]

Completed in 657 milliseconds

1234