/frameworks/av/media/codec2/sfplugin/ |
D | CCodecConfig.cpp | 344 typedef Domain D; in initializeStandardParams() typedef 374 .limitTo(D::INPUT & D::READ)); in initializeStandardParams() 376 .limitTo(D::OUTPUT & D::READ)); in initializeStandardParams() 379 .limitTo(D::ENCODER & D::CODED)); in initializeStandardParams() 382 .limitTo(D::AUDIO & D::DECODER & D::CODED)); in initializeStandardParams() 385 .limitTo(D::ENCODER & D::READ & D::OUTPUT)); in initializeStandardParams() 387 .limitTo(D::ENCODER & D::VIDEO & D::PARAM)); in initializeStandardParams() 389 .limitTo(D::ENCODER & D::CODED) in initializeStandardParams() 393 .limitTo(D::ENCODER)); in initializeStandardParams() 395 .limitTo(D::VIDEO) in initializeStandardParams() [all …]
|
/frameworks/base/libs/hwui/utils/ |
D | TypeLogic.h | 23 template <typename D, typename S> struct copy_const { 24 using type = std::conditional_t<std::is_const<S>::value, std::add_const_t<D>, D>; 26 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type; 28 template <typename D, typename S> struct copy_volatile { 29 using type = std::conditional_t<std::is_volatile<S>::value, std::add_volatile_t<D>, D>; 31 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type; 33 template <typename D, typename S> struct copy_cv { 34 using type = copy_volatile_t<copy_const_t<D, S>, S>; 37 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>; 38 template <typename D, typename S> using same_cv_t = typename same_cv<D, S>::type;
|
/frameworks/rs/tests/java_api/Refocus/dataExtraction/ |
D | N5.txt | 9 07-30 19:27:06.465 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ Initialize: 769… 10 07-30 19:27:07.209 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ UnpackInputImag… 15 07-30 19:27:07.387 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ MarkLayerMask: … 16 07-30 19:27:07.786 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeLayerMat… 17 07-30 19:27:08.762 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeIntegral… 18 07-30 19:27:08.791 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ FilterLayerBehi… 19 07-30 19:27:09.832 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ updateSharpImag… 24 07-30 19:27:10.008 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ MarkLayerMask: … 25 07-30 19:27:10.222 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeLayerMat… 26 07-30 19:27:11.009 20903-20903/com.example.xinyiwang.refocus D/RefocusFilterd1new﹕ ComputeIntegral… [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/ |
D | Utils.kt | 31 fun <A, B, C, D> toQuad(a: A, b: B, c: C, d: D) = Quad(a, b, c, d) in <lambda>() 33 fun <A, B, C, D> toQuad(a: A, bcd: Triple<B, C, D>) = in <lambda>() 35 fun <A, B, C, D> toQuad(abc: Triple<A, B, C>, d: D) = in <lambda>() 38 fun <A, B, C, D, E> toQuint(a: A, b: B, c: C, d: D, e: E) = Quint(a, b, c, d, e) in <lambda>() 40 fun <A, B, C, D, E> toQuint(a: A, bcde: Quad<B, C, D, E>) = in <lambda>() 43 fun <A, B, C, D, E, F> toSextuple(a: A, bcdef: Quint<B, C, D, E, F>) = in <lambda>() 46 fun <A, B, C, D, E, F, G> toSeptuple(a: A, bcdefg: Sextuple<B, C, D, E, F, G>) = in <lambda>() 81 fun <A, B, C, D> Flow<A>.sample( in <lambda>() 84 d: Flow<D> in <lambda>() 85 ): Flow<Quad<A, B, C, D>> { in <lambda>() [all …]
|
/frameworks/native/services/inputflinger/tests/ |
D | UinputDevice.h | 32 template <class D, class... Ts> 33 std::unique_ptr<D> createUinputDevice(Ts... args) { in createUinputDevice() 35 std::unique_ptr<D> dev(new D(args...)); in createUinputDevice() 49 template <class D, class... Ts> 50 friend std::unique_ptr<D> createUinputDevice(Ts... args); 85 template <class D, class... Ts> 86 friend std::unique_ptr<D> createUinputDevice(Ts... args); 109 template <class D, class... Ts> 110 friend std::unique_ptr<D> createUinputDevice(Ts... args); 124 template <class D, class... Ts> [all …]
|
/frameworks/base/core/java/com/android/internal/util/function/pooled/ |
D | PooledLambda.java | 284 static <A, B, C, D> PooledPredicate<A> obtainPredicate( in obtainPredicate() 285 QuadPredicate<? super A, ? super B, ? super C, ? super D> function, in obtainPredicate() 286 ArgumentPlaceholder<A> arg1, B arg2, C arg3, D arg4) { in obtainPredicate() 305 static <A, B, C, D, E> PooledPredicate<A> obtainPredicate( in obtainPredicate() 306 QuintPredicate<? super A, ? super B, ? super C, ? super D, ? super E> function, in obtainPredicate() argument 307 ArgumentPlaceholder<A> arg1, B arg2, C arg3, D arg4, E arg5) { in obtainPredicate() 431 static <A, B, C, D> PooledRunnable obtainRunnable( in obtainRunnable() 432 QuadConsumer<? super A, ? super B, ? super C, ? super D> function, in obtainRunnable() 433 A arg1, B arg2, C arg3, D arg4) { in obtainRunnable() 464 static <A, B, C, D> Message obtainMessage( in obtainMessage() [all …]
|
D | OmniFunction.java | 53 abstract class OmniFunction<A, B, C, D, E, F, G, H, I, J, K, R> implements 55 QuadFunction<A, B, C, D, R>, QuintFunction<A, B, C, D, E, R>, 56 HexFunction<A, B, C, D, E, F, R>, HeptFunction<A, B, C, D, E, F, G, R>, 57 OctFunction<A, B, C, D, E, F, G, H, R>, NonaFunction<A, B, C, D, E, F, G, H, I, R>, 58 DecFunction<A, B, C, D, E, F, G, H, I, J, R>, 59 UndecFunction<A, B, C, D, E, F, G, H, I, J, K, R>, 60 BiConsumer<A, B>, TriConsumer<A, B, C>, QuadConsumer<A, B, C, D>, 61 QuintConsumer<A, B, C, D, E>, HexConsumer<A, B, C, D, E, F>, 62 HeptConsumer<A, B, C, D, E, F, G>, OctConsumer<A, B, C, D, E, F, G, H>, 63 NonaConsumer<A, B, C, D, E, F, G, H, I>, DecConsumer<A, B, C, D, E, F, G, H, I, J>, [all …]
|
/frameworks/base/cmds/incidentd/testdata/ |
D | kmsg.txt | 5 D - 104829 - APPSBL Image Loaded, Delta - (2498816 Bytes) 7 D - 643611 - SBL1, Delta 13 D - 244 - clock_init, Delta 17 D - 3386 - QSEE Dev Config Image Loaded, Delta - (46232 Bytes) 20 D - 2166 - APDP Image Loaded, Delta - (7696 Bytes) 23 D - 50782 - QSEE Image Loaded, Delta - (1648640 Bytes) 25 D - 244 - SEC Image Loaded, Delta - (4096 Bytes) 29 D - 91 - sbl1_efs_handle_cookies, Delta 32 D - 11010 - QHEE Image Loaded, Delta - (258280 Bytes) 35 D - 10736 - RPM Image Loaded, Delta - (224104 Bytes) [all …]
|
D | kmsg.txt.gz |
|
/frameworks/base/core/java/android/content/ |
D | Loader.java | 56 public class Loader<D> { 58 OnLoadCompleteListener<D> mListener; 59 OnLoadCanceledListener<D> mOnLoadCanceledListener; 104 public interface OnLoadCompleteListener<D> { 111 public void onLoadComplete(Loader<D> loader, D data); in onLoadComplete() 125 public interface OnLoadCanceledListener<D> { 131 public void onLoadCanceled(Loader<D> loader); in onLoadCanceled() 155 public void deliverResult(D data) { in deliverResult() 194 public void registerListener(int id, OnLoadCompleteListener<D> listener) { in registerListener() 207 public void unregisterListener(OnLoadCompleteListener<D> listener) { in unregisterListener() [all …]
|
D | AsyncTaskLoader.java | 58 public abstract class AsyncTaskLoader<D> extends Loader<D> { 62 final class LoadTask extends AsyncTask<Void, Void, D> implements Runnable { 71 protected D doInBackground(Void... params) { in doInBackground() 74 D data = AsyncTaskLoader.this.onLoadInBackground(); in doInBackground() 94 protected void onPostExecute(D data) { in onPostExecute() 105 protected void onCancelled(D data) { in onCancelled() 222 public void onCanceled(D data) { in onCanceled() 248 void dispatchOnCancelled(LoadTask task, D data) { in dispatchOnCancelled() 261 void dispatchOnLoadComplete(LoadTask task, D data) { in dispatchOnLoadComplete() 306 public abstract D loadInBackground(); in loadInBackground() [all …]
|
/frameworks/base/core/java/android/companion/ |
D | DeviceFilter.java | 35 public interface DeviceFilter<D extends Parcelable> extends Parcelable { 50 boolean matches(D device); in matches() 54 String getDeviceDisplayName(D device); in getDeviceDisplayName() 64 static <D extends Parcelable> boolean matches(@Nullable DeviceFilter<D> filter, D device) { in matches()
|
/frameworks/av/media/libeffects/lvm/lib/Eq/src/ |
D | LVEQNB_CalcCoef.cpp | 132 LVM_FLOAT D; in LVEQNB_SinglePrecCoefs() local 142 D = LVEQNB_DTable[15]; /* D = 1 if GaindB >= 0 */ in LVEQNB_SinglePrecCoefs() 144 D = LVEQNB_DTable[Gain + 15]; /* D = 1 / (1 + G) if GaindB < 0 */ in LVEQNB_SinglePrecCoefs() 150 B2 = -0.5 * (2 * QFactor - D * T0) / (2 * QFactor + D * T0); in LVEQNB_SinglePrecCoefs()
|
/frameworks/av/media/module/codecs/m4v_h263/dec/src/ |
D | post_filter.cpp | 43 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; in H263_Deblock() local 78 D = *(rec_y + width); in H263_Deblock() 79 A_D = A - D; in H263_Deblock() 135 *(rec_y + width) = D + d2; in H263_Deblock() 175 D = *(rec_y + width); in H263_Deblock() 176 A_D = A - D; in H263_Deblock() 232 *(rec_y + width) = D + d2; in H263_Deblock() 266 D = *(rec_y + 1); in H263_Deblock() 267 A_D = A - D; in H263_Deblock() 323 *(rec_y + 1) = D + d2; in H263_Deblock() [all …]
|
/frameworks/base/core/java/android/app/ |
D | LoaderManager.java | 70 public interface LoaderCallbacks<D> { 78 public Loader<D> onCreateLoader(int id, Bundle args); in onCreateLoader() 119 public void onLoadFinished(Loader<D> loader, D data); in onLoadFinished() 128 public void onLoaderReset(Loader<D> loader); in onLoaderReset() 153 public abstract <D> Loader<D> initLoader(int id, Bundle args, in initLoader() 154 LoaderManager.LoaderCallbacks<D> callback); in initLoader() 171 public abstract <D> Loader<D> restartLoader(int id, Bundle args, in restartLoader() 172 LoaderManager.LoaderCallbacks<D> callback); in restartLoader() 186 public abstract <D> Loader<D> getLoader(int id); in getLoader() 616 … public <D> Loader<D> initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) { in initLoader() [all …]
|
/frameworks/base/media/tests/contents/media_api/music/ |
D | test_amr_ietf.amr | 9 …�ݖzF����/L9��-~PJB(�<z_1�&���˷��|D�p�B����5���<m!���CՒ|L2�{D�g���5��s���p<���������… 12 D�sG�vE0ɰ<x�q��y���{���{�����]'Ӽ��@�<r)����g� 20 …���+4uxkw�**�m>�;.��e��<�>d��B��z�����D�v��gW����Q���<�Uと�7qNu&�{����������n̲�p<$���<4ԣ�u�… 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 …��@<�d]�����,��;1�$�>C�4_2A��<��z���B�,�-���ėy�t�.߄�$�<��!`��DT���Gc )�u�+I�#<… 80 2��Z�.�yM��N�>�<�_K��A�<l����=N��-`��3�L��+�@<�D�,D��V�����#x�/��KY!���p<#�W�6�j(9��9�… 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<… 87 …Z�2�<������멸��-N7q:�h��Nc�S�}P<Drm�L2��/�nh����p�~ ����D�<�pdE�� ��f���ml�FN��Կ��CF�<D�Z… 88 �>�L��&(:�0���Y�<�dd9�R!�PY`��D�w�[� 105 …���T�Cm4�|p�:��}�a=��<~AVx5��ɚ�8�%��rmG5ݥZ�hu��<0S�r�kE�+jآ�/T����?�Djo���<8@9NN��ZE�E%�1… [all …]
|
/frameworks/av/media/libaudioprocessing/ |
D | AudioResamplerFirGen.h | 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)))))))); 259 inline double Poly4(double A, double B, double C, double D, double x, double x2) { 260 return Poly2(A, B, x) + Poly2(C, D, x) * x2; // same as poly2(poly2, poly2, x2); 263 inline double Poly4(double A, double B, double C, double D, double x) { 264 return Poly4(A, B, C, D, x, x * x); [all …]
|
/frameworks/native/libs/binder/rust/src/ |
D | parcel.rs | 443 pub fn read<D: Deserialize>(&self) -> Result<D> { in read() argument 444 D::deserialize(self) in read() 450 pub fn read_onto<D: Deserialize>(&self, x: &mut D) -> Result<()> { in read_onto() 520 pub fn resize_out_vec<D: Default + Deserialize>(&self, out_vec: &mut Vec<D>) -> Result<()> { in resize_out_vec() 540 pub fn resize_nullable_out_vec<D: Default + Deserialize>( in resize_nullable_out_vec() 542 out_vec: &mut Option<Vec<D>>, in resize_nullable_out_vec() argument 568 pub fn read<D: Deserialize>(&self) -> Result<D> { in read() argument 569 D::deserialize(&self.parcel) in read() 580 pub fn read<D: Deserialize>(&self) -> Result<D> { in read() argument 587 pub fn read_onto<D: Deserialize>(&self, x: &mut D) -> Result<()> { in read_onto() [all …]
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/volume/ |
D | MediaSessions.java | 99 if (D.BUG) Log.d(TAG, "init"); in init() 117 if (D.BUG) Log.d(TAG, "destroy"); in destroy() 132 if (D.BUG) Log.d(TAG, "Setting level to " + level); in setVolume() 138 if (D.BUG) { in onRemoteVolumeChangedH() 150 if (D.BUG) Log.d(TAG, "onUpdateRemoteSessionListH " + pkg); in onUpdateRemoteSessionListH() 156 if (D.BUG) Log.d(TAG, "onActiveSessionsUpdatedH n=" + controllers.size()); in onActiveSessionsUpdatedH() 179 if (D.BUG) Log.d(TAG, "Removing " + r.name + " sentRemote=" + r.sentRemote); in onActiveSessionsUpdatedH() 282 if (D.BUG) { in onAudioInfoChanged() 298 if (D.BUG) Log.d(TAG, cb("onExtrasChanged") + extras); in onExtrasChanged() 303 if (D.BUG) Log.d(TAG, cb("onMetadataChanged") + Util.mediaMetadataToString(metadata)); in onMetadataChanged() [all …]
|
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/ |
D | audio | 19 �W�z�T?(�� x_�Wp�������WVi�ж�&�j�Xձu�QH���)-�@�G�GA9~�|��!<��L�.��!D@��d�… 34 …*��!�K�)����|�(Z~�DE��A������]�;�?�%�HDq+��>��F�Ʊۑ%�ȕ)�[�^u%;O��{��5�t̠O=�@���":���GA… 35 …D�rn�t�H>��gK��G5�����������������������������������������������������������������������������… 45 D�I2�P���o�~ƻ�Tk[]��;�p�Y�n�o��f�c���_�$�,O�=_t���qP�hu�A^jr0���8�W'FkO�^r�����燎�]#)�O�… 47 …D�p'��jڗӉ��Qܹw���D8{cSN#�n�����j!Q��)�?��w�o�l���էғ��Ėa�*�ev.aU�G?��������S�m2^�`�``F… 53 aX�e8�ms��j�%�Z%[A:����~;�w���#�����):��+ @�����D�>Hu���-�f6K�"�����w��11nL4f�զ�����I… 63 ���H͵Y�2EL�&�b�W���{dd�D�Y˪�(���![�,knp63��ġ:��'�*K]��$'�$�xi�A �~I>O�JM�}��˪��…
|
D | master_playlist | 41 �W�z�T?(�� x_�Wp�������WVi�ж�&�j�Xձu�QH���)-�@�G�GA9~�|��!<��L�.��!D@��d�… 56 …*��!�K�)����|�(Z~�DE��A������]�;�?�%�HDq+��>��F�Ʊۑ%�ȕ)�[�^u%;O��{��5�t̠O=�@���":���GA… 57 …D�rn�t�H>��gK��G5�����������������������������������������������������������������������������… 67 D�I2�P���o�~ƻ�Tk[]��;�p�Y�n�o��f�c���_�$�,O�=_t���qP�hu�A^jr0���8�W'FkO�^r�����燎�]#)�O�… 69 …D�p'��jڗӉ��Qܹw���D8{cSN#�n�����j!Q��)�?��w�o�l���էғ��Ėa�*�ev.aU�G?��������S�m2^�`�``F… 75 aX�e8�ms��j�%�Z%[A:����~;�w���#�����):��+ @�����D�>Hu���-�f6K�"�����w��11nL4f�զ�����I… 85 ���H͵Y�2EL�&�b�W���{dd�D�Y˪�(���![�,knp63��ġ:��'�*K]��$'�$�xi�A �~I>O�JM�}��˪��…
|
D | index9 | 17 …filler=0 ip_ratio=1.40 aq=1:1.00�e��/�����������դ�sLCo\C2��a�g���D��z�2} y�o��8�G… 29 1|�_� ���D'�/GA1�_7~�����������������������������������������������������������… 34 �� ��/D�+`GA5�|�~���������������������������������������������������������������… 43 1�m�! ���D�-�GA=��~��������������������������������������������������������… 47 1Q�4Q ���D�-�GA1��g~��������������������������������������������������������… 52 1���� ��?D�-�GA5��~���������������������������������������������������������… 60 1 �- �� ���D�-�GA=�,K~��������������������������������������������������������… 64 1&] ���D�-�GA1�I�~��������������������������������������������������������… 71 ���$�����G��he�����U���D����|��yr��$���I;�7��������lп]qY��7äGA5… 90 h� ���D�-�GA=��{~����������������������������������������������������������������… [all …]
|
D | index13 | 16 …filler=0 ip_ratio=1.40 aq=1:1.00�e��/�����������դ�sLCo\C2��a�g���D��z�2} y�o��8�G… 28 1|�_� ���D'�/GA1�_7~�����������������������������������������������������������… 33 �� ��/D�+`GA5�|�~���������������������������������������������������������������… 42 1�m�! ���D�-�GA=��~��������������������������������������������������������… 46 1Q�4Q ���D�-�GA1��g~��������������������������������������������������������… 51 1���� ��?D�-�GA5��~���������������������������������������������������������… 59 1 �- �� ���D�-�GA=�,K~��������������������������������������������������������… 63 1&] ���D�-�GA1�I�~��������������������������������������������������������… 70 ���$�����G��he�����U���D����|��yr��$���I;�7��������lп]qY��7äGA5… 89 h� ���D�-�GA=��{~����������������������������������������������������������������… [all …]
|
D | index15 | 29 …filler=0 ip_ratio=1.40 aq=1:1.00�e��/�����������դ�sLCo\C2��a�g���D��z�2} y�o��8�G… 41 1|�_� ���D'�/GA1�_7~�����������������������������������������������������������… 46 �� ��/D�+`GA5�|�~���������������������������������������������������������������… 55 1�m�! ���D�-�GA=��~��������������������������������������������������������… 59 1Q�4Q ���D�-�GA1��g~��������������������������������������������������������… 64 1���� ��?D�-�GA5��~���������������������������������������������������������… 72 1 �- �� ���D�-�GA=�,K~��������������������������������������������������������… 76 1&] ���D�-�GA1�I�~��������������������������������������������������������… 83 ���$�����G��he�����U���D����|��yr��$���I;�7��������lп]qY��7äGA5… 102 h� ���D�-�GA=��{~����������������������������������������������������������������… [all …]
|
D | index11 | 17 …filler=0 ip_ratio=1.40 aq=1:1.00�e��/�����������դ�sLCo\C2��a�g���D��z�2} y�o��8�G… 29 1|�_� ���D'�/GA1�_7~�����������������������������������������������������������… 34 �� ��/D�+`GA5�|�~���������������������������������������������������������������… 43 1�m�! ���D�-�GA=��~��������������������������������������������������������… 47 1Q�4Q ���D�-�GA1��g~��������������������������������������������������������… 52 1���� ��?D�-�GA5��~���������������������������������������������������������… 60 1 �- �� ���D�-�GA=�,K~��������������������������������������������������������… 64 1&] ���D�-�GA1�I�~��������������������������������������������������������… 71 ���$�����G��he�����U���D����|��yr��$���I;�7��������lп]qY��7äGA5… 90 h� ���D�-�GA=��{~����������������������������������������������������������������… [all …]
|