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

12345

/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.cpp25 std::chrono::hours h2 = h1++; local
26 return h1.count() == 4 && h2.count() == 3;
34 std::chrono::hours h2 = h1++; local
36 assert(h2.count() == 3);
H A Dop_--int.pass.cpp25 std::chrono::hours h2 = h1--; local
26 return h1.count() == 2 && h2.count() == 3;
35 std::chrono::hours h2 = h1--; local
37 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}}
/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/libcxx/test/std/utilities/time/time.duration/time.duration.alg/
H A Dabs.pass.cpp47 constexpr std::chrono::hours h2 = std::chrono::abs(std::chrono::hours(3)); local
48 static_assert(h2.count() == 3, "");
/external/libcxx/test/std/utilities/time/time.duration/time.duration.cast/
H A Dceil.pass.cpp48 constexpr std::chrono::hours h2 = std::chrono::ceil<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
49 static_assert(h2.count() == -2, "");
H A Dfloor.pass.cpp47 constexpr std::chrono::hours h2 = std::chrono::floor<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
48 static_assert(h2.count() == -3, "");
H A Dround.pass.cpp47 constexpr std::chrono::hours h2 = std::chrono::round<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
48 static_assert(h2.count() == -2, "");
/external/clang/test/CodeGen/
H A Dextern-inline.c24 int h2(void) {return f2(1,2);} function
H A Dfp16-ops.c16 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
77 h1 = h0 * h2;
96 h1 = f0 * h2;
108 h1 = (h0 / h2);
126 h1 = (f0 / h2);
138 h1 = (h2 + h0);
150 h1 = (h2 + f0);
168 h1 = (h2 - h0);
180 h1 = (h2 - f0);
197 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/libcxx/test/libcxx/utilities/function.objects/unord.hash/
H A Dmurmur2_or_cityhash_ubsan_unsigned_overflow_ignored.pass.cpp26 Hash64 h2; local
28 DoNotOptimize(h2(key, i));
/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.cpp21 auto h2 = 4.0h; local
22 assert ( h == h2 );
H A Dliterals2.pass.cpp23 auto h2 = 4.0h; local
24 assert ( h == h2 );
/external/python/cpython3/Modules/_decimal/tests/
H A Dbignum.py40 h2 = hash(d) variable
42 assert h2 == h1
/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/dtc/tests/
H A Dreferences.c80 uint32_t h1, h2, h4, h5; local
102 h2 = fdt_get_phandle(fdt, n2);
109 if (h2 != 0x1)
111 h2, 0x1);
117 if ((h5 == h4) || (h5 == h2) || (h5 == h1))
120 check_ref(fdt, n1, h2);
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/
H A Dpath.compare.pass.cpp125 auto h2 = hash_value(p2); local
126 assert((h1 == h2) == (p1 == p2));

Completed in 2621 milliseconds

12345