HomeSort by relevance Sort by last modified time
    Searched defs:t2 (Results 151 - 175 of 1337) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libcxx/test/std/containers/sequences/array/
indexing.pass.cpp 96 constexpr T t2 = c[2]; local
97 static_assert (t2 == 3.5, "");
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
remove.pass.cpp 37 const T t2[] = {5, 5, 5}; local
39 C c2(std::begin(t2), std::end(t2));
56 const T t2[] = {5, 5, 5}; local
58 C c2(std::begin(t2), std::end(t2));
74 const T t2[] = {5, 5, 5}; local
76 C c2(std::begin(t2), std::end(t2));
84 int t2[] = { 2, 3, 5, 8, 11} local
94 int t2[] = { 2, 3, 5, 8, 11 }; local
111 const T t2[] = {5, 5, 5}; local
130 const T t2[] = {5, 5, 5}; local
148 const T t2[] = {5, 5, 5}; local
    [all...]
splice_after_one.pass.cpp 24 const T t2[] = {10, 11, 12}; variable
26 const std::ptrdiff_t size_t2 = std::end(t2) - std::begin(t2);
37 assert(*i == t2[n2]);
89 C c2(std::begin(t2), std::end(t2));
119 C c2(std::begin(t2), std::end(t2));
splice_after_range.pass.cpp 23 const T t2[] = {10, 11, 12, 13, 14, 15}; variable
25 const int size_t2 = std::end(t2) - std::begin(t2);
36 assert(*i == t2[n2]);
91 C c2(std::begin(t2), std::end(t2));
135 C c2(std::begin(t2), std::end(t2));
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_piecewise_pair.pass.cpp 99 std::tuple<> t2; local
100 test_pmr_uses_allocator<ERT>(t1, t2);
101 test_pmr_uses_allocator<ERT>(t2, t1);
102 test_pmr_uses_allocator<PMR>(t1, t2);
103 test_pmr_uses_allocator<PMR>(t2, t1);
104 test_pmr_uses_allocator<PMA>(t1, t2);
105 test_pmr_uses_allocator<PMA>(t2, t1);
111 std::tuple<int&, double&&> t2(x, std::move(dx));
112 test_pmr_uses_allocator<ERT>( t1, std::move(t2));
113 test_pmr_uses_allocator<ERT>(std::move(t2), t1)
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
copy.pass.cpp 57 test<char> t2 = t; local
61 test<wchar_t> t2 = t; local
68 test<char> t2 = t; local
75 test<wchar_t> t2 = t; local
80 test<char> t2 = t; local
84 test<wchar_t> t2 = t; local
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
assign.pass.cpp 58 test<char> t2; local
59 t2 = t;
63 test<wchar_t> t2; local
64 t2 = t;
71 test<char> t2; local
72 t2 = t;
79 test<wchar_t> t2; local
80 t2 = t;
85 test<char> t2; local
86 t2 = t
90 test<wchar_t> t2; local
    [all...]
swap.pass.cpp 67 test<char> t2; local
68 t2.swap(t);
72 test<wchar_t> t2; local
73 t2.swap(t);
80 test<char> t2; local
81 t2.swap(t);
88 test<wchar_t> t2; local
89 t2.swap(t);
94 test<char> t2; local
95 t2.swap(t)
99 test<wchar_t> t2; local
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR22806_constrain_tuple_like_ctor.pass.cpp 97 std::tuple< T&& > t2(std::move(t1));
98 assert(&std::get<0>(t2) == &t1);
103 std::tuple< T const & > t2(t1);
104 assert(&std::get<0>(t2) == &t1);
112 std::tuple< T & > t2(t1);
113 assert(&std::get<0>(t2) == &t1);
118 std::tuple< T const && > t2(std::move(t1));
119 assert(&std::get<0>(t2) == &t1);
123 std::tuple< T&& > t2(std::allocator_arg, A, std::move(t1));
124 assert(&std::get<0>(t2) == &t1)
159 std::tuple<VT> t2 = {t1}; local
175 std::tuple<VT> t2 = {t1}; local
    [all...]
