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

1 2 3 4

  /external/clang/test/OpenMP/
simd_metadata.c 120 void h3(float *c, float *a, float *b, int size) function
122 // CHECK-LABEL: define void @h3
144 // Metadata for h3:
  /external/clang/test/PCH/Inputs/
chain-macro-override1.h 8 #define h3() macro
9 #undef h3 macro
  /external/clang/test/Parser/
attributes.c 40 void (*h3)(void (*f3)(__attribute__(()) x)); // expected-warning {{defaults to 'int'}} variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /external/clang/test/Analysis/diagnostics/Inputs/include/
report-issues-within-main-file.h 30 int h3 = 0; local
31 h3 = in/h3;
32 h3++;
  /external/clang/test/Sema/
constant-builtins.c 20 int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f(); variable
warn-missing-prototypes.c 18 int h3();
24 int h3(int x);
29 int h3(int x) { return x; } // expected-warning{{no previous prototype for function 'h3'}} function
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.prom/
promise.pass.cpp 50 CCH h3 = CCH::from_promise(cthis); local
53 assert(&h3.promise() == this);
55 assert(h2.address() == h3.address());
  /external/python/cpython2/Lib/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
CatmullRom.java 34 float h3 = t * t * t - 2 * t * t + t; local
37 return b * h1 + c * h2 + t1 * h3 + t2 * h4;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.prom/
promise.pass.cpp 50 CCH h3 = CCH::from_promise(cthis); local
53 assert(&h3.promise() == this);
55 assert(h2.address() == h3.address());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_atexit.py 37 atexit.register(self.h3)
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
65 def h3(self): member in class:TestCase
66 print "h3"
  /external/tensorflow/tensorflow/core/lib/histogram/
histogram_test.cc 41 Histogram h3; local
42 EXPECT_TRUE(h3.DecodeFromProto(proto_no_zeroes));
43 string s3 = h3.ToString();
  /external/clang/test/CodeGenCXX/
mangle-ms-back-references.cpp 62 PInt3Func h3(PInt3Func x, PInt3Func y, int* z) { return 0; } function
63 // CHECK: "\01?h3@@YAP6APAHPAH0@ZP6APAH00@Z10@Z"
static-init.cpp 44 void h3() { function
  /external/ply/ply/doc/
makedoc.py 5 # of the H1, H2, H3, H4 and H5 sections.
64 h3 = re.compile(r".*?<H3>(<a.*a>)*[\d\.\s]*(.*?)</H3>", re.IGNORECASE) variable
120 m = h3.match(s)
126 result.append("""<H3><a name="%s"></a>%d.%d %s</H3>""" % (headingname,section, subsection, prevheadingtext))
  /external/python/cpython3/Lib/test/
test_atexit.py 14 def h3(): function
15 print("h3")
59 atexit.register(h3)
62 self.assertEqual(self.stream.getvalue(), "h3\nh2\nh1\n")
  /external/clang/test/SemaCXX/
address-of-temporary.cpp 38 void h3() { consume((A){}); } function in namespace:PointerToArrayDecay
  /external/jemalloc/include/jemalloc/internal/
hash.h 164 uint32_t h3 = seed; local
190 h2 = hash_rotl_32(h2, 17); h2 += h3;
193 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
195 h3 = hash_rotl_32(h3, 15); h3 += h4;
196 h3 = h3*5 + 0x96cd1c35;
223 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
240 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len
    [all...]
  /external/libmojo/mojo/public/cpp/system/tests/
core_unittest.cc 75 Handle h3; local
80 handle_to_int[h3] = 3;
89 EXPECT_FALSE(handle_to_int.find(h3) == handle_to_int.end());
90 EXPECT_EQ(3, handle_to_int[h3]);
367 ScopedMessagePipeHandle h3; local
368 if (CreateMessagePipe(nullptr, &h2, &h3) != MOJO_RESULT_OK)
369 CreateMessagePipe(nullptr, &h2, &h3); // Must be old EDK.
371 // Write a message to |h2|, before we send |h3|.
381 // And also a message to |h3|.
383 WriteMessageRaw(h3.get()
421 ScopedMessagePipeHandle h3; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldFileHandlerTest.java 144 FileHandler h3 = new FileHandler("%t/log/string"); local
148 h3.publish(r);
152 h3.close();
  /external/boringssl/src/crypto/poly1305/
poly1305.c 47 uint32_t h0, h1, h2, h3, h4; member in struct:poly1305_state_st
86 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
91 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) +
94 mul32x32_64(state->h2, state->s4) + mul32x32_64(state->h3, state->s3) +
97 mul32x32_64(state->h2, state->r0) + mul32x32_64(state->h3, state->s4) +
100 mul32x32_64(state->h2, state->r1) + mul32x32_64(state->h3, state->r0) +
103 mul32x32_64(state->h2, state->r2) + mul32x32_64(state->h3, state->r1) +
115 state->h3 = (uint32_t)t[3] & 0x3ffffff;
149 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
194 state->h3 = 0
    [all...]

Completed in 2012 milliseconds

1 2 3 4