Home
last modified time | relevance | path

Searched refs:A0 (Results 1 – 25 of 227) sorted by relevance

12345678910

/external/libnfc-nci/halimpl/pn54x/
Dlibnfc-nxp-PN66T_example.conf62 NXP_NFC_PROFILE_EXTN={20, 02, 05, 01, A0, 44, 01, 00}
84 NXP_EXT_TVDD_CFG_1={20, 02, 0B, 02, A0, 66, 01, 00, A0, 0E, 03, 02, 09, 00}
89 NXP_EXT_TVDD_CFG_2={20, 02, 0B, 02, A0, 66, 01, 00, A0, 0E, 03, 56, 64, 0A}
94 NXP_EXT_TVDD_CFG_3={20, 02, 0B, 02, A0, 66, 01, 01, A0, 0E, 03, 52, 64, 0A}
142 A0, EC, 01, 01,
143 A0, ED, 01, 03,
144 A0, 5E, 01, 01,
145 A0, 12, 01, 02,
146 A0, 40, 01, 01,
147 A0, DD, 01, 2D,
[all …]
Dlibnfc-nxp-PN548AD_example.conf62 NXP_NFC_PROFILE_EXTN={20, 02, 05, 01, A0, 44, 01, 00}
84 NXP_EXT_TVDD_CFG_1={20, 02, 0B, 02, A0, 66, 01, 00, A0, 0E, 03, 02, 09, 00}
89 NXP_EXT_TVDD_CFG_2={20, 02, 0B, 02, A0, 66, 01, 00, A0, 0E, 03, 56, 64, 0A}
94 NXP_EXT_TVDD_CFG_3={20, 02, 0B, 02, A0, 66, 01, 01, A0, 0E, 03, 52, 64, 0A}
141 A0, EC, 01, 01,
142 A0, ED, 01, 00,
143 A0, 5E, 01, 01,
144 A0, 40, 01, 01,
145 A0, DD, 01, 2D
150 NXP_CORE_RF_FIELD={ 20, 02, 05, 01, A0, 62, 01, 01
Dlibnfc-nxp-PN65T_example.conf62 NXP_NFC_PROFILE_EXTN={20, 02, 05, 01, A0, 44, 01, 00}
119 A0, EC, 01, 01,
120 A0, ED, 01, 01,
121 A0, 5E, 01, 01,
122 A0, 12, 01, 02,
123 A0, 0D, 06, 3E, 2D, 15, 88, 15, 00
128 NXP_CORE_RF_FIELD={ 20, 02, 05, 01, A0, 62, 01, 01
Dlibnfc-nxp-PN547C2_example.conf62 NXP_NFC_PROFILE_EXTN={20, 02, 05, 01, A0, 44, 01, 00}
119 A0, EC, 01, 01,
120 A0, ED, 01, 01,
121 A0, 5E, 01, 01,
122 A0, 0D, 06, 3E, 2D, 15, 88, 15, 00
127 NXP_CORE_RF_FIELD={ 20, 02, 05, 01, A0, 62, 01, 01
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
Ddestroy.pass.cpp47 struct A0 struct
50 ~A0() {++count;} in ~A0() argument
53 int A0::count = 0;
58 A0::count = 0; in main()
60 std::aligned_storage<sizeof(A0)>::type a0; in main()
61 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main()
62 assert(A0::count == 0); in main()
63 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0); in main()
64 assert(A0::count == 1); in main()
68 A0::count = 0; in main()
[all …]
Dconstruct.pass.cpp49 struct A0 struct
52 A0() {++count;} in A0() function
55 int A0::count = 0;
85 A0::count = 0; in main()
87 std::aligned_storage<sizeof(A0)>::type a0; in main()
88 assert(A0::count == 0); in main()
89 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main()
90 assert(A0::count == 1); in main()
110 A0::count = 0; in main()
113 std::aligned_storage<sizeof(A0)>::type a0; in main()
[all …]
/external/boringssl/src/crypto/bn/asm/
Dx86_64-mont5.pl915 my @A0=("%r10","%r11");
1117 mov %rax,$A0[0] # a[1]*a[0]
1119 mov %rdx,$A0[1]
1120 mov $A0[0],-24($tptr,$i) # t[1]
1123 add %rax,$A0[1]
1126 mov $A0[1],-16($tptr,$i) # t[2]
1127 mov %rdx,$A0[0]
1138 add %rax,$A0[0] # a[3]*a[0]+a[2]*a[1]+t[3]
1140 mov %rdx,$A0[1]
1141 adc \$0,$A0[1]
[all …]
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
Dp6.cpp4 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/
Dlegacy.sln3 …B4A-11D0-8D11-00A0C91BC942}") = "legacy", "legacy.vcproj", "{57F56795-1802-4605-88A0-013AAE9998F6}"
13 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|Win32.ActiveCfg = Debug|Win32
14 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|Win32.Build.0 = Debug|Win32
15 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|x64.ActiveCfg = Debug|Win32
16 {57F56795-1802-4605-88A0-013AAE9998F6}.Debug|x64.Build.0 = Debug|Win32
17 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|Win32.ActiveCfg = Release|Win32
18 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|Win32.Build.0 = Release|Win32
19 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|x64.ActiveCfg = Release|Win32
20 {57F56795-1802-4605-88A0-013AAE9998F6}.Release|x64.Build.0 = Release|Win32
/external/eigen/Eigen/src/Core/products/
DGeneralBlockPanelKernel.h598 LhsPacket A0, A1;
603 traits.loadLhs(&blA[0*LhsProgress], A0);
606 traits.madd(A0,B_0,C0,T0);
609 traits.madd(A0,B_0,C1,T0);
612 traits.loadLhs(&blA[2*LhsProgress], A0);
615 traits.madd(A0,B_0,C0,T0);
618 traits.madd(A0,B_0,C1,T0);
621 traits.loadLhs(&blA[4*LhsProgress], A0);
624 traits.madd(A0,B_0,C0,T0);
627 traits.madd(A0,B_0,C1,T0);
[all …]
DSelfadjointMatrixVector.h82 const Scalar* EIGEN_RESTRICT A0 = lhs + j*lhsStride; in run() local
101 res[j] += cjd.pmul(numext::real(A0[j]), t0); in run()
110 res[j+1] += cj0.pmul(A0[j+1],t0); in run()
111 t2 += cj1.pmul(A0[j+1], rhs[j+1]); in run()
116 res[i] += t0 * A0[i] + t1 * A1[i]; in run()
117 t2 += numext::conj(A0[i]) * rhs[i]; in run()
122 const Scalar* EIGEN_RESTRICT a0It = A0 + alignedStart; in run()
140 res[i] += cj0.pmul(A0[i], t0) + cj0.pmul(A1[i],t1); in run()
141 t2 += cj1.pmul(A0[i], rhs[i]); in run()
150 const Scalar* EIGEN_RESTRICT A0 = lhs + j*lhsStride; in run() local
[all …]
/external/lldb/include/lldb/Utility/
DSharingPtr.h96 template <class A0>
97 shared_ptr_emplace(A0& a0) in shared_ptr_emplace()
100 template <class A0, class A1>
101 shared_ptr_emplace(A0& a0, A1& a1) in shared_ptr_emplace()
104 template <class A0, class A1, class A2>
105 shared_ptr_emplace(A0& a0, A1& a1, A2& a2) in shared_ptr_emplace()
108 template <class A0, class A1, class A2, class A3>
109 shared_ptr_emplace(A0& a0, A1& a1, A2& a2, A3& a3) in shared_ptr_emplace()
112 template <class A0, class A1, class A2, class A3, class A4>
113 shared_ptr_emplace(A0& a0, A1& a1, A2& a2, A3& a3, A4& a4) in shared_ptr_emplace()
[all …]
DCleanUp.h186 template <typename T, typename R, typename A0>
191 typedef R (*CallbackType)(value_type, A0);
198 CleanUp2 (value_type value, CallbackType callback, A0 arg) : in CleanUp2()
213 CleanUp2 (value_type value, value_type invalid, CallbackType callback, A0 arg) : in CleanUp2()
314 A0 m_argument;
/external/clang/INPUTS/
Dmacro_pounder_obj.c6 #define A0 a b macro
7 #define A1 A0 A0 A0 A0 A0 A0
Dmacro_pounder_fn.c6 #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/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
Dis_trivially_constructible.pass.cpp23 template <class T, class A0>
26 static_assert(( std::is_trivially_constructible<T, A0>::value), ""); in test_is_trivially_constructible()
35 template <class T, class A0>
38 static_assert((!std::is_trivially_constructible<T, A0>::value), ""); in test_is_not_trivially_constructible()
41 template <class T, class A0, class A1>
44 static_assert((!std::is_trivially_constructible<T, A0, A1>::value), ""); in test_is_not_trivially_constructible()
Dis_constructible.pass.cpp43 template <class T, class A0>
46 static_assert( (std::is_constructible<T, A0>::value), ""); in test_is_constructible()
49 template <class T, class A0, class A1>
52 static_assert( (std::is_constructible<T, A0, A1>::value), ""); in test_is_constructible()
61 template <class T, class A0>
64 static_assert((!std::is_constructible<T, A0>::value), ""); in test_is_not_constructible()
Dis_nothrow_constructible.pass.cpp23 template <class T, class A0>
26 static_assert(( std::is_nothrow_constructible<T, A0>::value), ""); in test_is_nothrow_constructible()
35 template <class T, class A0>
38 static_assert((!std::is_nothrow_constructible<T, A0>::value), ""); in test_is_not_nothrow_constructible()
41 template <class T, class A0, class A1>
44 static_assert((!std::is_nothrow_constructible<T, A0, A1>::value), ""); in test_is_not_nothrow_constructible()
/external/llvm/test/CodeGen/X86/
Dremat-mov-0.ll9 ; 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/lib/Transforms/Scalar/
DMergedLoadStoreMotion.cpp338 Instruction *A0 = dyn_cast<Instruction>(L0->getPointerOperand()); in hoistLoad() local
340 if (A0 && A1 && A0->isIdenticalTo(A1) && isSafeToHoist(A0) && in hoistLoad()
341 A0->hasOneUse() && (A0->getParent() == L0->getParent()) && in hoistLoad()
343 isa<GetElementPtrInst>(A0)) { in hoistLoad()
347 hoistInstruction(BB, A0, A1); in hoistLoad()
479 Instruction *A0 = dyn_cast<Instruction>(S0->getPointerOperand()); in sinkStore() local
481 if (A0 && A1 && A0->isIdenticalTo(A1) && A0->hasOneUse() && in sinkStore()
482 (A0->getParent() == S0->getParent()) && A1->hasOneUse() && in sinkStore()
483 (A1->getParent() == S1->getParent()) && isa<GetElementPtrInst>(A0)) { in sinkStore()
495 Instruction *ANew = A0->clone(); in sinkStore()
[all …]
/external/pcre/dist/testdata/
Dtestinput18278 /X\s+\x{A0}/8BZ
279 X\x20\x{A0}\x{A0}
281 /X\s+\x{A0}/8BZT1
282 X\x20\x{A0}\x{A0}
284 /\S+\x{A0}/8BZ
285 X\x{A0}\x{A0}
287 /\S+\x{A0}/8BZT1
288 X\x{A0}\x{A0}
/external/llvm/unittests/ADT/
DSmallVectorTest.cpp793 EmplaceableArg<0> A0; member
802 explicit Emplaceable(A0Ty &&A0) in Emplaceable()
803 : A0(std::forward<A0Ty>(A0)), State(ES_Emplaced) {} in Emplaceable()
806 Emplaceable(A0Ty &&A0, A1Ty &&A1) in Emplaceable()
807 : A0(std::forward<A0Ty>(A0)), A1(std::forward<A1Ty>(A1)), in Emplaceable()
811 Emplaceable(A0Ty &&A0, A1Ty &&A1, A2Ty &&A2) in Emplaceable()
812 : A0(std::forward<A0Ty>(A0)), A1(std::forward<A1Ty>(A1)), in Emplaceable()
816 Emplaceable(A0Ty &&A0, A1Ty &&A1, A2Ty &&A2, A3Ty &&A3) in Emplaceable()
817 : A0(std::forward<A0Ty>(A0)), A1(std::forward<A1Ty>(A1)), in Emplaceable()
833 EmplaceableArg<0> A0(true); in TEST() local
[all …]
/external/eigen/Eigen/src/SparseLU/
DSparseLU_gemm_kernel.h86 const Scalar* A0 = A+ib+(k+0)*lda; in sparselu_gemm() local
94 a0 = pload<Packet>(A0); in sparselu_gemm()
113 a0 = pload<Packet>(A0+i+(I+1)*PacketSize); \ in sparselu_gemm()
130 prefetch((A0+i+(5)*PacketSize)); in sparselu_gemm()
154 C0[i] += A0[i]*Bc0[0]+A1[i]*Bc0[1]+A2[i]*Bc0[2]+A3[i]*Bc0[3]; in sparselu_gemm()
155 C1[i] += A0[i]*Bc1[0]+A1[i]*Bc1[1]+A2[i]*Bc1[2]+A3[i]*Bc1[3]; in sparselu_gemm()
159 C0[i] += A0[i]*Bc0[0]+A1[i]*Bc0[1]; in sparselu_gemm()
160 C1[i] += A0[i]*Bc1[0]+A1[i]*Bc1[1]; in sparselu_gemm()
185 const Scalar* A0 = A+ib+(k+0)*lda; in sparselu_gemm() local
192 a0 = pload<Packet>(A0); in sparselu_gemm()
[all …]
/external/icu/icu4c/source/data/unidata/
DFractionalUCA.txt410 [top_byte A0 Hani Hans Hant ]
585 05A0; [,,]
1224 0327; [, A0, 05]
1362 FF9E; [, AE, A0]
1364 FF9F; [, B0, A0]
1711 FDD1 00A0; [03 02 02, 05, 05] # SPACE first primary starts new lead byte
1743 00A0; [04, 05, 31]
1807 30A0; [05 2C, 05, 05]
1810 FF65; [05 2E, 05, A0]
2048 FF61; [09 18, 05, A0]
[all …]
/external/llvm/test/Transforms/SLPVectorizer/X86/
Dextract.ll17 %A0 = fadd double %V0, 0.0
19 store double %A0, double* %P0, align 4
35 %A0 = fadd double %V0, 1.2
37 store double %A0, double* %P0, align 4
53 %A0 = fadd double %V0, 5.5
55 store double %A0, double* %P0, align 4

12345678910