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

1 2 3 4 5 6 7 8 9

  /external/clang/test/Modules/Inputs/declare-use/
h.h 5 #include "h1.h"
6 const int h1 = aux_h*c*7*d; variable
  /external/clang/test/OpenMP/
simd_metadata.c 10 void h1(float *c, float *a, double b[], int size) function
12 // CHECK-LABEL: define void @h1
133 // Metadata for h1:
  /external/vboot_reference/cgpt/
cgpt_legacy.c 13 GptHeader *h1, *h2; local
22 h1 = (GptHeader *)drive.gpt.primary_header;
25 memcpy(h1->signature, GPT_HEADER_SIGNATURE, GPT_HEADER_SIGNATURE_SIZE);
31 memcpy(h1->signature, GPT_HEADER_SIGNATURE2, GPT_HEADER_SIGNATURE_SIZE);
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.alg/
abs.pass.cpp 45 constexpr std::chrono::hours h1 = std::chrono::abs(std::chrono::hours(-3)); local
46 static_assert(h1.count() == 3, "");
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.cast/
ceil.pass.cpp 46 constexpr std::chrono::hours h1 = std::chrono::ceil<std::chrono::hours>(std::chrono::milliseconds(9000000)); local
47 static_assert(h1.count() == 3, "");
floor.pass.cpp 45 constexpr std::chrono::hours h1 = std::chrono::floor<std::chrono::hours>(std::chrono::milliseconds(9000000)); local
46 static_assert(h1.count() == 2, "");
round.pass.cpp 45 constexpr std::chrono::hours h1 = std::chrono::round<std::chrono::hours>(std::chrono::milliseconds(9000000)); local
46 static_assert(h1.count() == 2, "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.alg/
abs.pass.cpp 45 constexpr std::chrono::hours h1 = std::chrono::abs(std::chrono::hours(-3)); local
46 static_assert(h1.count() == 3, "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.cast/
ceil.pass.cpp 46 constexpr std::chrono::hours h1 = std::chrono::ceil<std::chrono::hours>(std::chrono::milliseconds(9000000)); local
47 static_assert(h1.count() == 3, "");
floor.pass.cpp 45 constexpr std::chrono::hours h1 = std::chrono::floor<std::chrono::hours>(std::chrono::milliseconds(9000000)); local
46 static_assert(h1.count() == 2, "");
round.pass.cpp 45 constexpr std::chrono::hours h1 = std::chrono::round<std::chrono::hours>(std::chrono::milliseconds(9000000)); local
46 static_assert(h1.count() == 2, "");
  /external/clang/test/CodeGen/
cfi-icall-cross-dso.c 59 Fn h1() { function
fp16-ops.c 16 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
38 test = (!h1);
44 h1 = -h1;
49 h1 = +h1;
54 h1++;
59 ++h1;
64 --h1;
69 h1--
    [all...]
  /external/clang/test/Parser/
attributes.c 37 void (*h1)(void (*f1)(__attribute__(()) int x)); variable
  /external/libcxx/test/libcxx/utilities/function.objects/unord.hash/
murmur2_or_cityhash_ubsan_unsigned_overflow_ignored.pass.cpp 25 Hash32 h1; local
27 DoNotOptimize(h1(key, i));
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug326.go 33 func h1() (_ int, _ error) { func
  /prebuilts/go/linux-x86/test/fixedbugs/
bug326.go 33 func h1() (_ int, _ error) { func
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 73 final Handler h1 = new Handler(th1.getLooper()) { local
87 Message msg = h1.obtainMessage(TEST_WHAT);
89 synchronized (h1) {
91 h1.sendMessage(msg);
94 h1.wait();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_atexit.py 23 atexit.register(self.h1)
35 atexit.register(self.h1)
44 sys.exitfunc = self.h1
59 def h1(self): member in class:TestCase
60 print "h1"
  /external/dtc/tests/
references.c 80 uint32_t h1, h2, h4, h5; local
101 h1 = fdt_get_phandle(fdt, n1);
106 if (h1 != 0x2000)
108 h1, 0x2000);
117 if ((h5 == h4) || (h5 == h2) || (h5 == h1))
121 check_ref(fdt, n2, h1);
  /external/fio/crc/
murmur3.c 24 const uint32_t c2, uint32_t h1)
39 h1 ^= k1;
42 return fmix32(h1 ^ len);
49 uint32_t h1 = seed; local
62 h1 ^= k1;
63 h1 = rotl32(h1, 13);
64 h1 = h1 * 5 + 0xe6546b64;
67 return murmur3_tail(data, nblocks, len, c1, c2, h1);
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
CatmullRom.java 32 float h1 = +2 * t * t * t - 3 * t * t + 1; local
37 return b * h1 + c * h2 + t1 * h3 + t2 * h4;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_atexit.py 23 atexit.register(self.h1)
35 atexit.register(self.h1)
44 sys.exitfunc = self.h1
59 def h1(self): member in class:TestCase
60 print "h1"
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_atexit.py 23 atexit.register(self.h1)
35 atexit.register(self.h1)
44 sys.exitfunc = self.h1
59 def h1(self): member in class:TestCase
60 print "h1"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_atexit.py 23 atexit.register(self.h1)
35 atexit.register(self.h1)
44 sys.exitfunc = self.h1
59 def h1(self): member in class:TestCase
60 print "h1"

Completed in 279 milliseconds

1 2 3 4 5 6 7 8 9