alloc_convert_move.pass.cpp 96 std::tuple<Explicit> t2{std::allocator_arg, std::allocator<void>{}, std::move(t1)};
97 assert(std::get<0>(t2).value == 42);
101 std::tuple<Implicit> t2 = {std::allocator_arg, std::allocator<void>{}, std::move(t1)}; local
102 assert(std::get<0>(t2).value == 42);
convert_copy.pass.cpp 132 std::tuple<Explicit> t2(t1);
133 assert(std::get<0>(t2).value == 42);
137 std::tuple<Implicit> t2 = t1; local
138 assert(std::get<0>(t2).value == 42);
convert_move.pass.cpp 96 std::tuple<Explicit> t2(std::move(t1));
97 assert(std::get<0>(t2).value == 42);
101 std::tuple<Implicit> t2 = std::move(t1); local
102 assert(std::get<0>(t2).value == 42);
  /external/libmojo/base/android/junit/src/org/chromium/base/
LogTest.java 53 Throwable t2 = new Throwable() { local
78 Log.i("Foo", "Bar %s %s", t, t2);
79 assertEquals(t2, logs.get(logs.size() - 1).throwable);
  /external/llvm/test/MC/Mips/
section-size.s 9 t2: addiu $2, $2, 1 label
  /external/llvm/unittests/Support/
ManagedStatic.cpp 50 pthread_t t1, t2; local
52 pthread_create(&t2, &a2, test1::helper, nullptr);
54 pthread_join(t2, nullptr);
  /external/modp_b64/
modp_b64.cc 86 uint8_t t1, t2, t3; local
90 t1 = str[i]; t2 = str[i+1]; t3 = str[i+2];
92 *p++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)];
93 *p++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)];
109 t1 = str[i]; t2 = str[i+1];
111 *p++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)];
112 *p++ = e2[(t2 & 0x0F) << 2];
  /external/python/cpython2/Demo/pdist/
cmptree.py 35 t2 = time.time() variable
36 dt = t2-t1
147 t2 = time.time()
149 dt = t2-t1
194 t2 = time.time()
197 dt = t2-t1
  /external/tensorflow/tensorflow/contrib/lite/
string_util_test.cc 40 TfLiteTensor* t2 = interpreter.tensor(2); local
70 ASSERT_EQ(GetStringCount(t2), 1);
71 str_ref = GetString(t2, 0);
73 ASSERT_EQ(t2->bytes, 15);
  /external/testng/src/test/java/test/junit4/
JUnit4ParameterizedTest.java 17 public static final String[] EXPECTED = {"t2[0]", "t2[1]", "t4[0]"};
33 public void t2() { method in class:JUnit4ParameterizedTest
JUnit4Sample2.java 14 public static final String[] EXPECTED = {"t2", "t4"};
19 public void t2() { method in class:JUnit4Sample2
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
CatmullRom.java 30 float t2 = (d - b) * 0.5f; local
37 return b * h1 + c * h2 + t1 * h3 + t2 * h4;
  /external/valgrind/memcheck/tests/
origin2-not-quite.c 17 __attribute__((noinline)) int t2(void);
26 x += t2();
41 __attribute__((noinline)) int t2(void) function
varinforestrict.c 40 const char *t2 = s2; local
42 *t1++ = *t2++;
  /external/webrtc/webrtc/common_audio/signal_processing/
cross_correlation_mips.c 21 int32_t t0 = 0, t1 = 0, t2 = 0, t3 = 0, sum = 0; local
44 "lh %[t2], 2(%[pseq1]) \n\t"
48 "mul %[t2], %[t2], %[t3] \n\t"
53 "srav %[t2], %[t2], %[right_shifts] \n\t"
55 " addu %[sum], %[sum], %[t2] \n\t"
72 "lh %[t2], 2(%[pseq1]) \n\t"
76 "mul %[t2], %[t2], %[t3] \n\t
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];

Completed in 1490 milliseconds

1 2 3 4 5 67 8 91011>>