HomeSort by relevance Sort by last modified time
    Searched refs:t0 (Results 26 - 50 of 1496) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
micromips@24k-triple-stores-5.d 11 *[0-9a-f]+: 3848 0007 sh v0,7\(t0\)
12 *[0-9a-f]+: 1868 0000 sb v1,0\(t0\)
13 *[0-9a-f]+: f888 0001 sw a0,1\(t0\)
15 *[0-9a-f]+: 3848 0016 sh v0,22\(t0\)
16 *[0-9a-f]+: 1868 000f sb v1,15\(t0\)
17 *[0-9a-f]+: f888 0018 sw a0,24\(t0\)
19 *[0-9a-f]+: 3848 0000 sh v0,0\(t0\)
20 *[0-9a-f]+: 1868 0009 sb v1,9\(t0\)
21 *[0-9a-f]+: f888 0002 sw a0,2\(t0\)
23 *[0-9a-f]+: 3848 0006 sh v0,6\(t0\)
    [all...]
micromips@24k-triple-stores-4.d 11 *[0-9a-f]+: 1a68 000a sb s3,10\(t0\)
12 *[0-9a-f]+: 3a68 0001 sh s3,1\(t0\)
13 *[0-9a-f]+: 1a68 0020 sb s3,32\(t0\)
15 *[0-9a-f]+: 1a68 000a sb s3,10\(t0\)
16 *[0-9a-f]+: 1a68 0001 sb s3,1\(t0\)
17 *[0-9a-f]+: 3a68 0020 sh s3,32\(t0\)
19 *[0-9a-f]+: 1a68 0021 sb s3,33\(t0\)
20 *[0-9a-f]+: 3a68 0037 sh s3,55\(t0\)
21 *[0-9a-f]+: 1a68 0040 sb s3,64\(t0\)
23 *[0-9a-f]+: 1a68 0021 sb s3,33\(t0\)
    [all...]
micromips@24k-triple-stores-8.d 11 *[0-9a-f]+: 1a68 0000 sb s3,0\(t0\)
12 *[0-9a-f]+: 1a68 0001 sb s3,1\(t0\)
13 *[0-9a-f]+: 1a68 0018 sb s3,24\(t0\)
15 *[0-9a-f]+: 1a68 0000 sb s3,0\(t0\)
16 *[0-9a-f]+: 1a68 0001 sb s3,1\(t0\)
17 *[0-9a-f]+: 1a68 0019 sb s3,25\(t0\)
19 *[0-9a-f]+: 1a68 0001 sb s3,1\(t0\)
20 *[0-9a-f]+: 1a68 0019 sb s3,25\(t0\)
21 *[0-9a-f]+: 1a68 001a sb s3,26\(t0\)
23 *[0-9a-f]+: 1a68 0000 sb s3,0\(t0\)
    [all...]
micromips@24k-triple-stores-7.d 11 *[0-9a-f]+: 1a68 0004 sb s3,4\(t0\)
12 *[0-9a-f]+: fa68 0008 sw s3,8\(t0\)
13 *[0-9a-f]+: 1a68 000f sb s3,15\(t0\)
15 *[0-9a-f]+: 1a68 0003 sb s3,3\(t0\)
16 *[0-9a-f]+: fa68 0008 sw s3,8\(t0\)
17 *[0-9a-f]+: 1a68 000f sb s3,15\(t0\)
19 *[0-9a-f]+: fa68 001c sw s3,28\(t0\)
20 *[0-9a-f]+: fa68 0008 sw s3,8\(t0\)
21 *[0-9a-f]+: 1a68 001f sb s3,31\(t0\)
23 *[0-9a-f]+: 1a68 0005 sb s3,5\(t0\)
    [all...]
