HomeSort by relevance Sort by last modified time
    Searched defs:t1 (Results 76 - 100 of 1682) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pair.astuple/
pairs.by.type1.fail.cpp 19 auto t1 = std::make_pair<int, double> ( 42, 3.4 ); local
20 assert (( std::get<cf>(t1) == cf {1,2} )); // no such type
pairs.by.type2.fail.cpp 19 auto t1 = std::make_pair<int, int> ( 42, 43 ); local
20 assert ( std::get<int>(t1) == 42 ); // two ints
  /toolchain/binutils/binutils-2.27/gold/testsuite/
ver_test_9.cc 26 t1() function
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 6 Tuple<int> *t1; variable
  /external/clang/test/CodeGen/
arm-asm-diag.c 9 int64x2x4_t t1(const long long a[]) { function
arm-vector-align.c 15 void t1(AlignedAddr *addr1, AlignedAddr *addr2) { function
16 // CHECK: @t1
  /external/compiler-rt/test/safestack/
pthread-cleanup.c 20 pthread_t t1; local
23 if (pthread_create(&t1, NULL, t1_start, NULL))
25 if (pthread_join(t1, &buffer))
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/
assign_init.pass.cpp 27 const T t1[] = {10, 11, 12, 13}; local
28 C c(std::begin(t1), std::end(t1));
38 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
39 C c(std::begin(t1), std::end(t1));
49 const T t1[] = {10, 11, 12, 13}; local
50 C c(std::begin(t1), std::end(t1));
60 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
    [all...]
assign_op_init.pass.cpp 27 const T t1[] = {10, 11, 12, 13}; local
28 C c(std::begin(t1), std::end(t1));
38 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
39 C c(std::begin(t1), std::end(t1));
49 const T t1[] = {10, 11, 12, 13}; local
50 C c(std::begin(t1), std::end(t1));
60 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
    [all...]
assign_size_value.pass.cpp 25 const T t1[] = {10, 11, 12, 13}; local
26 C c(std::begin(t1), std::end(t1));
36 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
37 C c(std::begin(t1), std::end(t1));
48 const T t1[] = {10, 11, 12, 13}; local
49 C c(std::begin(t1), std::end(t1));
59 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
    [all...]
  /external/libcxx/test/std/language.support/support.rtti/type.info/
type_info.pass.cpp 23 const std::type_info& t1 = typeid(int); local
25 assert(t1 == t2);
27 assert(t1 != t3);
28 assert(!t1.before(t2));
29 assert(strcmp(t1.name(), t2.name()) == 0);
30 assert(strcmp(t1.name(), t3.name()) != 0);
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.volatile.pass.cpp 23 T t1 = t0; local
25 std::shared_ptr<T> p1 = std::make_shared<T>(t1);
27 assert(*p1 == t1);
31 const T t1 = t0; local
33 std::shared_ptr<const T> p1 = std::make_shared<const T>(t1);
35 assert(*p1 == t1);
39 volatile T t1 = t0; local
41 std::shared_ptr<volatile T> p1 = std::make_shared<volatile T>(t1);
43 assert(*p1 == t1);
47 const volatile T t1 = t0 local
    [all...]
  /external/libcxx/test/std/utilities/time/time.point/time.point.cons/
convert.fail.cpp 28 std::chrono::time_point<Clock, Duration1> t1 = t2; local
convert.pass.cpp 29 std::chrono::time_point<Clock, Duration1> t1 = t2; local
30 assert(t1.time_since_epoch() == Duration1(3000));
35 constexpr std::chrono::time_point<Clock, Duration1> t1 = t2; local
36 static_assert(t1.time_since_epoch() == Duration1(3000), "");
  /external/libcxx/test/std/utilities/time/time.point/time.point.nonmember/
op_-duration.pass.cpp 30 TimePoint t1 = t0 - d; local
31 assert(t1 < t0);
40 std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
41 std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5);
46 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
47 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
const_pair.pass.cpp 28 typedef std::tuple<long long, short> T1;
30 T1 t1 = t0; local
31 assert(std::get<0>(t1) == 2);
32 assert(std::get<1>(t1) == short('a'));
37 typedef std::tuple<long long, short> T1;
39 constexpr T1 t1 = p0; local
40 static_assert(std::get<0>(t1) == std::get<0>(p0), "");
41 static_assert(std::get<1>(t1) == std::get<1>(p0), "")
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 34 std::tuple<> t1; local
35 std::tuple<> t2 = std::tuple_cat(t1);
47 std::tuple<int> t1(1);
48 std::tuple<int> t = std::tuple_cat(t1);
58 constexpr std::tuple<> t1; local
59 constexpr std::tuple<> t2 = std::tuple_cat(t1);
71 constexpr std::tuple<int> t1(1);
72 constexpr std::tuple<int> t = std::tuple_cat(t1);
76 constexpr std::tuple<int> t1(1);
77 constexpr std::tuple<int, int> t = std::tuple_cat(t1, t1)
101 std::tuple<> t1; local
107 std::tuple<> t1; local
113 std::tuple<> t1; local
119 std::tuple<int*> t1; local
126 std::tuple<int*> t1; local
133 std::tuple<int*> t1; local
141 std::tuple<int*> t1; local
230 auto t1 = std::tuple_cat( local
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.rel/
eq.pass.cpp 29 typedef std::tuple<> T1;
31 const T1 t1; local
33 assert(t1 == t2);
34 assert(!(t1 != t2));
37 typedef std::tuple<int> T1;
39 const T1 t1(1);
41 assert(!(t1 == t2));
42 assert(t1 != t2)
    [all...]
lt.pass.cpp 41 typedef std::tuple<> T1;
43 const T1 t1; local
45 assert(!(t1 < t2));
46 assert( (t1 <= t2));
47 assert(!(t1 > t2));
48 assert( (t1 >= t2));
51 typedef std::tuple<long> T1;
53 const T1 t1(1)
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_debug_allocator_test.cc 219 float* t1 = a.Allocate<float>(1); local
220 EXPECT_EQ(4, a.RequestedSize(t1));
221 EXPECT_EQ(256, a.AllocatedSize(t1));
222 a.DeallocateRaw(t1);
  /prebuilts/go/darwin-x86/test/fixedbugs/issue14164.dir/
a.go 40 t1
45 type t1 interface { type
  /prebuilts/go/linux-x86/test/fixedbugs/issue14164.dir/
a.go 40 t1
45 type t1 interface { type
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.cons/
assign_init.pass.cpp 27 const T t1[] = {10, 11, 12, 13}; local
28 C c(std::begin(t1), std::end(t1));
38 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
39 C c(std::begin(t1), std::end(t1));
49 const T t1[] = {10, 11, 12, 13}; local
50 C c(std::begin(t1), std::end(t1));
60 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
    [all...]
assign_op_init.pass.cpp 27 const T t1[] = {10, 11, 12, 13}; local
28 C c(std::begin(t1), std::end(t1));
38 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
39 C c(std::begin(t1), std::end(t1));
49 const T t1[] = {10, 11, 12, 13}; local
50 C c(std::begin(t1), std::end(t1));
60 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
    [all...]
assign_size_value.pass.cpp 25 const T t1[] = {10, 11, 12, 13}; local
26 C c(std::begin(t1), std::end(t1));
36 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
37 C c(std::begin(t1), std::end(t1));
48 const T t1[] = {10, 11, 12, 13}; local
49 C c(std::begin(t1), std::end(t1));
59 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
    [all...]

Completed in 907 milliseconds

1 2 34 5 6 7 8 91011>>