Searched refs:t0 (Results 51 - 75 of 409) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_convert_move.pass.cpp48 T0 t0(2);
50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
57 T0 t0(std::unique_ptr<D>(new D(3)));
58 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
64 T0 t0(2, std::unique_ptr<D>(new D(3)));
66 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
74 T0 t0(1, 2, std::unique_ptr<D>(new D(3)));
77 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
H A Dalloc_const_pair.pass.cpp32 T0 t0(2, 3);
33 T1 t1(std::allocator_arg, A1<int>(5), t0);
40 T0 t0(2, 3);
42 T1 t1(std::allocator_arg, A1<int>(5), t0);
50 T0 t0(2, 3);
53 T1 t1(std::allocator_arg, A1<int>(5), t0);
H A Dmove_pair.pass.cpp43 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
44 T1 t1 = std::move(t0);
/external/openssh/
H A Dfe25519.c228 fe25519 t0; local
234 /* 8 */ fe25519_square(&t0,&t1);
235 /* 9 */ fe25519_mul(&z9,&t0,x);
237 /* 22 */ fe25519_square(&t0,&z11);
238 /* 2^5 - 2^0 = 31 */ fe25519_mul(&z2_5_0,&t0,&z9);
240 /* 2^6 - 2^1 */ fe25519_square(&t0,&z2_5_0);
241 /* 2^7 - 2^2 */ fe25519_square(&t1,&t0);
242 /* 2^8 - 2^3 */ fe25519_square(&t0,&t1);
243 /* 2^9 - 2^4 */ fe25519_square(&t1,&t0);
244 /* 2^10 - 2^5 */ fe25519_square(&t0,
[all...]
/external/boringssl/src/crypto/sha/asm/
H A Dsha512-armv4.pl78 $t0="r9";
102 mov $t0,$Elo,lsr#14
106 eor $t0,$t0,$Ehi,lsl#18
110 eor $t0,$t0,$Elo,lsr#18
112 eor $t0,$t0,$Ehi,lsl#14
114 eor $t0,$t0,
[all...]
/external/opencv/cv/src/
H A Dcvdistransform.cpp97 int t0 = tmp[j-step-1] + DIAG_DIST; local
99 if( t0 > t ) t0 = t;
101 if( t0 > t ) t0 = t;
103 if( t0 > t ) t0 = t;
104 tmp[j] = t0;
117 int t0 = tmp[j]; local
118 if( t0 > HV_DIS
170 int t0 = tmp[j-step*2-1] + LONG_DIST; local
198 int t0 = tmp[j]; local
266 int t0 = ICV_INIT_DIST0, t; local
333 int t0 = tmp[j]; local
[all...]
/external/valgrind/none/tests/mips64/
H A Darithmetic_instruction.c31 TEST1("add $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
32 t0, t1, t2);
39 TEST2("addi $t0, $t1, 0xff", reg_val1[i], 0xff, t0, t1);
49 TEST2("addiu $t0, $t1, 0xff", reg_val1[i], 0xff, t0, t1);
59 TEST1("addu $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
60 t0, t1, t2);
67 TEST3("clo $t0, $t1", reg_val1[i], t0, t
[all...]
H A Dlogical_instructions.c21 TEST1("and $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
22 t0, t1, t2);
30 TEST2("andi $t0, $t1, 0xff", reg_val1[i], 0xff, t0, t1);
34 TEST2("andi $t0, $t1, 0xff", reg_val2[i], 0xff, t0, t1);
44 TEST6("lui $t0, 0xffff", 0xffff, t0);
54 TEST1("nor $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
55 t0, t
[all...]
H A Dshift_instructions.c24 TEST2("drotr $t0, $t1, 0x00", reg_val1[i], 0x00, t0, t1);
28 TEST2("drotr $t0, $t1, 0x00", reg_val2[i], 0x00, t0, t1);
37 TEST2("drotr32 $t0, $t1, 0x00", reg_val1[i], 0x00, t0, t1);
41 TEST2("drotr32 $t0, $t1, 0x00", reg_val2[i], 0x00, t0, t1);
50 TEST1("drotrv $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
51 t0, t
[all...]
/external/libcxx/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
H A Dcall_once.pass.cpp162 std::thread t0(f0);
164 t0.join();
170 std::thread t0(f3);
172 t0.join();
179 std::thread t0(f41);
181 t0.join();
189 std::thread t0(f1);
191 t0.join();
197 std::thread t0(f2);
199 t0
[all...]
/external/eigen/test/eigen2/
H A Deigen2_geometry.cpp138 Transform3 t0, t1, t2; local
140 t0.setIdentity();
141 VERIFY_IS_APPROX(t0.matrix(), Transform3::MatrixType::Identity());
142 t0.matrix().setZero();
143 t0 = Transform3::Identity();
144 VERIFY_IS_APPROX(t0.matrix(), Transform3::MatrixType::Identity());
146 t0.linear() = q1.toRotationMatrix();
151 t0.scale(v0);
154 VERIFY_IS_APPROX( (t0 * Vector3(1,0,0)).norm(), v0.x());
157 t0
[all...]
H A Deigen2_geometry_with_eigen2_prefix.cpp140 Transform3 t0, t1, t2; local
142 t0.setIdentity();
143 VERIFY_IS_APPROX(t0.matrix(), Transform3::MatrixType::Identity());
144 t0.matrix().setZero();
145 t0 = Transform3::Identity();
146 VERIFY_IS_APPROX(t0.matrix(), Transform3::MatrixType::Identity());
148 t0.linear() = q1.toRotationMatrix();
153 t0.scale(v0);
156 VERIFY_IS_APPROX( (t0 * Vector3(1,0,0)).norm(), v0.x());
159 t0
[all...]
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_thread.cc17 MainThread t0; local
19 t0.Write1(l);
24 t0.Write1(l);
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/
H A Dmove2.pass.cpp68 std::thread t0(G(), 5, 5.5);
69 std::thread::id id = t0.get_id();
71 t0 = std::move(t1);
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
H A Dmove_pair.pass.cpp44 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
46 t1 = std::move(t0);
/external/llvm/test/MC/Mips/
H A Dsym-expr.s3 # RUN: llvm-mc -triple=mipsel -show-inst-operands %s 2> %t0
4 # RUN: FileCheck %s < %t0
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/
H A Dassign_move.pass.cpp29 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
32 C c0(I(std::begin(t0)), I(std::end(t0)), A(10));
46 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
49 C c0(I(std::begin(t0)), I(std::end(t0)), A(10));
63 T t0[] = {10, 11, 12, 13}; local
66 C c0(I(std::begin(t0)), I(std::end(t0)), A(10));
80 T t0[] local
98 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
115 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
132 T t0[] = {10, 11, 12, 13}; local
149 T t0[] = {10, 11, 12, 13}; local
167 T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
184 T t0[] = {10, 11, 12, 13}; local
[all...]
/external/opencv/cxcore/src/
H A Dcxrand.cpp86 unsigned t0, t1; \
89 t0 = ((unsigned)temp & p[i + 12]) + p[i]; \
92 arr[i] = cast_macro((int)t0); \
96 t0 = ((unsigned)temp & p[i + 14]) + p[i+2]; \
99 arr[i+2] = cast_macro((int)t0); \
113 unsigned t0, t1, t; \
117 t0 = (t & p[i + 12]) + p[i]; \
119 arr[i] = cast_macro((int)t0); \
122 t0 = ((t >> 16) & p[i + 14]) + p[i + 2]; \
124 arr[i+2] = cast_macro((int)t0); \
225 Cv64suf t0, t1; local
255 Cv64suf t0; local
515 int t0 = iparam[0][i] = cvCeil( param1.val[i] ); local
530 int t0 = iparam[0][i - channels]; local
544 double t0 = param1.val[i]; local
558 double t0 = param1.val[i]; local
576 double t0 = dparam[0][i - channels]; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DSecondOrderIntegrator.java40 * @param t0 initial time
41 * @param y0 initial value of the state vector at t0
43 * vector at t0
45 * (can be set to a value smaller thant <code>t0</code> for backward integration)
56 double t0, double[] y0, double[] yDot0,
55 integrate(SecondOrderDifferentialEquations equations, double t0, double[] y0, double[] yDot0, double t, double[] y, double[] yDot) argument
/external/libcxx/test/std/atomics/atomics.types.generic/
H A Dtrivially_copyable.fail.cpp64 std::atomic<T> t0(t);
H A Dtrivially_copyable.pass.cpp69 std::atomic<T> t0(t);
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
H A Dmutex.pass.cpp36 time_point t0 = Clock::now(); local
42 ns d = t1 - t0 - ms(250);
48 time_point t0 = Clock::now();
54 ns d = t1 - t0;
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
H A Dmutex_duration.pass.cpp34 time_point t0 = Clock::now(); local
38 ns d = t1 - t0 - ms(250);
44 time_point t0 = Clock::now();
48 ns d = t1 - t0 - ms(250);
H A Dmutex_time_point.pass.cpp34 time_point t0 = Clock::now(); local
38 ns d = t1 - t0 - ms(250);
44 time_point t0 = Clock::now();
48 ns d = t1 - t0 - ms(250);
/external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
H A Dlock_shared.pass.cpp36 time_point t0 = Clock::now(); local
40 ns d = t1 - t0 - ms(250);
46 time_point t0 = Clock::now();
50 ns d = t1 - t0;

Completed in 1893 milliseconds

1234567891011>>