/external/clang/test/CodeGen/ |
arm-vaarg-align.c | 22 double t2(int i, ...) { function 23 // AAPCS: t2 24 // APCS-GNU: t2
|
arm-vector-align.c | 24 void t2(char *addr) { function 25 // CHECK: @t2
|
asm_arm64.c | 12 long t2() function
|
ms-declspecs.c | 23 // CHECK: define void @t2() [[NI:#[0-9]+]] { 24 __declspec(noinline) void t2() {}
|
/external/clang/test/CodeGenCXX/ |
bitfield-layout.cpp | 13 } t2; variable in typeref:union:Test2
|
/external/clang/test/PCH/Inputs/ |
namespaces.h | 8 typedef int t2; typedef in namespace:N1
|
/external/clang/test/Parser/ |
cxx-friend.cpp | 41 template <typename t1, typename t2> class some_template;
|
/external/clang/test/Sema/ |
vector-cast.c | 4 typedef char t2 __attribute__ ((vector_size (16))); typedef 10 t2 v2; 13 v2 = (t2)v1; // expected-error {{invalid conversion between vector type \ 14 't2' (vector of 16 'char' values) and 't1' (vector of 1 'long long' value) of different size}} 16 't1' (vector of 1 'long long' value) and 't2' (vector of 16 'char' values) of different size}} 33 void f2(t2 X); // expected-note{{passing argument to parameter 'X' here}} 36 f2(Y); // expected-warning {{incompatible vector types passing 't3' (vector of 4 'float' values) to parameter of type 't2' (vector of 16 'char' values)}}
|
wchar.c | 22 WCHAR_T_TYPE t2[] = "x"; // expected-error {{initializing wide char array with non-wide string literal}} local
|
/external/libcxx/test/thread/thread.mutex/thread.lock/ |
types.pass.cpp | 26 typedef std::try_to_lock_t T2; 30 T2 t2 = std::try_to_lock; local
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testtimer.c | 30 SDL_TimerID t1, t2, t3; local 66 t2 = SDL_AddTimer(50, callback, (void*)2); 67 if(!t2) 82 SDL_RemoveTimer(t2);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/ |
types.pass.cpp | 26 typedef std::try_to_lock_t T2; 30 T2 t2 = std::try_to_lock; local
|
/system/extras/tests/bionic/libc/bionic/ |
test_pthread_create.c | 22 pthread_t t1, t2; local
|
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/ |
x86SP_FFT_CToC_FC32_Fwd_Radix4_ls.c | 28 OMX_FC32 t2; local 64 // CADD t2, tt1, tt3 65 t2.Re = tt1.Re + tt3.Re; 66 t2.Im = tt1.Im + tt3.Im; 72 // CADD out0, t0, t2 73 out0[0] = t0.Re + t2.Re; 74 out0[n] = t0.Im + t2.Im; 76 // CSUB out2, t0, t2 77 out2[0] = t0.Re - t2.Re; 78 out2[n] = t0.Im - t2.Im [all...] |
x86SP_FFT_CToC_FC32_Inv_Radix4_ls.c | 28 OMX_FC32 t2; local 64 // CADD t2, tt1, tt3 65 t2.Re = tt1.Re + tt3.Re; 66 t2.Im = tt1.Im + tt3.Im; 72 // CADD out0, t0, t2 73 out0[0] = t0.Re + t2.Re; 74 out0[n] = t0.Im + t2.Im; 76 // CSUB out2, t0, t2 77 out2[0] = t0.Re - t2.Re; 78 out2[n] = t0.Im - t2.Im [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
stack_trace_table_test.cc | 50 tcmalloc::StackTrace t2; local 51 t2.size = static_cast<uintptr_t>(512); 52 t2.depth = static_cast<uintptr_t>(2); 53 t2.stack[0] = reinterpret_cast<void*>(2); 54 t2.stack[1] = reinterpret_cast<void*>(1); 63 // Table w/ t1, t2 65 AddTrace(&table, t2); 71 // Table w/ 2 x t1, 1 x t2 73 AddTrace(&table, t2);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
stack_trace_table_test.cc | 50 tcmalloc::StackTrace t2; local 51 t2.size = static_cast<uintptr_t>(512); 52 t2.depth = static_cast<uintptr_t>(2); 53 t2.stack[0] = reinterpret_cast<void*>(2); 54 t2.stack[1] = reinterpret_cast<void*>(1); 63 // Table w/ t1, t2 65 AddTrace(&table, t2); 71 // Table w/ 2 x t1, 1 x t2 73 AddTrace(&table, t2);
|
/external/chromium_org/v8/test/cctest/ |
test-disasm-mips.cc | 101 COMPARE(addu(t2, t3, t4), 102 "016c5021 addu t2, t3, t4"); 108 COMPARE(subu(t2, t3, t4), 109 "016c5023 subu t2, t3, t4"); 115 COMPARE(mult(t2, t3), 116 "014b0018 mult t2, t3"); 122 COMPARE(multu(t2, t3), 123 "014b0019 multu t2, t3"); 129 COMPARE(div(t2, t3), 130 "014b001a div t2, t3") [all...] |
/external/ipsec-tools/src/racoon/ |
misc.c | 159 * t2: end 162 timedelta(t1, t2) 163 struct timeval *t1, *t2; 165 if (t2->tv_usec >= t1->tv_usec) 166 return t2->tv_sec - t1->tv_sec + 167 (double)(t2->tv_usec - t1->tv_usec) / 1000000; 169 return t2->tv_sec - t1->tv_sec - 1 + 170 (double)(1000000 + t2->tv_usec - t1->tv_usec) / 1000000;
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkQuarticRoot.cpp | 32 int SkReducedQuarticRoots(const double t4, const double t3, const double t2, const double t1, 42 t4, t3, t2, t1, t0); 50 && approximately_zero_when_compared_to(t4, t2)) { 53 && approximately_zero_when_compared_to(t3, t2)) { 54 return SkDQuad::RootsReal(t2, t1, t0, roots); 57 return SkDCubic::RootsReal(t3, t2, t1, t0, roots); 61 // && approximately_zero_when_compared_to(t0, t2) 64 int num = SkDCubic::RootsReal(t4, t3, t2, t1, roots); 74 SkASSERT(approximately_zero_double(t4 + t3 + t2 + t1 + t0) || 75 approximately_zero_when_compared_to(t4 + t3 + t2 + t1 + t0, // 1 is one roo [all...] |
/external/skia/src/pathops/ |
SkQuarticRoot.cpp | 32 int SkReducedQuarticRoots(const double t4, const double t3, const double t2, const double t1, 42 t4, t3, t2, t1, t0); 50 && approximately_zero_when_compared_to(t4, t2)) { 53 && approximately_zero_when_compared_to(t3, t2)) { 54 return SkDQuad::RootsReal(t2, t1, t0, roots); 57 return SkDCubic::RootsReal(t3, t2, t1, t0, roots); 61 // && approximately_zero_when_compared_to(t0, t2) 64 int num = SkDCubic::RootsReal(t4, t3, t2, t1, roots); 74 SkASSERT(approximately_zero_double(t4 + t3 + t2 + t1 + t0) || 75 approximately_zero_when_compared_to(t4 + t3 + t2 + t1 + t0, // 1 is one roo [all...] |
/external/valgrind/main/none/tests/mips64/ |
logical_instructions.c | 21 TEST1("and $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1], 22 t0, t1, t2); 31 TEST2("andi $t2, $t3, 0xffff", reg_val1[i], 0xffff, t2, t3); 35 TEST2("andi $t2, $t3, 0xffff", reg_val2[i], 0xffff, t2, t3); 54 TEST1("nor $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1], 55 t0, t1, t2); 62 TEST1("or $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1], 63 t0, t1, t2); [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/ |
Test_monitor_enter.java | 139 private T_monitor_enter_2 t2; field in class:TestRunnable2 141 TestRunnable2(T_monitor_enter_2 t2, int val) { 142 this.t2 = t2; 148 t2.run(val);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 37 t2 = writeTmp(2, ["Line %s of file 2\n" % (i+1) for i in range(10)]) 40 self.buffer_size_test(t1, t2, t3, t4, bs, round) 42 remove_tempfiles(t1, t2, t3, t4) 44 def buffer_size_test(self, t1, t2, t3, t4, bs=0, round=0): 50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 65 self.assertEqual(fi.filename(), t2) 80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs) 94 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 37 t2 = writeTmp(2, ["Line %s of file 2\n" % (i+1) for i in range(10)]) 40 self.buffer_size_test(t1, t2, t3, t4, bs, round) 42 remove_tempfiles(t1, t2, t3, t4) 44 def buffer_size_test(self, t1, t2, t3, t4, bs=0, round=0): 50 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 61 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 65 self.assertEqual(fi.filename(), t2) 80 fi = FileInput(files=(t1, t2, t3, t4, '-'), bufsize=bs) 94 fi = FileInput(files=(t1, t2, t3, t4), bufsize=bs) 105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs [all...] |