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

1 2 3 4 5 6 78 91011>>

  /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;
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
ortho.h 13 const T t2 = static_cast<T>(2); local
14 const T a = t2 / (right - left);
15 const T b = t2 / (top - bottom);
16 const T c = t2 / (zfar - znear);
  /packages/apps/Gallery/tests/src/com/android/camera/
BitmapManagerUnitTests.java 124 DecodeThread t2 = new DecodeThread(); local
126 mBitmapManager.cancelThreadDecoding(t2, mContext.getContentResolver());
128 t2.start();
132 t2.join();
137 assertFalse(mBitmapManager.canThreadDecoding(t2));
138 assertNull(t2.getBitmap());
  /prebuilts/go/darwin-x86/test/
func2.go 13 type t2 int type
16 func f1(t1, t2, t3)
17 func f2(t1, t2, t3 bool)
18 func f3(t1, t2, x t3)
20 func (x *t1) f5(y []t2) (t1, *t3)
22 func f7(*t2, t3)
notinheap.go 47 type t2 t1 type
53 sink = (*t2)(new(t1)) // ERROR "cannot convert(.|\n)*t2 is go:notinheap"
54 sink = (*t2)(new(struct{ x int })) // ERROR "cannot convert(.|\n)*t2 is go:notinheap"
notinheap3.go 17 type t2 struct { type
34 v2 t2
37 v2s []t2
51 v2 = t2{x: nil} // ERROR "write barrier"
  /prebuilts/go/linux-x86/test/
func2.go 13 type t2 int type
16 func f1(t1, t2, t3)
17 func f2(t1, t2, t3 bool)
18 func f3(t1, t2, x t3)
20 func (x *t1) f5(y []t2) (t1, *t3)
22 func f7(*t2, t3)
notinheap.go 47 type t2 t1 type
53 sink = (*t2)(new(t1)) // ERROR "cannot convert(.|\n)*t2 is go:notinheap"
54 sink = (*t2)(new(struct{ x int })) // ERROR "cannot convert(.|\n)*t2 is go:notinheap"
notinheap3.go 17 type t2 struct { type
34 v2 t2
37 v2s []t2
51 v2 = t2{x: nil} // ERROR "write barrier"
  /prebuilts/misc/windows/sdl2/test/
testtimer.c 44 SDL_TimerID t1, t2, t3; local
84 t2 = SDL_AddTimer(50, callback, (void *) 2);
85 if (!t2)
100 SDL_RemoveTimer(t2);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/
enable_reduced_arity_initialization_extension.pass.cpp 107 Tup t2 = {E(0)}; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/
front_back.pass.cpp 77 constexpr T t2 = c.back(); local
78 static_assert (t2 == 3.5, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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 68 test<char> t2; local
69 swap(t2, t);
73 test<wchar_t> t2; local
74 swap(t2, t);
81 test<char> t2; local
82 swap(t2, t);
89 test<wchar_t> t2; local
90 swap(t2, t);
95 test<char> t2; local
96 swap(t2, t)
100 test<wchar_t> t2; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /art/test/1909-per-agent-tls/src/art/
Test1909.java 127 ThreadWaiter t2 = new ThreadWaiter(); local
130 checkEq(0, t2.getTLS(e1));
133 checkEq(0, t2.getTLS(e2));
139 checkEq(0, t2.getTLS(e1));
142 checkEq(0, t2.getTLS(e2));
145 checkEq(0, t2.getTLS(e3));
151 checkEq(0, t2.getTLS(e1));
154 checkEq(0, t2.getTLS(e2));
160 checkEq(0, t2.getTLS(e1));
165 checkEq(0, t2.getTLS(e1))
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
TransformationTest.java 45 final Transformation t2 = new Transformation(); local
47 t2.setAlpha(0.4f);
49 t2.getMatrix().setScale(3, 1);
51 t2.setTransformationType(Transformation.TYPE_ALPHA);
52 t2.compose(t1);
56 assertEquals(expectedMatrix, t2.getMatrix());
57 assertEquals(0.4f * 0.5f, t2.getAlpha(), COMPARISON_DELTA);
58 assertEquals(Transformation.TYPE_ALPHA, t2.getTransformationType());
61 t2.compose(t1);
64 assertEquals(expectedMatrix, t2.getMatrix())
72 final Transformation t2 = new Transformation(); local
123 final Transformation t2 = new Transformation(); local
    [all...]

Completed in 487 milliseconds

1 2 3 4 5 6 78 91011>>