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

1 2 3 4 5 6 7 8 910

  /external/clang/test/Modules/
declare-use2.cpp 7 const int h2 = h1+e+f; variable
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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 108 void h2(float *c, float *a, float *b, int size) function
110 // CHECK-LABEL: define void @h2
141 // 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}}
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_++int.pass.cpp 25 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);
op_--int.pass.cpp 25 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/vboot_reference/cgpt/
cgpt_legacy.c 13 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/PCH/Inputs/
chain-macro-override1.h 6 #define h2() f() macro
chain-macro-override2.h 6 #undef h2 macro
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.alg/
abs.pass.cpp 47 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/
ceil.pass.cpp 48 constexpr std::chrono::hours h2 = std::chrono::ceil<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
49 static_assert(h2.count() == -2, "");
floor.pass.cpp 47 constexpr std::chrono::hours h2 = std::chrono::floor<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
48 static_assert(h2.count() == -3, "");
round.pass.cpp 47 constexpr std::chrono::hours h2 = std::chrono::round<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
48 static_assert(h2.count() == -2, "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.alg/
abs.pass.cpp 47 constexpr std::chrono::hours h2 = std::chrono::abs(std::chrono::hours(3)); local
48 static_assert(h2.count() == 3, "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.cast/
ceil.pass.cpp 48 constexpr std::chrono::hours h2 = std::chrono::ceil<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
49 static_assert(h2.count() == -2, "");
floor.pass.cpp 47 constexpr std::chrono::hours h2 = std::chrono::floor<std::chrono::hours>(std::chrono::milliseconds(-9000000)); local
48 static_assert(h2.count() == -3, "");
round.pass.cpp 47 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/
extern-inline.c 24 int h2(void) {return f2(1,2);} function
  /external/clang/test/Parser/
attributes.c 38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}} variable
  /external/libcxx/test/libcxx/utilities/function.objects/unord.hash/
murmur2_or_cityhash_ubsan_unsigned_overflow_ignored.pass.cpp 26 Hash64 h2; local
28 DoNotOptimize(h2(key, i));
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue12588.go 47 func h2(a *B) *uint64 { // ERROR "leaking param: a to result ~r1 level=1" func
48 p := &a.b // ERROR "h2 &a.b does not escape"
81 sink = h2(&b1) // ERROR "main &b1 does not escape"
82 h2(&b4) // ERROR "main &b4 does not escape"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue12588.go 47 func h2(a *B) *uint64 { // ERROR "leaking param: a to result ~r1 level=1" func
48 p := &a.b // ERROR "h2 &a.b does not escape"
81 sink = h2(&b1) // ERROR "main &b1 does not escape"
82 h2(&b4) // ERROR "main &b4 does not escape"

Completed in 743 milliseconds

1 2 3 4 5 6 7 8 910