/external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/ |
tan_valarray.pass.cpp | 38 T a1[] = {-.9, -.5, 0., .5, .75}; local 44 const unsigned N = sizeof(a1)/sizeof(a1[0]); 45 std::valarray<T> v1(a1, N);
|
tanh_valarray.pass.cpp | 38 T a1[] = {-.9, -.5, 0., .5, .75}; local 44 const unsigned N = sizeof(a1)/sizeof(a1[0]); 45 std::valarray<T> v1(a1, N);
|
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/ |
construct.pass.cpp | 57 struct A1 60 A1(char c) 67 int A1::count = 0; 93 A1::count = 0; 95 std::aligned_storage<sizeof(A1)>::type a1; local 96 assert(A1::count == 0); 97 std::allocator_traits<A<int> >::construct(a, (A1*)&a1, 'c'); 98 assert(A1::count == 1) 124 std::aligned_storage<sizeof(A1)>::type a1; local [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
dct.c | 17 int a1, b1, c1, d1; local 23 a1 = ((ip[0] + ip[3]) * 8); 28 op[0] = a1 + b1; 29 op[2] = a1 - b1; 42 a1 = ip[0] + ip[12]; 47 op[0] = ( a1 + b1 + 7)>>4; 48 op[8] = ( a1 - b1 + 7)>>4; 67 int a1, b1, c1, d1; local 75 a1 = ((ip[0] + ip[2]) * 4); 80 op[0] = a1 + d1 + (a1!=0) [all...] |
/external/llvm/unittests/Support/ |
ManagedStatic.cpp | 46 pthread_attr_t a1, a2; local 47 void *p1 = test1::allocate_stack(a1); 51 pthread_create(&t1, &a1, test1::helper, nullptr);
|
/external/chromium_org/testing/gtest/test/ |
gtest-linked_ptr_test.cc | 79 linked_ptr<A> a0, a1, a2; local 82 a1 = a2; 84 ASSERT_EQ(a1.get(), static_cast<A*>(NULL)); 87 ASSERT_TRUE(a1 == NULL); 98 a1 = a4; 120 a1->Use(); 123 a1 = a2; 132 "A1 ctor\n" 146 "A1 use\n" 150 "A1 dtor\n" [all...] |
gtest-tuple_test.cc | 149 tuple<int> a1, b1; local 150 b1 = a1;
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
inline-literals.js | 36 function a1(a, b, c) { function 42 var result = a1(a, b, c);
|
/external/clang/test/CodeGen/ |
atomics-inlining.c | 11 unsigned char a1[100], a2[100]; variable 31 (void)__atomic_load(&a1, &a2, memory_order_seq_cst); 32 (void)__atomic_store(&a1, &a2, memory_order_seq_cst); 43 // ARM: call arm_aapcscc void @__atomic_load(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 44 // ARM: call arm_aapcscc void @__atomic_store(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 55 // PPC32: call void @__atomic_load(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 56 // PPC32: call void @__atomic_store(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 67 // PPC64: call void @__atomic_load(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 68 // PPC64: call void @__atomic_store(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0) 79 // MIPS32: call void @__atomic_load(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0 [all...] |
/external/clang/test/Parser/ |
cxx0x-member-initializers.cpp | 34 T1<int, int> a1 = T1<int, int>(), *a2 = new T1<int,int>; member in struct:A
|
/external/clang/test/SemaCXX/ |
deprecated.cpp | 53 Assign a1, a2(a1); // expected-note {{implicit copy constructor for 'Assign' first required here}} member in namespace:DeprecatedCopy
|
/external/clang/test/SemaTemplate/ |
temp_arg_type.cpp | 5 A<0> *a1; // expected-error{{template argument for template type parameter must be a type}} variable 38 template<typename T> struct A1 { }; 39 A1<Array<int, 17>::type> ax;
|
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_kernel_bmod.h | 115 Scalar a1 = *(a++); local 119 d1 -= f*a1;
|
/external/eigen/test/ |
eigensolver_generic.cpp | 30 MatrixType a1 = MatrixType::Random(rows,cols); local 31 MatrixType symmA = a.adjoint() * a + a1.adjoint() * a1;
|
eigensolver_selfadjoint.cpp | 30 MatrixType a1 = MatrixType::Random(rows,cols); local 31 MatrixType symmA = a.adjoint() * a + a1.adjoint() * a1;
|
/external/gtest/test/ |
gtest-linked_ptr_test.cc | 79 linked_ptr<A> a0, a1, a2; local 82 a1 = a2; 84 ASSERT_EQ(a1.get(), static_cast<A*>(NULL)); 87 ASSERT_TRUE(a1 == NULL); 98 a1 = a4; 120 a1->Use(); 123 a1 = a2; 132 "A1 ctor\n" 146 "A1 use\n" 150 "A1 dtor\n" [all...] |
/external/jemalloc/test/integration/ |
allocated.c | 16 uint64_t a0, a1, d0, d1; local 59 sz = sizeof(a1); 60 mallctl("thread.allocated", &a1, &sz, NULL, 0); 63 assert_u64_eq(*ap1, a1, 70 assert_u64_le(a0 + usize, a1,
|
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/ |
AnnotationsList.java | 50 Annotations a1 = list1.get(i); local 52 result.set(i, Annotations.combine(a1, a2));
|
/dalvik/dx/src/com/android/dx/rop/annotation/ |
AnnotationsList.java | 50 Annotations a1 = list1.get(i); local 52 result.set(i, Annotations.combine(a1, a2));
|
/external/aac/libFDK/src/ |
fft_rad2.cpp | 339 FIXP_DBL a0, a1, a2, a3, a00, a10, a20, a30; local 348 a1 = (x[i + 5] - x[i + 7])>>1; /* Im C - Im D */ 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/chromium_org/sync/api/attachments/ |
fake_attachment_store_unittest.cc | 117 AttachmentMap::const_iterator a1 = attachments->find(attachment1.GetId()); local 118 EXPECT_TRUE(a1 != attachments->end()); 119 EXPECT_TRUE(attachment1.GetData()->Equals(a1->second.GetData())); 143 AttachmentMap::const_iterator a1 = attachments->find(attachment1.GetId()); local 144 EXPECT_TRUE(a1 != attachments->end()); 145 EXPECT_TRUE(attachment1.GetData()->Equals(a1->second.GetData()));
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
DownSampler.cpp | 56 double a1 = 0.5; local 76 double window = a0 - a1 * cos(twoPiDouble * x) + a2 * cos(twoPiDouble * 2.0 * x);
|
UpSampler.cpp | 56 double a1 = 0.5; local 70 double window = a0 - a1 * cos(twoPiDouble * x) + a2 * cos(twoPiDouble * 2.0 * x);
|
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
vp8_fdct4x4_test.cc | 34 const int a1 = ip[0] + ip[8]; local 42 op[0] = a1 + d1; 43 op[12] = a1 - d1; 52 const int a1 = ip[0] + ip[2]; local 60 op[0] = (a1 + d1 + 4) >> 3; 61 op[3] = (a1 - d1 + 4) >> 3;
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ |
idctllm.c | 34 int a1, b1, c1, d1; local 43 a1 = ip[0] + ip[8]; 54 op[shortpitch*0] = a1 + d1; 55 op[shortpitch*3] = a1 - d1; 69 a1 = ip[0] + ip[2]; 81 op[0] = (a1 + d1 + 4) >> 3; 82 op[3] = (a1 - d1 + 4) >> 3; 116 int a1 = ((input_dc + 4) >> 3); local 123 int a = a1 + pred_ptr[c] ; 144 int a1, b1, c1, d1 local 197 int a1; local [all...] |