/external/boringssl/src/crypto/cipher_extra/asm/ |
D | chacha20_poly1305_x86_64.pl | 87 my ($A0,$A1,$A2,$A3,$B0,$B1,$B2,$B3,$C0,$C1,$C2,$C3,$D0,$D1,$D2,$D3)=map("%xmm$_",(0..15)); 196 $code.="movdqa .chacha20_consts(%rip), $A0 199 $code.="movdqa $A0, $A1 202 $code.="movdqa $A0, $A2 205 $code.="movdqa $A0, $A3 254 $code.="paddd .chacha20_consts(%rip), $A0 301 paddd $B0, $A0 305 pxor $A0, $D0 474 movdqa .chacha20_consts(%rip), $A0 485 &chacha_qr($A0,$B0,$C0,$D0,$T0,"left"); [all …]
|
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/ |
D | destroy.pass.cpp | 50 struct A0 struct 53 ~A0() {++count;} in ~A0() argument 56 int A0::count = 0; 61 A0::count = 0; in main() 63 std::aligned_storage<sizeof(A0)>::type a0; in main() 64 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main() 65 assert(A0::count == 0); in main() 66 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0); in main() 67 assert(A0::count == 1); in main() 78 A0::count = 0; in main() [all …]
|
D | construct.pass.cpp | 52 struct A0 struct 55 A0() {++count;} in A0() function 58 int A0::count = 0; 88 A0::count = 0; in main() 90 std::aligned_storage<sizeof(A0)>::type a0; in main() 91 assert(A0::count == 0); in main() 92 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main() 93 assert(A0::count == 1); in main() 120 A0::count = 0; in main() 123 std::aligned_storage<sizeof(A0)>::type a0; in main() [all …]
|
/external/eigen/test/ |
D | inplace_decomposition.cpp | 37 MatrixType A0 = A; in inplace() local 43 VERIFY_IS_NOT_APPROX( A, A0 ); in inplace() 48 VERIFY_IS_APPROX( A0 * (x = dec.solve(b)), b ); in inplace() 52 VERIFY_IS_APPROX( A0.transpose() * A0 * (x = dec.solve(b)), A0.transpose() * b ); in inplace() 59 VERIFY_IS_NOT_APPROX( A0 * (x = dec.solve(b)), b ); in inplace() 63 VERIFY_IS_NOT_APPROX( A0.transpose() * A0 * (x = dec.solve(b)), A0.transpose() * b ); in inplace() 67 A = A0; in inplace() 69 VERIFY_IS_EQUAL(A0,A1); in inplace() 70 VERIFY_IS_NOT_APPROX( A, A0 ); in inplace() 73 VERIFY_IS_APPROX( A0 * (x = dec.solve(b)), b ); in inplace() [all …]
|
/external/boringssl/src/crypto/fipsmodule/bn/asm/ |
D | x86_64-mont5.pl | 1080 my @A0=("%r10","%r11"); 1319 mov %rax,$A0[0] # a[1]*a[0] 1321 mov %rdx,$A0[1] 1322 mov $A0[0],-24($tptr,$i) # t[1] 1325 add %rax,$A0[1] 1328 mov $A0[1],-16($tptr,$i) # t[2] 1329 mov %rdx,$A0[0] 1340 add %rax,$A0[0] # a[3]*a[0]+a[2]*a[1]+t[3] 1342 mov %rdx,$A0[1] 1343 adc \$0,$A0[1] [all …]
|
/external/libcxx/test/libcxx/utilities/function.objects/func.require/ |
D | bullet_7.pass.cpp | 63 template <class A0> 64 void*& freeFunction03(A0&) { in freeFunction03() argument 65 return FunctionPtrID<void*&(A0&), freeFunction03>::setUncheckedCall(); in freeFunction03() 69 template <class A0> 70 void*& freeFunction03(A0&, ...) { in freeFunction03() argument 71 return FunctionPtrID<void*&(A0&, ...), freeFunction03>::setUncheckedCall(); in freeFunction03() 74 template <class A0, class A1> 75 void*& freeFunction03(A0&, A1&) { in freeFunction03() argument 76 return FunctionPtrID<void*&(A0&, A1&), freeFunction03>::setUncheckedCall(); in freeFunction03() 80 template <class A0, class A1> [all …]
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/ |
D | is_trivially_constructible.pass.cpp | 27 template <class T, class A0> 30 static_assert(( std::is_trivially_constructible<T, A0>::value), ""); in test_is_trivially_constructible() 32 static_assert(( std::is_trivially_constructible_v<T, A0>), ""); in test_is_trivially_constructible() 45 template <class T, class A0> 48 static_assert((!std::is_trivially_constructible<T, A0>::value), ""); in test_is_not_trivially_constructible() 50 static_assert((!std::is_trivially_constructible_v<T, A0>), ""); in test_is_not_trivially_constructible() 54 template <class T, class A0, class A1> 57 static_assert((!std::is_trivially_constructible<T, A0, A1>::value), ""); in test_is_not_trivially_constructible() 59 static_assert((!std::is_trivially_constructible_v<T, A0, A1>), ""); in test_is_not_trivially_constructible()
|
D | is_constructible.pass.cpp | 90 template <class T, class A0> 93 static_assert(( std::is_constructible<T, A0>::value), ""); in test_is_constructible() 94 LIBCPP11_STATIC_ASSERT((std::__libcpp_is_constructible<T, A0>::type::value), ""); in test_is_constructible() 96 static_assert(( std::is_constructible_v<T, A0>), ""); in test_is_constructible() 100 template <class T, class A0, class A1> 103 static_assert(( std::is_constructible<T, A0, A1>::value), ""); in test_is_constructible() 104 LIBCPP11_STATIC_ASSERT((std::__libcpp_is_constructible<T, A0, A1>::type::value), ""); in test_is_constructible() 106 static_assert(( std::is_constructible_v<T, A0, A1>), ""); in test_is_constructible() 110 template <class T, class A0, class A1, class A2> 113 static_assert(( std::is_constructible<T, A0, A1, A2>::value), ""); in test_is_constructible() [all …]
|
D | is_nothrow_constructible.pass.cpp | 27 template <class T, class A0> 30 static_assert(( std::is_nothrow_constructible<T, A0>::value), ""); in test_is_nothrow_constructible() 32 static_assert(( std::is_nothrow_constructible_v<T, A0>), ""); in test_is_nothrow_constructible() 45 template <class T, class A0> 48 static_assert((!std::is_nothrow_constructible<T, A0>::value), ""); in test_is_not_nothrow_constructible() 50 static_assert((!std::is_nothrow_constructible_v<T, A0>), ""); in test_is_not_nothrow_constructible() 54 template <class T, class A0, class A1> 57 static_assert((!std::is_nothrow_constructible<T, A0, A1>::value), ""); in test_is_not_nothrow_constructible() 59 static_assert((!std::is_nothrow_constructible_v<T, A0, A1>), ""); in test_is_not_nothrow_constructible()
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
D | p6.cpp | 4 struct A0 { struct 8 template<int X, int Y> void f0(A0<X, Y>) { } // expected-note{{previous}} in f0() 9 template<int N, int M> void f0(A0<M, N>) { } in f0() 10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}} in f0() 12 template<int X, int Y> void f1(A0<0, (X + Y)>) { } // expected-note{{previous}} in f1() 13 template<int X, int Y> void f1(A0<0, (X - Y)>) { } in f1() 14 template<int A, int B> void f1(A0<0, (A + B)>) { } // expected-error{{redefinition}} in f1() 16 template<int X, int Y> void A0<X, Y>::g0() { } in g0()
|
/external/icu/icu4c/source/samples/legacy/ |
D | legacy.sln | 5 …4A-11D0-8D11-00A0C91BC942}") = "legacy", "legacy.vcxproj", "{57F56795-1802-4605-88A0-013AAE9998F6}" 15 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|Win32.ActiveCfg = Debug|Win32 16 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|Win32.Build.0 = Debug|Win32 17 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|x64.ActiveCfg = Debug|x64 18 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|x64.Build.0 = Debug|x64 19 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|Win32.ActiveCfg = Release|Win32 20 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|Win32.Build.0 = Release|Win32 21 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|x64.ActiveCfg = Release|x64 22 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|x64.Build.0 = Release|x64
|
/external/fec/ |
D | decode_rs.h | 68 #undef A0 69 #define A0 (NN) macro 119 if(tmp != A0) 136 if (reg[j] != A0) { 173 if ((lambda[i] != 0) && (s[r-i-1] != A0)) { 178 if (discr_r == A0) { 181 b[0] = A0; 186 if(b[i] != A0) 198 b[i] = (lambda[i] == 0) ? A0 : MODNN(INDEX_OF[lambda[i]] - discr_r + NN); 202 b[0] = A0; [all …]
|
D | decode_rs.c | 83 if(tmp != A0) 100 if (reg[j] != A0) { 137 if ((lambda[i] != 0) && (s[r-i-1] != A0)) { 142 if (discr_r == A0) { 145 b[0] = A0; 150 if(b[i] != A0) 162 b[i] = (lambda[i] == 0) ? A0 : MODNN(INDEX_OF[lambda[i]] - discr_r + NN); 166 b[0] = A0; 176 if(lambda[i] != A0) 185 if (reg[j] != A0) { [all …]
|
/external/clang/INPUTS/ |
D | macro_pounder_obj.c | 6 #define A0 a b macro 7 #define A1 A0 A0 A0 A0 A0 A0
|
D | macro_pounder_fn.c | 6 #define A0(A, B) A B macro 7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B)
|
/external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/ |
D | util.hpp | 85 template <class Fn, class A0> 86 struct result_of<Fn(A0)> { 87 typedef decltype(detail::instance<Fn>()(detail::instance<A0>())) type; 89 template <class Fn, class A0, class A1> 90 struct result_of<Fn(A0,A1)> { 91 typedef decltype(detail::instance<Fn>()(detail::instance<A0>(), 94 template <class Fn, class A0, class A1, class A2> 95 struct result_of<Fn(A0,A1,A2)> { 96 typedef decltype(detail::instance<Fn>()(detail::instance<A0>(), 100 template <class Fn, class A0, class A1, class A2, class A3> [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | remat-mov-0.ll | 9 ; CHECK: xorl %e[[A0:di|cx]], %e 10 ; CHECK: xorl %e[[A0]], %e[[A0]] 18 ; CHECK: movq $-1, %r[[A0]] 19 ; CHECK: movq $-1, %r[[A0]] 27 ; CHECK: movl $1, %e[[A0]] 28 ; CHECK: movl $1, %e[[A0]]
|
/external/llvm/test/CodeGen/X86/ |
D | remat-mov-0.ll | 9 ; CHECK: xorl %e[[A0:di|cx]], %e 10 ; CHECK: xorl %e[[A0]], %e[[A0]] 18 ; CHECK: movq $-1, %r[[A0]] 19 ; CHECK: movq $-1, %r[[A0]] 27 ; CHECK: movl $1, %e[[A0]] 28 ; CHECK: movl $1, %e[[A0]]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | remat-mov-0.ll | 9 ; CHECK: xorl %e[[A0:di|cx]], %e 10 ; CHECK: xorl %e[[A0]], %e[[A0]] 18 ; CHECK: movq $-1, %r[[A0]] 19 ; CHECK: movq $-1, %r[[A0]] 27 ; CHECK: movl $1, %e[[A0]] 28 ; CHECK: movl $1, %e[[A0]]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | vector-urem.ll | 6 ; CHECK-NEXT: [[TMP1:%.*]] = and <4 x i32> [[A0:%.*]], <i32 1, i32 1, i32 1, i32 1> 15 ; CHECK-NEXT: [[TMP1:%.*]] = and <4 x i32> [[A0:%.*]], <i32 0, i32 1, i32 3, i32 7> 32 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ne <4 x i32> [[A0:%.*]], <i32 1, i32 1, i32 1, i32 1> 42 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ne <4 x i32> [[A0:%.*]], <i32 1, i32 1, i32 1, i32 undef> 52 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ult <4 x i32> [[A0:%.*]], <i32 -3, i32 -3, i32 -3, i32 -3> 53 ; CHECK-NEXT: [[TMP2:%.*]] = add <4 x i32> [[A0]], <i32 3, i32 3, i32 3, i32 3> 54 ; CHECK-NEXT: [[TMP3:%.*]] = select <4 x i1> [[TMP1]], <4 x i32> [[A0]], <4 x i32> [[TMP2]] 63 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ult <4 x i32> [[A0:%.*]], <i32 -3, i32 -5, i32 -7, i32 -9> 64 ; CHECK-NEXT: [[TMP2:%.*]] = add <4 x i32> [[A0]], <i32 3, i32 5, i32 7, i32 9> 65 ; CHECK-NEXT: [[TMP3:%.*]] = select <4 x i1> [[TMP1]], <4 x i32> [[A0]], <4 x i32> [[TMP2]]
|
/external/webp/src/dsp/ |
D | rescaler_sse2.c | 148 const __m128i A0 = _mm_mullo_epi16(sum, mult0); in RescalerImportRowShrink_SSE2() local 150 const __m128i B0 = _mm_unpacklo_epi16(A0, A1); // sum * x_sub in RescalerImportRowShrink_SSE2() 177 const __m128i A0 = _mm_loadu_si128((const __m128i*)(src + 0)); in LoadDispatchAndMult_SSE2() local 179 const __m128i A2 = _mm_srli_epi64(A0, 32); in LoadDispatchAndMult_SSE2() 182 *out0 = _mm_mul_epu32(A0, *mult); in LoadDispatchAndMult_SSE2() 187 *out0 = A0; in LoadDispatchAndMult_SSE2() 194 static WEBP_INLINE void ProcessRow_SSE2(const __m128i* const A0, in ProcessRow_SSE2() argument 202 const __m128i B0 = _mm_mul_epu32(*A0, *mult); in ProcessRow_SSE2() 241 __m128i A0, A1, A2, A3; in RescalerExportRowExpand_SSE2() local 242 LoadDispatchAndMult_SSE2(frow + x_out, NULL, &A0, &A1, &A2, &A3); in RescalerExportRowExpand_SSE2() [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | MergedLoadStoreMotion.cpp | 300 auto *A0 = dyn_cast<Instruction>(L0->getPointerOperand()); in hoistLoad() local 302 if (A0 && A1 && A0->isIdenticalTo(A1) && isSafeToHoist(A0) && in hoistLoad() 303 A0->hasOneUse() && (A0->getParent() == L0->getParent()) && in hoistLoad() 305 isa<GetElementPtrInst>(A0)) { in hoistLoad() 309 hoistInstruction(BB, A0, A1); in hoistLoad() 426 auto *A0 = dyn_cast<Instruction>(S0->getPointerOperand()); in sinkStore() local 428 if (A0 && A1 && A0->isIdenticalTo(A1) && A0->hasOneUse() && in sinkStore() 429 (A0->getParent() == S0->getParent()) && A1->hasOneUse() && in sinkStore() 430 (A1->getParent() == S1->getParent()) && isa<GetElementPtrInst>(A0)) { in sinkStore() 442 Instruction *ANew = A0->clone(); in sinkStore() [all …]
|
/external/eigen/doc/examples/ |
D | TutorialInplaceLU.cpp | 30 MatrixXd A0(2,2); A0 << 2, -1, 1, 3; in main() local 33 cout << "Residual: " << (A0 * x - b).norm() << endl; in main() 39 cout << "Residual: " << (A0 * x - b).norm() << endl; in main() 43 A0 = A; // save A in main() 46 cout << "Residual: " << (A0 * x - b).norm() << endl; in main()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_intrapred_intrin_ssse3.c | 99 const __m128i A0 = _mm_load_si128((const __m128i *)above); in vpx_highbd_d45_predictor_16x16_ssse3() local 103 const __m128i B0 = _mm_alignr_epi8(A1, A0, 2); in vpx_highbd_d45_predictor_16x16_ssse3() 105 const __m128i C0 = _mm_alignr_epi8(A1, A0, 4); in vpx_highbd_d45_predictor_16x16_ssse3() 107 __m128i avg3_0 = avg3_epu16(&A0, &B0, &C0); in vpx_highbd_d45_predictor_16x16_ssse3() 134 const __m128i A0 = _mm_load_si128((const __m128i *)above); in vpx_highbd_d45_predictor_32x32_ssse3() local 140 const __m128i B0 = _mm_alignr_epi8(A1, A0, 2); in vpx_highbd_d45_predictor_32x32_ssse3() 144 const __m128i C0 = _mm_alignr_epi8(A1, A0, 4); in vpx_highbd_d45_predictor_32x32_ssse3() 148 __m128i avg3_0 = avg3_epu16(&A0, &B0, &C0); in vpx_highbd_d45_predictor_32x32_ssse3() 216 const __m128i A0 = _mm_load_si128((const __m128i *)above); in vpx_highbd_d117_predictor_16x16_ssse3() local 219 const __m128i avg2_0 = _mm_avg_epu16(A0, B0); in vpx_highbd_d117_predictor_16x16_ssse3() [all …]
|
/external/boringssl/src/crypto/chacha/asm/ |
D | chacha-armv8.pl | 339 my ($A0,$B0,$C0,$D0,$A1,$B1,$C1,$D1,$A2,$B2,$C2,$D2,$T0,$T1,$T2,$T3) = 419 mov $A0,@K[0] 451 my @thread0=&NEONROUND($A0,$B0,$C0,$D0,$T0,0); 462 @thread0=&NEONROUND($A0,$B0,$C0,$D0,$T0,1); 476 add $A0,$A0,@K[0] 535 eor $A0,$A0,$T0 554 st1.8 {$A0-$D0},[$out],#64 555 ld1.8 {$A0-$D0},[$inp],#64 563 eor $A2,$A2,$A0 629 eor $A0,$A0,$T0 [all …]
|