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

1234

/external/clang/test/Modules/
H A Ddeclare-use2.cpp7 const int h2 = h1+e+f; variable
/external/libcxx/test/std/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/vboot_reference/cgpt/
H A Dcgpt_legacy.c13 GptHeader *h1, *h2; local
23 h2 = (GptHeader *)drive.gpt.secondary_header;
26 memcpy(h2->signature, GPT_HEADER_SIGNATURE, GPT_HEADER_SIGNATURE_SIZE);
32 memcpy(h2->signature, GPT_HEADER_SIGNATURE2, GPT_HEADER_SIGNATURE_SIZE);
/external/clang/test/CodeGen/
H A Dextern-inline.c24 int h2(void) {return f2(1,2);} function
H A Dfp16-ops.c14 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
75 h1 = h0 * h2;
94 h1 = f0 * h2;
106 h1 = (h0 / h2);
124 h1 = (f0 / h2);
136 h1 = (h2 + h0);
148 h1 = (h2 + f0);
166 h1 = (h2 - h0);
178 h1 = (h2 - f0);
195 test = (h2 < h
[all...]
/external/clang/test/OpenMP/
H A Dsimd_metadata.c108 void h2(float *c, float *a, float *b, int size) function
110 // CHECK-LABEL: define void @h2
141 // Metadata for h2:
/external/clang/test/Parser/
H A Dattributes.c38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}} variable
/external/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/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/std/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/v1/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/libcxx/test/std/utilities/function.objects/unord.hash/
H A Denum.pass.cpp40 std::hash<under_type> h2; local
45 assert(h1(t) == h2(static_cast<under_type>(i)));
/external/libselinux/src/
H A Dlabel.c154 struct selabel_handle *h2)
156 if (!h1->func_cmp || h1->func_cmp != h2->func_cmp)
159 return h1->func_cmp(h1, h2);
153 selabel_cmp(struct selabel_handle *h1, struct selabel_handle *h2) argument
/external/libyuv/files/unit_test/
H A Dcompare_test.cc42 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/skia/tests/
H A DFloat16Test.cpp105 h2 = SkFloatToHalf(f); local
106 bool ok = (h1 == h2 || h1 == h2-1);
110 bits, bits>>23, h1, h1>>10, h2, h2>>10);
/external/v8/test/unittests/base/
H A Dfunctional-unittest.cc16 hash<bool> h, h1, h2; local
17 EXPECT_EQ(h1(true), h2(true));
18 EXPECT_EQ(h1(false), h2(false));
75 hash<TypeParam> h1, h2; local
79 EXPECT_EQ(h1(v), h2(v));
/external/autotest/client/deps/glbench/src/
H A Dwindowmanagertest.cc36 float h2 = 0.5f * h; local
41 float dy = fabs((y - h2) / h2);

Completed in 667 milliseconds

1234