/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | GuidedAction.java | 111 public abstract static class BuilderBase<B extends BuilderBase> { 189 public B clickAction(long id) { in clickAction() 209 return (B) this; in clickAction() 217 public B id(long id) { in id() 219 return (B) this; in id() 227 public B title(CharSequence title) { in title() 229 return (B) this; in title() 237 public B title(@StringRes int titleResourceId) { in title() 239 return (B) this; in title() 247 public B editTitle(CharSequence editTitle) { in editTitle() [all …]
|
D | GuidedDatePickerAction.java | 35 public abstract static class BuilderBase<B extends BuilderBase> 36 extends GuidedAction.BuilderBase<B> { 57 public B datePickerFormat(String format) { in datePickerFormat() 59 return (B) this; in datePickerFormat() 67 public B date(long date) { in date() 69 return (B) this; in date() 77 public B minDate(long minDate) { in minDate() 79 return (B) this; in minDate() 87 public B maxDate(long maxDate) { in maxDate() 89 return (B) this; in maxDate()
|
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/ |
D | ArrayUtilsTest.java | 30 final Object B = 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() 39 assertFalse(ArrayUtils.contains(new Object[] { A, B, C }, null)); in testContains() 46 final Object B = 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() 52 assertEquals(2, ArrayUtils.indexOf(new Object[] { A, B, C }, C)); in testIndexOf() 53 assertEquals(-1, ArrayUtils.indexOf(new Object[] { A, B, C }, D)); in testIndexOf() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/ |
D | h264bsdFillRow7.S | 65 B loop_center 66 B loop_center 67 B case_1 68 B case_2 69 B case_3 70 B case_4 71 B case_5 72 B case_6 73 B case_7 74 B case_8 [all …]
|
/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/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/ |
D | armVCM4P10_InterpolateLuma_Align_unsafe_s.S | 35 B Copy0toAligned 36 B Copy1toAligned 37 B Copy2toAligned 38 B Copy3toAligned 45 B CopyEnd 57 B CopyEnd 69 B CopyEnd 92 B Copy0toVAligned 93 B Copy1toVAligned 94 B Copy2toVAligned [all …]
|
D | omxVCM4P10_InterpolateLuma_s.S | 44 B L0x3f0 45 B L0x78 46 B L0xa8 47 B L0xdc 48 B L0x100 49 B L0x134 50 B L0x168 51 B L0x1a8 52 B L0x1f0 53 B L0x234 [all …]
|
D | armVCM4P10_InterpolateLuma_Copy_unsafe_s.S | 35 B Copy4x4Align0 36 B Copy4x4Align1 37 B Copy4x4Align2 38 B Copy4x4Align3 48 B Copy4x4End 70 B Copy4x4End 92 B Copy4x4End
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/ |
D | h264bsdFillRow7.s | 74 B loop_center 75 B loop_center 76 B case_1 77 B case_2 78 B case_3 79 B case_4 80 B case_5 81 B case_6 82 B case_7 83 B case_8 [all …]
|
/frameworks/av/services/audioflinger/ |
D | AudioResamplerFirGen.h | 221 inline double Poly2(double A, double B, double x) { 222 return A + x * B; 225 inline double Poly4(double A, double B, double C, double D, double x) { 226 return A + x * (B + x * (C + x * (D))); 229 inline double Poly7(double A, double B, double C, double D, double E, double F, double G, 231 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G)))))); 234 inline double Poly9(double A, double B, double C, double D, double E, double F, double G, 236 return A + x * (B + x * (C + x * (D + x * (E + x * (F + x * (G + x * (H + x * (I)))))))); 247 inline double Poly2(double A, double B, double x) { 248 return A + B * x; [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
D | omxVCM4P10_InterpolateLuma_s.s | 210 B Case_f 211 B Case_0 212 B Case_1 213 B Case_2 214 B Case_3 215 B Case_4 216 B Case_5 217 B Case_6 218 B Case_7 219 B Case_8 [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | ScriptIntrinsicBLAS.java | 2259 …static void validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Al… in validateL3() argument 2262 (B != null && !B.getType().getElement().isCompatible(e)) || in validateL3() 2274 if ((A == null && B != null) || (A != null && B == null)) { in validateL3() 2277 if (B != null) { in validateL3() 2282 aM = B.getType().getY(); in validateL3() 2283 aN = B.getType().getX(); in validateL3() 2295 if (B != null) { in validateL3() 2297 bN = B.getType().getY(); in validateL3() 2298 bM = B.getType().getX(); in validateL3() 2300 bM = B.getType().getY(); in validateL3() [all …]
|
/frameworks/rs/cpp/ |
D | ScriptIntrinsicBLAS.cpp | 101 float alpha, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Single() argument 106 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Single() 115 double alpha, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Double() argument 120 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Double() 128 float alphaX, float alphaY, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Complex() argument 133 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Complex() 141 double alphaX, double alphaY, RsAllocation A, RsAllocation B, in nScriptIntrinsicBLAS_Z() argument 146 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_Z() 154 RsAllocation A, int a_offset, RsAllocation B, int b_offset, in nScriptIntrinsicBLAS_BNNM() argument 167 RsAllocation in_allocs[3] = {A, B, C}; in nScriptIntrinsicBLAS_BNNM() [all …]
|
/frameworks/av/media/libstagefright/foundation/ |
D | AHierarchicalStateMachine.cpp | 90 Vector<sp<AState> > B; in changeState() local 93 B.push(cur); in changeState() 101 while (A.size() > 0 && B.size() > 0 && A.top() == B.top()) { in changeState() 103 B.pop(); in changeState() 112 for (size_t i = B.size(); i > 0;) { in changeState() 114 B.editItemAt(i)->stateEntered(); in changeState()
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | ScriptIntrinsicBLAS.java | 2862 …static void validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Al… in validateL3() argument 2865 (B != null && !B.getType().getElement().isCompatible(e)) || in validateL3() 2877 if ((A == null && B != null) || (A != null && B == null)) { in validateL3() 2880 if (B != null) { in validateL3() 2885 aM = B.getType().getY(); in validateL3() 2886 aN = B.getType().getX(); in validateL3() 2898 if (B != null) { in validateL3() 2900 bN = B.getType().getY(); in validateL3() 2901 bM = B.getType().getX(); in validateL3() 2903 bM = B.getType().getY(); in validateL3() [all …]
|
/frameworks/native/include/ui/ |
D | vec4.h | 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() 96 template<typename A, typename B> 97 tvec4(const Impersonator< tvec3<A> >& v, B w) in tvec4() 103 template<typename A, typename B, typename C> 104 tvec4(const Impersonator< tvec2<A> >& v, B z, C w) in tvec4()
|
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); 147 template <typename A, typename B> 148 static tmat44 rotate(A radian, const tvec3<B>& about); 189 typename A, typename B, typename C, typename D, 193 tmat44<T>::tmat44( A m00, B m01, C m02, D m03, in tmat44() [all …]
|
/frameworks/base/media/tests/contents/media_api/music/ |
D | test_amr_ietf.amr | 5 �T�c�<(E���A��&��B��T�-nAd�Ѵ%��<=�@ 9 …�ݖzF����/L9��-~PJB(�<z_1�&���˷��|D�p�B����5���<m!���CՒ|L2�{D�g���5��s���p<���������… 11 ��������FXkX^@<~`zhŚ'��Pp���443�__�]����<B:20�Q(���T��A��������=v�`<POI���6��J�*���g���… 20 1�s��<)���U0X����<�,OG���+4uxkw�**�m>�;.��e��<�>d��B��z�����D�v��gW����Q���<�Uと�7qNu&�{��… 21 ؠ<���W%�g-KLo�}�G�@J��bҗ�Z�<[�'���?��K���B�j˞|���!�`<4���k��3�::�۩m�O�$�q��`+�<Y��"�… 69 …�����L%_���<�X�8��U�&מ�l�+C_x[�q:^�@ٲ�<44WE(��U��"Pz�B�D,��D�$�1��<"?vG�2���B�m�Y�D��d�Q� 78 !�6����n�P�6�<1�w��\�6�'ǣ�J�VЗ�+��@<�d]�����,��;1�$�>C�4_2A��<��z���B�,�-���ėy�t… 85 H�B�<J{W�Բ��?�mN7�Sh��N������v�<O&q�c��3�-�e�VӶ�q�u�ͶO�y��<T�g��H!��+��b�_��9fFD����(p<… 94 …�|��F�܌0�N��tT�E�'���<�g�?��AK���t^�x�������(5�@<�B(<�"����Y��l����B�Z��G�<�u�iJ+c�3{�… 98 3�Q����G�\qξB,b@�<8>9I�2?�ʧm�r(���L�z [all …]
|
/frameworks/opt/vcard/tests/res/raw/ |
D | v21_japanese_2.vcf | 6 ADR;HOME;CHARSET=SHIFT_JIS;ENCODING=QUOTED-PRINTABLE:;=93=8C=8B=9E=93=73= 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/rs/cpu_ref/ |
D | rsCpuIntrinsicBLAS.cpp | 73 void** B, in initABC() argument 84 *B = ain[1]->mHal.drvState.lod[0].mallocPtr; in initABC() 111 void *B = nullptr; in invokeForEach() local 495 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach() 497 (float*)A, lda, (float*)B, ldb, call->beta.f, (float*)C, ldc); in invokeForEach() 500 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach() 502 lda, (float*)B, ldb, call->beta.f, (float*)C, ldc); in invokeForEach() 510 initABC(ain, sizeof(float), &A, &B, &C, &lda, &ldb, &ldc); in invokeForEach() 512 lda, (float*)B, ldb, call->beta.f, (float*)C, ldc); in invokeForEach() 515 initABC(ain, sizeof(float), &A, &B, nullptr, &lda, &ldb, nullptr); in invokeForEach() [all …]
|
D | rsCpuBLASDispatch.h | 293 const int lda, const float *B, const int ldb, 298 const float *B, const int ldb, const float beta, 307 const float *B, const int ldb, const float beta, 313 float *B, const int ldb); 318 float *B, const int ldb); 323 const int lda, const double *B, const int ldb, 328 const double *B, const int ldb, const double beta, 337 const double *B, const int ldb, const double beta, 343 double *B, const int ldb); 348 double *B, const int ldb); [all …]
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
D | SignatureTest.java | 28 …private static final Signature B = new Signature("308204a830820390a003020102020900a1573d0f45bea193… field in SignatureTest 34 assertFalse(Signature.areExactMatch(asArray(A), asArray(B))); in testExactlyEqual() 45 assertFalse(Signature.areEffectiveMatch(asArray(A), asArray(B))); in testEffectiveMatch() 50 assertTrue(Signature.areEffectiveMatch(asArray(A, B), asArray(M, B))); in testEffectiveMatch() 51 assertFalse(Signature.areEffectiveMatch(asArray(A, M), asArray(A, B))); in testEffectiveMatch()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
D | omxVCM4P10_InterpolateLuma_s.s | 190 B Block4x4LoopEnd 201 B Block4x4LoopEnd 210 B Block4x4LoopEnd 220 B Block4x4LoopEnd 231 B Block4x4LoopEnd 254 B Block4x4LoopEnd 268 B Block4x4LoopEnd 291 B Block4x4LoopEnd 300 B Block4x4LoopEnd 315 B Block4x4LoopEnd [all …]
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | mp4def.h | 46 #define PV_MEDIAN(A,B,C) ((A) > (B) ? ((A) < (C) ? (A) : (B) > (C) ? (B) : (C)): (B) < (C) ? (B) : … argument
|
D | post_filter.cpp | 189 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; in H263_Deblock() local 227 B = *(rec_y - width); in H263_Deblock() 228 d = (((C - B) << 2) + A_D); in H263_Deblock() 275 tmpvar = B + d1; in H263_Deblock() 324 B = *(rec_y - width); in H263_Deblock() 325 d = (((C - B) << 2) + A_D); in H263_Deblock() 372 tmpvar = B + d1; in H263_Deblock() 415 B = *(rec_y - 1); in H263_Deblock() 416 d = (((C - B) << 2) + A_D); in H263_Deblock() 463 tmpvar = B + d1; in H263_Deblock() [all …]
|