/external/gtest/test/ |
gtest-linked_ptr_test.cc | 79 linked_ptr<A> a0, a1, a2; local 81 a0.operator=(a0); 83 ASSERT_EQ(a0.get(), static_cast<A*>(NULL)); 86 ASSERT_TRUE(a0 == NULL); 92 a0 = a3; 93 ASSERT_TRUE(a0 == a3); 94 ASSERT_TRUE(a0 != NULL); 95 ASSERT_TRUE(a0.get() == a3); 96 ASSERT_TRUE(a0 == a3.get()) [all...] |
/external/libvpx/libvpx/third_party/googletest/src/test/ |
gtest-linked_ptr_test.cc | 79 linked_ptr<A> a0, a1, a2; local 81 a0.operator=(a0); 83 ASSERT_EQ(a0.get(), static_cast<A*>(NULL)); 86 ASSERT_TRUE(a0 == NULL); 92 a0 = a3; 93 ASSERT_TRUE(a0 == a3); 94 ASSERT_TRUE(a0 != NULL); 95 ASSERT_TRUE(a0.get() == a3); 96 ASSERT_TRUE(a0 == a3.get()) [all...] |
/external/protobuf/gtest/test/ |
gtest-linked_ptr_test.cc | 79 linked_ptr<A> a0, a1, a2; local 80 a0 = a0; 82 ASSERT_EQ(a0.get(), static_cast<A*>(NULL)); 85 ASSERT_TRUE(a0 == NULL); 91 a0 = a3; 92 ASSERT_TRUE(a0 == a3); 93 ASSERT_TRUE(a0 != NULL); 94 ASSERT_TRUE(a0.get() == a3); 95 ASSERT_TRUE(a0 == a3.get()) [all...] |
/external/aac/libFDK/src/ |
fft_rad2.cpp | 339 FIXP_DBL a0, a1, a2, a3, a00, a10, a20, a30; local 345 a0 = (x[i + 0] - x[i + 2])>>1; /* Re A - Re B */ 354 x[i + 2] = a0 - a1; /* Re B' = Re A - Re B - Im C + Im D */ 355 x[i + 6] = a0 + a1; /* Re D' = Re A - Re B + Im C - Im D */
|
/external/clang/test/Sema/ |
attr-aligned.c | 18 char a0[__alignof__(ueber_aligned_char) == 8? 1 : -1] = { 0 }; variable
|
tentative-decls.c | 63 static int a0[]; variable 66 static int a0[] = { 4 }; variable
|
/external/clang/test/SemaTemplate/ |
instantiate-anonymous-union.cpp | 5 A<int> a0; variable
|
/external/eigen/bench/ |
benchVecAdd.cpp | 95 PacketScalar a0, a1, a2, a3, b0, b1, b2, b3; local 99 // a0 = internal::pload(&a[i]); 107 // internal::pstore(&a[i], internal::padd(a0, b0)); 108 // a0 = internal::pload(&a[i+4*PacketSize]); 123 // internal::pstore(&a[i+4*PacketSize], internal::padd(a0, b0));
|
/external/eigen/test/eigen2/ |
eigen2_cholesky.cpp | 32 MatrixType a0 = MatrixType::Random(rows,cols); local 35 SquareMatrixType symm = a0 * a0.adjoint(); 93 SquareMatrixType symm = a0.block(0,0,rows,cols-4) * a0.block(0,0,rows,cols-4).adjoint();
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/bind/func.bind/func.bind.bind/ |
invoke_lvalue.pass.cpp | 77 A_void_1 a0; local 79 std::bind(a0, _1)(i); 84 A_void_1 a0; local 86 std::bind(a0, i)();
|
invoke_rvalue.pass.cpp | 73 A_void_1 a0; local 74 std::bind(a0, _1)(4); 79 A_void_1 a0; local 80 std::bind(a0, 4)();
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/ |
invoke.pass.cpp | 62 A_void_1 a0; local 63 std::function<void (int)> r1(a0); 137 A_int_1 a0; local 138 std::function<int (int)> r1(a0); 221 A_void_2 a0; local 222 std::function<void (int, int)> r1(a0); 299 A_int_2 a0; local 300 std::function<int (int, int)> r1(a0);
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/refwrap/refwrap.invoke/ |
invoke.pass.cpp | 65 A_void_1 a0; local 66 std::reference_wrapper<A_void_1> r1(a0); 138 A_int_1 a0; local 139 std::reference_wrapper<A_int_1> r1(a0); 219 A_void_2 a0; local 220 std::reference_wrapper<A_void_2> r1(a0); 295 A_int_2 a0; local 296 std::reference_wrapper<A_int_2> r1(a0);
|
/external/clang/test/SemaCXX/ |
attr-deprecated.cpp | 197 a0 // expected-note {{declared here}} enumerator in enum:test6::A 201 x = a0; // expected-warning {{'a0' is deprecated}}
|
/external/eigen/test/ |
cholesky.cpp | 75 MatrixType a0 = MatrixType::Random(rows,cols); local 78 SquareMatrixType symm = a0 * a0.adjoint(); 207 RealMatrixType a0 = RealMatrixType::Random(rows,cols); local 210 RealMatrixType symm = a0 * a0.adjoint();
|
/external/skia/src/core/ |
SkShader.cpp | 110 U8CPU a0 = srcA[0]; local 115 *alpha++ = SkToU8(a0);
|
/external/skia/tests/ |
ColorTest.cpp | 151 U8CPU a0 = 0; 159 REPORTER_ASSERT(reporter, SkFourByteInterp(src, dst, a0) == dst); 168 U8CPU a0 = 0; local 176 REPORTER_ASSERT(reporter, SkFastFourByteInterp(src, dst, a0) == dst);
|
/external/webkit/Source/WebCore/platform/audio/ |
SincResampler.cpp | 86 double a0 = 0.5 * (1.0 - alpha); local 115 double window = a0 - a1 * cos(2.0 * piDouble * x) + a2 * cos(4.0 * piDouble * x);
|
/bionic/libc/arch-mips/include/machine/ |
regdef.h | 44 #define a0 $4 /* argument registers */ macro
|
/bionic/libc/kernel/arch-mips/asm/ |
regdef.h | 29 #define a0 $4 macro 74 #define a0 $4 macro
|
/cts/tests/tests/widget/src/android/widget/cts/ |
GridLayoutTest.java | 220 int a0 = a.getValue(v0); local 224 a0, a1);
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
regdef.h | 29 #define a0 $4 macro 74 #define a0 $4 macro
|
/development/ndk/platforms/android-9/arch-mips/include/machine/ |
regdef.h | 44 #define a0 $4 /* argument registers */ macro
|
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/ |
p1.cpp | 12 A<int>::E a0 = A<int>().v; variable
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
p3.cpp | 9 A<int> a0 = f0(i); local 18 A<int> a0 = f1(i); local 48 A<int> a0 = f2(i); local 71 A<int> a0 = f3(ip); local
|