mips32-mt.d 23 0+0030 <[^>]*> 41004000 mftc0 t0,c0_index
24 0+0034 <[^>]*> 41004001 mftc0 t0,\$0,1
25 0+0038 <[^>]*> 41004002 mftc0 t0,\$0,2
26 0+003c <[^>]*> 41004003 mftc0 t0,\$0,3
27 0+0040 <[^>]*> 41004004 mftc0 t0,\$0,4
28 0+0044 <[^>]*> 41004005 mftc0 t0,\$0,5
29 0+0048 <[^>]*> 41004006 mftc0 t0,\$0,6
30 0+004c <[^>]*> 41004007 mftc0 t0,\$0,7
31 0+0050 <[^>]*> 41014000 mftc0 t0,c0_random
32 0+0054 <[^>]*> 41014001 mftc0 t0,\$1,
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.special/
non_member_swap.pass.cpp 28 T t0; local
30 swap(t0, t1);
34 T t0(MoveOnly(0));
36 swap(t0, t1);
37 assert(std::get<0>(t0) == 1);
42 T t0(MoveOnly(0), MoveOnly(1));
44 swap(t0, t1);
45 assert(std::get<0>(t0) == 2);
46 assert(std::get<1>(t0) == 3);
52 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.swap/
member_swap.pass.cpp 27 T t0; local
29 t0.swap(t1);
33 T t0(MoveOnly(0));
35 t0.swap(t1);
36 assert(std::get<0>(t0) == 1);
41 T t0(MoveOnly(0), MoveOnly(1));
43 t0.swap(t1);
44 assert(std::get<0>(t0) == 2);
45 assert(std::get<1>(t0) == 3);
51 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
levinson.cpp 482 Word32 t0, t1, t2; // temporary variable
488 t0 = Div_32 (t2, Rh[0], Rl[0]); // R[1]/R[0]
490 t0 = L_negate (t0); // -R[1]/R[0]
491 L_Extract (t0, &Kh, &Kl); // K in DPF
493 rc[0] = pv_round (t0);
495 t0 = L_shr (t0, 4); // A[1] in
496 L_Extract (t0, &Ah[1], &Al[1]); // A[1] in DPF
500 t0 = Mpy_32 (Kh, Kl, Kh, Kl); // K*
654 Word32 t0; \/* temporary variable *\/ local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.special/
non_member_swap.pass.cpp 28 T t0; local
30 swap(t0, t1);
34 T t0(MoveOnly(0));
36 swap(t0, t1);
37 assert(std::get<0>(t0) == 1);
42 T t0(MoveOnly(0), MoveOnly(1));
44 swap(t0, t1);
45 assert(std::get<0>(t0) == 2);
46 assert(std::get<1>(t0) == 3);
52 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.swap/
member_swap.pass.cpp 27 T t0; local
29 t0.swap(t1);
33 T t0(MoveOnly(0));
35 t0.swap(t1);
36 assert(std::get<0>(t0) == 1);
41 T t0(MoveOnly(0), MoveOnly(1));
43 t0.swap(t1);
44 assert(std::get<0>(t0) == 2);
45 assert(std::get<1>(t0) == 3);
51 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2))
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
ifunc-2-local.d 6 [ \t0-9a-f]+:[ \t0-9a-f]+bl[ \t0-9a-f]+<\*ABS\*\+(0x2a0|0x2f0)@plt>
7 [ \t0-9a-f]+:[ \t0-9a-f]+adrp[ \t]+x0, 0 <.*>
8 [ \t0-9a-f]+:[ \t0-9a-f]+add[ \t]+x0, x0, #(0x290|0x2e0)
ifunc-2.d 6 [ \t0-9a-f]+:[ \t0-9a-f]+bl[ \t0-9a-f]+<\*ABS\*\+(0x2c0|0x308)@plt>
7 [ \t0-9a-f]+:[ \t0-9a-f]+adrp[ \t]+x0, 0 <.*>
8 [ \t0-9a-f]+:[ \t0-9a-f]+add[ \t]+x0, x0, #(0x2b0|0x2f8)
ifunc-1-local.d 6 [ \t0-9a-f]+:[ \t0-9a-f]+bl[ \t0-9a-f]+<\*ABS\*\+(0x2a0|0x2f0)@plt>
ifunc-1.d 6 [ \t0-9a-f]+:[ \t0-9a-f]+bl[ \t0-9a-f]+<\*ABS\*\+(0x2c0|0x308)@plt>
ifunc-3a.d 7 [ \t0-9a-f]+:[ \t0-9a-f]+bl[ \t0-9a-f]+<\*ABS\*\+(0x2e0|0x330)@plt>
  /external/python/cpython3/Modules/_blake2/impl/
blake2s-load-sse41.h 32 t0 = _mm_blend_epi16(m1, m2, 0x0C); \
34 t2 = _mm_blend_epi16(t0, t1, 0xF0); \
38 t0 = _mm_shuffle_epi32(m2,_MM_SHUFFLE(0,0,2,0)); \
40 t2 = _mm_blend_epi16(t0, t1, 0xF0); \
44 t0 = _mm_slli_si128(m1, 4); \
45 t1 = _mm_blend_epi16(m2, t0, 0x30); \
50 t0 = _mm_unpackhi_epi32(m0,m1); \
52 t2 = _mm_blend_epi16(t0, t1, 0x0C); \
56 t0 = _mm_unpackhi_epi32(m2,m3); \
58 t2 = _mm_blend_epi16(t0, t1, 0x0F);
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
az_isp.c 71 Word32 t0; local
89 t0 = a[i] << 15;
90 f1[i] = vo_round(t0 + (a[M - i] << 15)); /* =(a[i]+a[M-i])/2 */
91 f2[i] = vo_round(t0 - (a[M - i] << 15)); /* =(a[i]-a[M-i])/2 */
155 t0 = x * y;
156 t0 = (t0 >> (19 - exp));
157 y = vo_extract_l(t0); /* y= (xhigh-xlow)/(yhigh-ylow) in Q11 */
160 t0 = ylow * y; /* result in Q26 */
161 t0 = (t0 >> 10); /* result in Q15 *
218 Word32 t0; local
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ifunc/
ifunc-1-local-x86.d 6 [ \t0-9a-f]+:[ \t0-9a-f]+call[ \t0-9a-fq]+<\*ABS\*(\+0x160|\+0x170|\+0x1e0|)@plt>
ifunc-1-x86.d 6 [ \t0-9a-f]+:[ \t0-9a-f]+call[ \t0-9a-fq]+<\*ABS\*(\+0x170|\+0x190|\+0x210|)@plt>
ifunc-2-i386.d 7 [ \t0-9a-f]+:[ \t0-9a-f]+call[ \t0-9a-f]+<\*ABS\*@plt>
ifunc-2-local-i386.d 7 [ \t0-9a-f]+:[ \t0-9a-f]+call[ \t0-9a-f]+<\*ABS\*@plt>
ifunc-3a-x86.d 7 [ \t0-9a-f]+:[ \t0-9a-f]+call[ \t0-9a-fq]+<\*ABS\*(\+0x190|\+0x1a0|\+0x1b0|\+0x220|)@plt>
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.volatile.pass.cpp 20 void test(const T &t0)
23 T t1 = t0;
24 std::shared_ptr<T> p0 = std::make_shared<T>(t0);
26 assert(*p0 == t0);
31 const T t1 = t0;
32 std::shared_ptr<const T> p0 = std::make_shared<const T>(t0);
34 assert(*p0 == t0);
39 volatile T t1 = t0;
40 std::shared_ptr<volatile T> p0 = std::make_shared<volatile T>(t0);
42 assert(*p0 == t0);
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.volatile.pass.cpp 20 void test(const T &t0)
23 T t1 = t0;
24 std::shared_ptr<T> p0 = std::make_shared<T>(t0);
26 assert(*p0 == t0);
31 const T t1 = t0;
32 std::shared_ptr<const T> p0 = std::make_shared<const T>(t0);
34 assert(*p0 == t0);
39 volatile T t1 = t0;
40 std::shared_ptr<volatile T> p0 = std::make_shared<volatile T>(t0);
42 assert(*p0 == t0);
    [all...]
  /external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/
join.pass.cpp 54 std::thread t0(g);
55 assert(t0.joinable());
56 t0.join();
57 assert(!t0.joinable());
60 t0.join();
68 std::thread t0(foo);
69 t0.detach();
71 t0.join();

Completed in 367 milliseconds

12 3 4 5 6 7 8 91011>>