/frameworks/compile/slang/tests/P_warnings_rsSetElementAt/ |
D | setelementat.rs | 4 rs_allocation A; 21 rsSetElementAt(A, &a, 0, 0); 22 rsSetElementAt(A, &d, 0, 0); 23 rsSetElementAt(A, &a2, 0, 0); 24 rsSetElementAt(A, &a3, 0, 0); 25 rsSetElementAt(A, &a4, 0, 0); 26 rsSetElementAt(A, &c, 0, 0); 27 rsSetElementAt(A, &uc, 0, 0); 28 rsSetElementAt(A, &s, 0, 0); 29 rsSetElementAt(A, &us, 0, 0); [all …]
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
D | SignatureTest.java | 24 …private static final Signature A = new Signature("308201D33082013CA0030201020219373565373461363A31… field in SignatureTest 31 assertTrue(Signature.areExactMatch(asArray(A), asArray(A))); in testExactlyEqual() 34 assertFalse(Signature.areExactMatch(asArray(A), asArray(B))); in testExactlyEqual() 35 assertFalse(Signature.areExactMatch(asArray(A), asArray(M))); in testExactlyEqual() 36 assertFalse(Signature.areExactMatch(asArray(M), asArray(A))); in testExactlyEqual() 38 assertTrue(Signature.areExactMatch(asArray(A, M), asArray(M, A))); in testExactlyEqual() 42 assertTrue(Signature.areEffectiveMatch(asArray(A), asArray(A))); in testEffectiveMatch() 45 assertFalse(Signature.areEffectiveMatch(asArray(A), asArray(B))); in testEffectiveMatch() 46 assertTrue(Signature.areEffectiveMatch(asArray(A), asArray(M))); in testEffectiveMatch() 47 assertTrue(Signature.areEffectiveMatch(asArray(M), asArray(A))); in testEffectiveMatch() [all …]
|
/frameworks/native/include/ui/ |
D | vec4.h | 74 template<typename A> 75 tvec4(A v) : x(v), y(v), z(v), w(v) { } in tvec4() 77 template<typename A, typename B, typename C, typename D> 78 tvec4(A x, B y, C z, D w) : x(x), y(y), z(z), w(w) { } in tvec4() 80 template<typename A, typename B, typename C> 81 tvec4(const tvec2<A>& v, B z, C w) : x(v.x), y(v.y), z(z), w(w) { } in tvec4() 83 template<typename A, typename B> 84 tvec4(const tvec3<A>& v, B w) : x(v.x), y(v.y), z(v.z), w(w) { } in tvec4() 86 template<typename A> 87 explicit tvec4(const tvec4<A>& v) : x(v.x), y(v.y), z(v.z), w(v.w) { } in tvec4() [all …]
|
D | vec3.h | 70 template<typename A> 71 tvec3(A v) : x(v), y(v), z(v) { } in tvec3() 73 template<typename A, typename B, typename C> 74 tvec3(A x, B y, C z) : x(x), y(y), z(z) { } in tvec3() 76 template<typename A, typename B> 77 tvec3(const tvec2<A>& v, B z) : x(v.x), y(v.y), z(z) { } in tvec3() 79 template<typename A> 80 explicit tvec3(const tvec3<A>& v) : x(v.x), y(v.y), z(v.z) { } in tvec3() 82 template<typename A> 83 tvec3(const Impersonator< tvec3<A> >& v) in tvec3() [all …]
|
D | vec2.h | 69 template<typename A> 70 tvec2(A v) : x(v), y(v) { } in tvec2() 72 template<typename A, typename B> 73 tvec2(A x, B y) : x(x), y(y) { } in tvec2() 75 template<typename A> 76 explicit tvec2(const tvec2<A>& v) : x(v.x), y(v.y) { } in tvec2() 78 template<typename A> 79 tvec2(const Impersonator< tvec2<A> >& v) in tvec2() 80 : x(((const tvec2<A>&)v).x), in tvec2() 81 y(((const tvec2<A>&)v).y) { } in tvec2()
|
D | mat4.h | 112 template <typename A, typename B, typename C, typename D> 113 tmat44(const tvec4<A>& v0, const tvec4<B>& v1, const tvec4<C>& v2, const tvec4<D>& v3); 117 typename A, typename B, typename C, typename D, 121 tmat44( A m00, B m01, C m02, D m03, 138 template <typename A, typename B, typename C> 139 static tmat44 lookAt(const tvec3<A>& eye, const tvec3<B>& center, const tvec3<C>& up); 141 template <typename A> 142 static tmat44 translate(const tvec4<A>& t); 144 template <typename A> 145 static tmat44 scale(const tvec4<A>& s); [all …]
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
D | ArrayUtilsTest.java | 29 final Object A = new Object(); in testContains() local 34 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, A)); in testContains() 35 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, B)); in testContains() 36 assertTrue(ArrayUtils.contains(new Object[] { A, B, C }, C)); in testContains() 37 assertTrue(ArrayUtils.contains(new Object[] { A, null, C }, null)); in testContains() 39 assertFalse(ArrayUtils.contains(new Object[] { A, B, C }, null)); in testContains() 41 assertFalse(ArrayUtils.contains(new Object[] { null }, A)); in testContains() 45 final Object A = new Object(); in testIndexOf() local 50 assertEquals(0, ArrayUtils.indexOf(new Object[] { A, B, C }, A)); in testIndexOf() 51 assertEquals(1, ArrayUtils.indexOf(new Object[] { A, B, C }, B)); in testIndexOf() [all …]
|
/frameworks/rs/cpu_ref/linkloader/include/impl/ |
D | ELFObject.hxx | 147 Inst_t A = 0; in relocateARM() local 170 A = *inst; in relocateARM() 171 *inst = (S + A) | T; in relocateARM() 183 A = (Inst_t)(int64_t)SIGN_EXTEND(*inst & 0xFFFFFF, 24); in relocateARM() 184 A <<= 2; in relocateARM() 197 A = SIGN_EXTEND((s << 23) | (i1 << 22) | (i2 << 21) | (u << 11) | l, 24); in relocateARM() 198 A <<= 1; in relocateARM() 255 uint32_t result = (S + A - P) >> 2; in relocateARM() 267 uint32_t result = (S + A - P) >> 1; in relocateARM() 318 A = ((*inst & 0xF0000) >> 4) | (*inst & 0xFFF); in relocateARM() [all …]
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
D | LVM_Polynomial.c | 49 LVM_INT32 Y,A,XTemp,Temp,sign; in LVM_Polynomial() local 72 A=*pCoefficients; in LVM_Polynomial() 75 MUL32x32INTO32(A,XTemp,Temp,31) in LVM_Polynomial() 82 A=*pCoefficients; in LVM_Polynomial() 85 if(A<0) in LVM_Polynomial() 87 A=Abs_32(A); in LVM_Polynomial() 88 Y=Y>>A; in LVM_Polynomial() 92 Y = Y<<A; in LVM_Polynomial()
|
/frameworks/av/media/libeffects/lvm/lib/Common/lib/ |
D | LVM_Macros.h | 36 #define MUL32x32INTO32(A,B,C,ShiftR) \ argument 41 MUL32x32INTO32_HH= ((LVM_INT32)((LVM_INT16)((A)>>16))*((LVM_INT16)((B)>>16)) );\ 42 MUL32x32INTO32_HL= ((LVM_INT32)((B)&MUL32x32INTO32_mask)*((LVM_INT16)((A)>>16))) ;\ 43 MUL32x32INTO32_LH= ((LVM_INT32)((A)&MUL32x32INTO32_mask)*((LVM_INT16)((B)>>16)));\ 44 … MUL32x32INTO32_LL= (LVM_INT32)((A)&MUL32x32INTO32_mask)*(LVM_INT32)((B)&MUL32x32INTO32_mask);\ 75 #define MUL32x16INTO32(A,B,C,ShiftR) \ argument 80 MUL32x16INTO32_HH= ((LVM_INT32)(B)*((LVM_INT16)((A)>>16)));\ 81 MUL32x16INTO32_LL= ((LVM_INT32)((A)&MUL32x16INTO32_mask)*(B));\ 103 #define ADD2_SAT_32x32(A,B,C) \ argument 104 {(C)=(A)+(B);\ [all …]
|
/frameworks/av/services/audioflinger/ |
D | AudioResamplerFirGen.h | 218 inline double Poly2(double A, double B, double x) { 219 return A + x * B; 222 inline double Poly4(double A, double B, double C, double D, double x) { 223 return A + x * (B + x * (C + x * (D))); 226 inline double Poly7(double A, double B, double C, double D, double E, double F, double G, 228 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G)))))); 231 inline double Poly9(double A, double B, double C, double D, double E, double F, double G, 233 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G + x * (H + x * (I)))))))); 244 inline double Poly2(double A, double B, double x) { 245 return A + B * x; [all …]
|
/frameworks/compile/slang/ |
D | legacy_bitcode.h | 20 static inline uint64_t encodeLLVMAttributesForBitcode(llvm::AttributeSet A, in encodeLLVMAttributesForBitcode() argument 22 uint64_t EncodedAttrs = A.Raw(i) & 0xffff; in encodeLLVMAttributesForBitcode() 23 if (A.hasAttribute(i, llvm::Attribute::Alignment)) { in encodeLLVMAttributesForBitcode() 26 EncodedAttrs |= (A.getParamAlignment(i) << 16); in encodeLLVMAttributesForBitcode() 29 EncodedAttrs |= (A.Raw(i) & (0xfffull << 21)) << 11; in encodeLLVMAttributesForBitcode()
|
/frameworks/av/media/libstagefright/foundation/ |
D | AHierarchicalStateMachine.cpp | 80 Vector<sp<AState> > A; in changeState() local 83 A.push(cur); in changeState() 101 while (A.size() > 0 && B.size() > 0 && A.top() == B.top()) { in changeState() 102 A.pop(); in changeState() 108 for (size_t i = 0; i < A.size(); ++i) { in changeState() 109 A.editItemAt(i)->stateExited(); in changeState()
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
D | UT_foreach_bounds.java | 25 private Allocation A; field in UT_foreach_bounds 43 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 44 s.set_aRaw(A); in initializeGlobals() 46 s.set_ain(A); in initializeGlobals() 47 s.set_aout(A); in initializeGlobals() 52 s.forEach_zero(A); in initializeGlobals() 56 s.forEach_root(A, sc); in initializeGlobals()
|
D | UT_foreach.java | 25 private Allocation A; field in UT_foreach 39 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 40 s.set_aRaw(A); in initializeGlobals() 50 s.forEach_root(A); in run() 52 s.forEach_foo(A, A); in run()
|
D | UT_noroot.java | 25 private Allocation A; field in UT_noroot 39 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 40 s.set_aRaw(A); in initializeGlobals() 50 s.forEach_foo(A, A); in run()
|
D | UT_kernel.java | 26 private Allocation A; field in UT_kernel 39 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 40 s.bind_ain(A); in initializeGlobals() 52 s.forEach_init_vars(A); in run() 53 s.forEach_root(A, B); in run()
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
D | UT_foreach.java | 25 private Allocation A; field in UT_foreach 39 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 40 s.set_aRaw(A); in initializeGlobals() 50 s.forEach_root(A); in run() 52 s.forEach_foo(A, A); in run()
|
D | UT_foreach_bounds.java | 25 private Allocation A; field in UT_foreach_bounds 39 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 40 s.set_aRaw(A); in initializeGlobals() 42 s.set_ain(A); in initializeGlobals() 43 s.set_aout(A); in initializeGlobals() 48 s.forEach_zero(A); in initializeGlobals()
|
D | UT_noroot.java | 25 private Allocation A; field in UT_noroot 39 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 40 s.set_aRaw(A); in initializeGlobals() 50 s.forEach_foo(A, A); in run()
|
D | UT_kernel.java | 26 private Allocation A; field in UT_kernel 39 A = Allocation.createTyped(RS, typeBuilder.create()); in initializeGlobals() 40 s.bind_ain(A); in initializeGlobals() 52 s.forEach_init_vars(A); in run() 53 s.forEach_root(A, B); in run()
|
/frameworks/rs/cpu_ref/linkloader/lib/ |
D | ELFHeader.cpp | 23 #define CASE_PAIR(A, B) case A: return B; in getClassStr() argument 34 #define CASE_PAIR(A, B) case A: return B; in getEndiannessStr() argument 49 #define CASE_PAIR(A, B) case A: return B; in getOSABIStr() argument
|
/frameworks/compile/libbcc/tests/debuginfo/host-tests/ |
D | forward-declare-class.cpp | 13 class A; 16 void foo(const A *p); 21 class A { class 26 A irp;
|
/frameworks/opt/vcard/tests/res/raw/ |
D | v21_japanese_2.vcf | 7 =8F=61=92=4A=8B=E6=8D=F7=8B=75=92=AC26-1=83=5A=83=8B=83=8A=83=41=83=93= 8 =83=5E=83=8F=81=5B6=8A=4B;;;;150-8512;
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64Relocator.cpp | 429 Relocator::DWord A = pReloc.target() + pReloc.addend(); in abs() local 438 pReloc.target() = S + A; in abs() 443 dyn_rel->setAddend(S + A); in abs() 457 dyn_rel->setAddend(S + A); in abs() 460 dyn_rel->setAddend(A); in abs() 467 pReloc.target() = S + A; in abs() 478 Relocator::DWord A = pReloc.addend(); in rel() local 482 A += pReloc.target() & get_mask(pParent.getSize(pReloc.type())); in rel() 484 A += pReloc.target(); in rel() 498 Relocator::DWord X = S + A - P; in rel() [all …]
|