HomeSort by relevance Sort by last modified time
    Searched defs:t2 (Results 126 - 150 of 842) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/third_party/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/chromium_org/v8/test/mjsunit/regress/
regress-binop-nosse2.js 155 function t2(a, b) {return a/b} function
156 assertEquals(t2(1,2), 1/2);
157 assertEquals(t2(null,2), 0/2);
158 assertEquals(t2(null,-2), 0/-2);
159 assertEquals(t2(2,null), 2/0);
160 assertEquals(t2(-2,null), -2/0);
161 assertEquals(t2(1,2.4), 1/2.4);
162 assertEquals(t2(1.3,2.4), 1.3/2.4);
163 assertEquals(t2(null,2.4), 0/2.4);
164 assertEquals(t2(1.3,null), 1.3/0)
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x-fixits.cpp 22 struct {T t;} t2 = {700}; local
  /external/clang/test/CXX/temp/temp.param/
p3.cpp 25 ::T t2 = ::i; // global namespace members T and i \ local
  /external/clang/test/CodeGenCXX/
bitfield-layout.cpp 13 } t2; variable in typeref:union:Test2
  /external/clang/test/Sema/
attr-cleanup.c 29 void t2() function
ms-inline-asm.c 54 int t2(int *arr, int i) { function
warn-char-subscripts.c 9 void t2() { function
  /external/clang/test/SemaCXX/
attr-cleanup.cpp 18 void t2() { function in class:D
trivial-constructor.cpp 7 struct T2 {
8 T2();
10 static_assert(!__has_trivial_constructor(T2), "T2 has a user-declared constructor!");
28 static T2 t2; member in struct:T6
37 struct T8 : T2 {
39 static_assert(!__has_trivial_constructor(T8), "The base class T2 does not have a trivial constructor!");
trivial-destructor.cpp 7 struct T2 {
8 ~T2();
10 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
28 static T2 t2; member in struct:T6
33 T2 t2; member in struct:T7
35 static_assert(!__has_trivial_destructor(T7), "t2 does not have a trivial destructor!");
37 struct T8 : T2 {
    [all...]
  /external/clang/test/SemaTemplate/
fun-template-def.cpp 21 T t2 = i1; local
22 t2 = i1 + u1;
metafun-apply.cpp 37 apply1<bogus, int>::type t2; // expected-note{{in instantiation of template class 'apply1<bogus, int>' requested here}} local
  /external/fdlibm/
e_hypot.c 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
31 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
55 double a=x,b=y,t1,t2,y1,y2,w; local
98 t2 = a-t1;
99 w = ieee_sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
107 t2 = a - t1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/harfbuzz_ng/src/
hb-utf-private.hh 68 unsigned int t1, t2; local
71 (t2 = text[1] - 0x80u) <= 0x3Fu))
73 c = ((c&0xFu)<<12) | (t1<<6) | t2;
83 unsigned int t1, t2, t3; local
86 (t2 = text[1] - 0x80u) <= 0x3Fu &&
89 c = ((c&0x7u)<<18) | (t1<<12) | (t2<<6) | t3;
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
splice_after_one.pass.cpp 22 const T t2[] = {10, 11, 12}; variable
24 const int size_t2 = std::end(t2) - std::begin(t2);
35 assert(*i == t2[n2]);
88 C c2(std::begin(t2), std::end(t2));
118 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/input.output/stream.buffers/streambuf/streambuf.cons/
copy.pass.cpp 55 test<char> t2 = t; local
59 test<wchar_t> t2 = t; local
66 test<char> t2 = t; local
73 test<wchar_t> t2 = t; local
78 test<char> t2 = t; local
82 test<wchar_t> t2 = t; local
  /external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
assign.pass.cpp 56 test<char> t2; local
57 t2 = t;
61 test<wchar_t> t2; local
62 t2 = t;
69 test<char> t2; local
70 t2 = t;
77 test<wchar_t> t2; local
78 t2 = t;
83 test<char> t2; local
84 t2 = t
88 test<wchar_t> t2; local
    [all...]
swap.pass.cpp 66 test<char> t2; local
67 swap(t2, t);
71 test<wchar_t> t2; local
72 swap(t2, t);
79 test<char> t2; local
80 swap(t2, t);
87 test<wchar_t> t2; local
88 swap(t2, t);
93 test<char> t2; local
94 swap(t2, t)
98 test<wchar_t> t2; local
    [all...]
  /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/valgrind/main/memcheck/tests/
origin2-not-quite.c 17 __attribute__((noinline)) int t2(void);
26 x += t2();
41 __attribute__((noinline)) int t2(void) function
  /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];
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_cor.cpp 228 Word32 t2; local
238 t2 = 0;
249 t2 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p1), t2);
254 t2 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p1), t2);
260 *(corr++) = t2 << 1;

Completed in 1252 milliseconds

1 2 3 4 56 7 8 91011>>