/packages/modules/Bluetooth/system/stack/smp/ |
D | p_256_multprecision.cc | 195 uint32_t U; in multiprecision_mult() local 198 U = V = W = 0; in multiprecision_mult() 203 U = 0; in multiprecision_mult() 209 V = V + U; in multiprecision_mult() 210 U = (V < U); in multiprecision_mult() 211 U += W; in multiprecision_mult() 213 U += (V < c[i + j]); in multiprecision_mult() 216 c[i + KEY_LENGTH_DWORDS_P256] = U; in multiprecision_mult() 235 uint32_t U; in multiprecision_fast_mod_P256() local 284 U = (c[0] < E); in multiprecision_fast_mod_P256() [all …]
|
/packages/modules/Bluetooth/system/gd/security/ecc/ |
D | multprecision.cc | 193 uint32_t U; in multiprecision_mult() local 196 U = V = W = 0; in multiprecision_mult() 201 U = 0; in multiprecision_mult() 207 V = V + U; in multiprecision_mult() 208 U = (V < U); in multiprecision_mult() 209 U += W; in multiprecision_mult() 211 U += (V < c[i + j]); in multiprecision_mult() 214 c[i + KEY_LENGTH_DWORDS_P256] = U; in multiprecision_mult() 233 uint32_t U; in multiprecision_fast_mod_P256() local 281 U = (c[0] < E); in multiprecision_fast_mod_P256() [all …]
|
/packages/modules/HealthFitness/framework/java/android/health/connect/ |
D | AggregateRecordsResponse.java | 57 public static <U> ZoneOffset getZoneOffsetInternal( in getZoneOffsetInternal() 58 @NonNull AggregationType<U> aggregationType, in getZoneOffsetInternal() 59 Map<AggregationType<U>, AggregateResult<U>> mAggregateResults) { in getZoneOffsetInternal() argument 62 AggregateResult<U> result = mAggregateResults.get(aggregationType); in getZoneOffsetInternal() 72 public static <U> Set<DataOrigin> getDataOriginsInternal( in getDataOriginsInternal() 73 @NonNull AggregationType<U> aggregationType, in getDataOriginsInternal() 74 Map<AggregationType<U>, AggregateResult<U>> mAggregateResults) { in getDataOriginsInternal() argument 77 AggregateResult<U> result = mAggregateResults.get(aggregationType); in getDataOriginsInternal() 88 public static <U> U getInternal( in getInternal() 89 @NonNull AggregationType<U> aggregationType, in getInternal() [all …]
|
/packages/services/Car/car-lib/src/android/car/util/concurrent/ |
D | AndroidFuture.java | 111 public static <U> AndroidFuture<U> completedFuture(U value) { in completedFuture() 112 AndroidFuture<U> future = new AndroidFuture<>(); in completedFuture() 299 public <U> AndroidFuture<U> thenCompose( in thenCompose() 300 @NonNull Function<? super T, ? extends CompletionStage<U>> fn) { in thenCompose() 305 public <U> AndroidFuture<U> thenComposeAsync( in thenComposeAsync() 306 @NonNull Function<? super T, ? extends CompletionStage<U>> fn, in thenComposeAsync() 311 private static class ThenComposeAsync<T, U> extends AndroidFuture<U> 315 private volatile Function<? super T, ? extends CompletionStage<U>> mFn; 318 @NonNull Function<? super T, ? extends CompletionStage<U>> fn, in ThenComposeAsync() 339 complete((U) res); in accept() [all …]
|
/packages/modules/AdServices/shared/tests/side-less/java/com/android/adservices/shared/testing/ |
D | AbstractSdkLevelSupportedRuleTest.java | 27 import static com.android.adservices.shared.testing.AndroidSdk.Level.U; 133 var rule = newRule(/* ruleLevel= */ ANY, /* deviceLevel= */ U); in testRuleIsAtLeastMethods_deviceIsU() 144 var ruleRange = Range.forRange(R.getLevel(), U.getLevel()); in testPassesWhenDeviceLevelIsInRange() 238 Range.forAtLeast(U.getLevel()), in testGetRequiredRange_annotatedTest() 241 newAnnotationForAtLeast(U, REASON)); in testGetRequiredRange_annotatedTest() 254 var ruleForClosedRange = Range.forRange(R.getLevel(), U.getLevel()); in testGetRequiredRange_annotatedTest() 256 Range.forRange(R.getLevel(), U.getLevel()), in testGetRequiredRange_annotatedTest() 261 Range.forRange(S.getLevel(), U.getLevel()), in testGetRequiredRange_annotatedTest() 266 Range.forRange(S2.getLevel(), U.getLevel()), in testGetRequiredRange_annotatedTest() 271 Range.forRange(T.getLevel(), U.getLevel()), in testGetRequiredRange_annotatedTest() [all …]
|
D | AndroidSdkLevelTest.java | 24 import static com.android.adservices.shared.testing.AndroidSdk.Level.U; 56 expect.withMessage("level 34").that(for34).isSameInstanceAs(U); in testFactoryMethod() 74 expect.withMessage("level of U").that(U.getLevel()).isEqualTo(34); in testGetLevel() 86 expect.withMessage("ANY.isAtLeast(U)").that(ANY.isAtLeast(U)).isFalse(); in testAtLeast() 95 expect.withMessage("DEV.isAtLeast(U)").that(DEV.isAtLeast(U)).isTrue(); in testAtLeast() 104 expect.withMessage("R.isAtLeast(U)").that(R.isAtLeast(U)).isFalse(); in testAtLeast() 113 expect.withMessage("S.isAtLeast(U)").that(S.isAtLeast(U)).isFalse(); in testAtLeast() 122 expect.withMessage("T.isAtLeast(U)").that(T.isAtLeast(U)).isFalse(); in testAtLeast() 125 expect.withMessage("U.isAtLeast(DEV)").that(U.isAtLeast(DEV)).isFalse(); in testAtLeast() 126 expect.withMessage("U.isAtLeast(ANY)").that(U.isAtLeast(ANY)).isTrue(); in testAtLeast() [all …]
|
/packages/apps/Dialer/java/com/android/incallui/baseui/ |
D | Presenter.java | 22 public abstract class Presenter<U extends Ui> { 24 private U ui; 31 public void onUiReady(U ui) { in onUiReady() 36 public final void onUiDestroy(U ui) { in onUiDestroy() 45 public void onUiUnready(U ui) {} in onUiUnready() 51 public U getUi() { in getUi()
|
D | BaseFragment.java | 23 public abstract class BaseFragment<T extends Presenter<U>, U extends Ui> extends Fragment { 35 public abstract U getUi(); in getUi()
|
/packages/apps/DocumentsUI/tests/res/raw/ |
D | images_tar | 8 �H�0220�0100HDRP�d5m^p,��MWT�U�,iGqkQ�Ğo��t�� ĩ��YZ�хm�Ջ���ɫBH�����ߝ… 10 …�.�|<C�sKⷋHK�6�b��mר��;o����0(���b���XWOw�����r�z�?���(D��Ox��Z��O���U��5�T ��L|��{�I… 13 ���ڪ��U�+Zn9�1柔�!�,�b�>�*�W��F���(�x�]^��k^C#�~���N_���a���h�7��\�3F'F�$� �qld�V��}q�X�!�… 16 P���ʈ݁-���v���)@�]��e�<X��f������%�Xh�U�}�~���=��I]�-�� 19 …U���v��R���l\�p� �I���9z�p߱�xv<��Z<zKI��k� \�x:S�8X �&�a5�O :�ڃ�/�=�N�Z���S�=���D)p幬… 25 ���/�����a��c]d��J69�M��*����!OA�!a�����X�C��LGVĕi]��S*�����AT���i�N��[��UMb������X�… 27 …��������S::�n��'j's��;X�r��>����y�ڱ�6JcG�Ǥ�4f[R��셮��jV_<��qm[�7�z�FQ�������z�F*{`x�U� 30 …U���#*${�������:�k:��X�?���,c0�O��YuɄ����E[�����{�`��Xy*g2+ۿ���j�G.z��l��3DN�1�����o��xY/4… 45 …�Y��7�?�P�\������%�h贵��$��"�r�t���)�u�9��r�Y���n��&@�ܜ��?�uL�+�U����l�~��۽�ׁ(2�N[<… 46 ���`n�-���Y��Eo�cf��}:)�U�����Ǵ��ni����"]�����3v���3\�^m�pk�f#%,����_F?O�&����c�h*Q�… [all …]
|
/packages/modules/Connectivity/staticlibs/netd/libnetdutils/include/netdutils/ |
D | InternetAddresses.h | 38 uint8_t cidrlen{0U}; // written and read in host-byte order 39 in_port_t port{0U}; // written and read in host-byte order 40 uint32_t scope_id{0U}; 139 : mData({AF_INET, IPV4_ADDR_BITS, 0U, 0U, {.v4 = ipv4}}) {} in IPAddress() 141 : mData({AF_INET6, IPV6_ADDR_BITS, 0U, 0U, {.v6 = ipv6}}) {} in IPAddress() 145 0U, in IPAddress() 147 usesScopedIds(ipv6) ? scope_id : 0U, in IPAddress() 150 mData.scope_id = (family() == AF_INET6 && usesScopedIds(mData.ip.v6)) ? scope_id : 0U; in IPAddress() 177 mData.port = 0U; in IPAddress() 181 mData.scope_id = 0U; in IPAddress() [all …]
|
D | Misc.h | 26 template <typename U, typename V> 27 inline const V& findWithDefault(const std::map<U, V>& map, const U& key, const V& dflt) { in findWithDefault() argument
|
D | Slice.h | 91 template <typename U, size_t V> 92 inline const Slice makeSlice(const std::array<U, V>& a) { in makeSlice() argument 93 return {const_cast<U*>(a.data()), a.size() * sizeof(U)}; in makeSlice()
|
/packages/modules/Connectivity/netbpfload/ |
D | netbpfload.33rc | 1 # This file takes effect only on T and U (on V netbpfload.35rc takes priority). 6 # However we never start this service on U QPR3. 8 # This is due to lack of a need: U QPR2 split the previously single 10 # U QPR3 made the platform netbpfload unconditionally exec apex netbpfload, 11 # so by the time U QPR3's netd runs, apex netbpfload is already done.
|
/packages/modules/Connectivity/netbpfload/initrc-doc/ |
D | README.txt | 9 …emotes/aosp/android14-release:bpfloader/bpfloader.rc; ) | egrep -v '^ *#' > bpfloader-sdk34-14-U.rc 10 …s/aosp/main:bpfloader/bpfloader.rc; ) | egrep -v '^ *#' > bpfloader-sdk34-14-U-QPR2.rc 16 …-file -p remotes/goog/udc-dev:bpfloader/bpfloader.rc; ) | egrep -v '^ *#' > bpfloader-sdk34-14-U.rc 17 … -p remotes/goog/main:bpfloader/bpfloader.rc; ) | egrep -v '^ *#' > bpfloader-sdk34-14-U-QPR2.rc 23 …e -p remotes/goog/udc-qpr-dev:bpfloader/bpfloader.rc; ) | egrep -v '^ *#' > bpfloader-sdk34-14-U.rc 25 ie. there were no changes between R/S/T and R/S/T QPR3, and no change between U and U QPR1. 47 = U bpfloader 53 = U QPR2 bpfloader
|
/packages/services/Car/cpp/evs/support_library/ |
D | FormatConvert.cpp | 44 float U = Uin - 128.0f; in yuvToRgbx() local 48 float Gf = Y - 0.395f * U - 0.581f * V; in yuvToRgbx() 49 float Bf = Y + 2.032f * U; in yuvToRgbx() 130 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32() local 135 *(dst + 0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32() 136 *(dst + 1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
|
/packages/services/Car/cpp/evs/apps/default/src/ |
D | FormatConvert.cpp | 41 float U = Uin - 128.0f; in yuvToRgbx() local 45 float Gf = Y - 0.395f * U - 0.581f * V; in yuvToRgbx() 46 float Bf = Y + 2.032f * U; in yuvToRgbx() 127 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32() local 132 *(dst + 0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32() 133 *(dst + 1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
D | MosaicTypes.h | 116 ImageType U = image + (width*height); in getV() local 117 return U[y*width+x]; in getV() 125 ImageType U = image + (width*height*2); in getU() local 126 return U[y*width+x]; in getU()
|
D | ImageUtils.cpp | 374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0; in allocateImage() 375 yuv->U.width = yuv->U.pitch = yuv->V.width = yuv->V.pitch = widthUV; in allocateImage() 376 yuv->U.height = yuv->V.height = heightUV; in allocateImage() 388 yuv->U.ptr = &y[height + heightUV]; in allocateImage() 404 for (i = 0; i < img->U.height; i++, position += img->U.width) in mapYUVInfoToImage() 405 img->U.ptr[i] = position; in mapYUVInfoToImage()
|
/packages/modules/Bluetooth/system/packet/base/ |
D | packet.h | 71 template <class T, class U> 72 static std::shared_ptr<T> Specialize(const std::shared_ptr<U>& pkt) { in Specialize() 73 static_assert(std::is_convertible<U*, Packet*>::value, in Specialize() 77 static_assert(std::is_convertible<T*, U*>::value, in Specialize()
|
/packages/modules/NeuralNetworks/common/cpu_operations/ |
D | SimpleMath.cpp | 53 template <typename T, typename U> 65 U* tempSumBuffer = new (std::nothrow) U[getNumberOfElements(outputShape)]; in meanGeneric() 71 tflite::reference_ops::Mean<T, U>( in meanGeneric()
|
/packages/services/Car/cpp/evs/sampleDriver/aidl/src/ |
D | bufferCopy.cpp | 64 uint8_t U; in fillNV21FromYUYV() member 95 const uint8_t uValue = (pTopMacroPixel->U + pBotMacroPixel->U) >> 1; in fillNV21FromYUYV() 176 uint8_t U = (srcPixel >> 8) & 0xFF; in fillYUYVFromUYVY() local 181 *dst++ = (U) | (Y1 << 8) | (V << 16) | (Y2 << 24); in fillYUYVFromUYVY()
|
/packages/services/Car/libs/vehicle-hal-support-lib/src/com/android/car/hal/test/ |
D | Utils.java | 32 static class SparseArrayEntry<U> { 34 public final U value; 36 SparseArrayEntry(SparseArray<U> array, int index) { in SparseArrayEntry()
|
/packages/services/Car/cpp/evs/sampleDriver/hidl/ |
D | bufferCopy.cpp | 77 uint8_t U; in fillNV21FromYUYV() member 108 const uint8_t uValue = (pTopMacroPixel->U + pBotMacroPixel->U) >> 1; in fillNV21FromYUYV() 216 uint8_t U = (srcPixel >> 8) & 0xFF; in fillYUYVFromUYVY() local 221 *dst++ = (U) | (Y1 << 8) | (V << 16) | (Y2 << 24); in fillYUYVFromUYVY()
|
/packages/modules/Bluetooth/system/rust/src/core/ |
D | shared_box.rs | 68 pub fn with<U>(&self, f: impl FnOnce(Option<WeakBoxRef<T>>) -> U) -> U { in with() argument
|
/packages/services/Car/car-lib/src/com/android/car/internal/util/ |
D | FunctionalUtils.java | 223 public interface ThrowingBiFunction<T, U, R> extends BiFunction<T, U, R> { 225 R applyOrThrow(T t, U u) throws Exception; 228 default R apply(T t, U u) {
|