Home
last modified time | relevance | path

Searched refs:U (Results 1 – 25 of 68) sorted by relevance

123

/packages/modules/Bluetooth/system/gd/security/ecc/
Dmultprecision.cc194 uint32_t U; in multiprecision_mult() local
197 U = V = W = 0; in multiprecision_mult()
202 U = 0; in multiprecision_mult()
208 V = V + U; in multiprecision_mult()
209 U = (V < U); in multiprecision_mult()
210 U += W; in multiprecision_mult()
212 U += (V < c[i + j]); in multiprecision_mult()
215 c[i + KEY_LENGTH_DWORDS_P256] = U; in multiprecision_mult()
234 uint32_t U; in multiprecision_fast_mod_P256() local
282 U = (c[0] < E); in multiprecision_fast_mod_P256()
[all …]
/packages/modules/Bluetooth/system/stack/smp/
Dp_256_multprecision.cc196 uint32_t U; in multiprecision_mult() local
199 U = V = W = 0; in multiprecision_mult()
204 U = 0; in multiprecision_mult()
210 V = V + U; in multiprecision_mult()
211 U = (V < U); in multiprecision_mult()
212 U += W; in multiprecision_mult()
214 U += (V < c[i + j]); in multiprecision_mult()
217 c[i + KEY_LENGTH_DWORDS_P256] = U; in multiprecision_mult()
236 uint32_t U; in multiprecision_fast_mod_P256() local
285 U = (c[0] < E); in multiprecision_fast_mod_P256()
[all …]
/packages/services/Car/car-lib/src/android/car/util/concurrent/
DAndroidFuture.java113 public static <U> AndroidFuture<U> completedFuture(U value) { in completedFuture()
114 AndroidFuture<U> future = new AndroidFuture<>(); in completedFuture()
311 public <U> AndroidFuture<U> thenCompose( in thenCompose()
312 @NonNull Function<? super T, ? extends CompletionStage<U>> fn) { in thenCompose()
318 public <U> AndroidFuture<U> thenComposeAsync( in thenComposeAsync()
319 @NonNull Function<? super T, ? extends CompletionStage<U>> fn, in thenComposeAsync()
324 private static class ThenComposeAsync<T, U> extends AndroidFuture<U>
328 private volatile Function<? super T, ? extends CompletionStage<U>> mFn;
331 @NonNull Function<? super T, ? extends CompletionStage<U>> fn, in ThenComposeAsync()
352 complete((U) res); in accept()
[all …]
/packages/apps/DocumentsUI/tests/res/raw/
Dimages_tar8 �����H��������0220������0100����HDRP�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]�΃-��
19U���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
30U���#*${�������:�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/apps/Dialer/java/com/android/incallui/baseui/
DPresenter.java22 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()
DBaseFragment.java23 public abstract class BaseFragment<T extends Presenter<U>, U extends Ui> extends Fragment {
35 public abstract U getUi(); in getUi()
/packages/services/Car/cpp/evs/support_library/
DFormatConvert.cpp47 float U = Uin - 128.0f; in yuvToRgbx() local
51 float Gf = Y - 0.395f*U - 0.581f*V; in yuvToRgbx()
52 float Bf = Y + 2.032f*U; in yuvToRgbx()
144 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32() local
149 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32()
150 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
/packages/services/Car/cpp/evs/apps/default/
DFormatConvert.cpp44 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()
141 uint8_t U = (srcPixel >> 8) & 0xFF; in copyYUYVtoRGB32() local
146 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32()
147 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DMosaicTypes.h116 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()
DImageUtils.cpp374 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()
DBlend.cpp476 imgMos.U.ptr[y][x - o] = 50 + (99 - 50) * o / tw; in DoMergeAndBlend()
484 imgMos.U.ptr[y][x + o] = imgMos.U.ptr[y][x - o]; in DoMergeAndBlend()
529 imgMos.U.ptr[y - o][x] = 50 + (99 - 50) * o / tw; in DoMergeAndBlend()
537 imgMos.U.ptr[y + o][x] = imgMos.U.ptr[y - o][x]; in DoMergeAndBlend()
600 uimg = imgMos.U.ptr[0]; in CropFinalMosaic()
662 uimg = imgMos.U.ptr[0]; in PerformFinalBlending()
956 (double)imgMos.U.ptr[jj][ii] / 100.0 : in ProcessPyramidForThisFrame()
957 1.0 - (double)imgMos.U.ptr[jj][ii] / 100.0); in ProcessPyramidForThisFrame()
/packages/modules/Bluetooth/system/packet/base/
Dpacket.h71 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/services/Car/cpp/evs/sampleDriver/aidl/src/
DbufferCopy.cpp64 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/modules/NeuralNetworks/common/cpu_operations/
DSimpleMath.cpp53 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/hidl/
DbufferCopy.cpp82 uint8_t U; in fillNV21FromYUYV() member
114 const uint8_t uValue = (pTopMacroPixel->U + pBotMacroPixel->U) >> 1; in fillNV21FromYUYV()
226 uint8_t U = (srcPixel >> 8) & 0xFF; in fillYUYVFromUYVY() local
231 *dst++ = (U) | in fillYUYVFromUYVY()
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/hal/test/
DUtils.java29 static class SparseArrayEntry<U> {
31 public final U value;
33 SparseArrayEntry(SparseArray<U> array, int index) { in SparseArrayEntry()
/packages/services/Car/car-lib/src/com/android/car/internal/util/
DFunctionalUtils.java224 public interface ThrowingBiFunction<T, U, R> extends BiFunction<T, U, R> {
226 R applyOrThrow(T t, U u) throws Exception;
229 default R apply(T t, U u) {
/packages/apps/Dialer/java/com/android/dialer/function/
DBiConsumer.java20 public interface BiConsumer<T, U> {
23 void accept(T t, U u); in accept()
/packages/services/Car/cpp/evs/manager/1.1/emul/
DEvsEmulatedCamera.cpp36 const float U = Uin - 128.0f; in yuvToRgbx() local
40 const float Gf = Y - 0.395f*U - 0.581f*V; in yuvToRgbx()
41 const float Bf = Y + 2.032f*U; in yuvToRgbx()
78 uint8_t U = (srcPixel >> 8) & 0xFF; in fillRGBAFromYUYV() local
83 *(dst+0) = yuvToRgbx(Y1, U, V); in fillRGBAFromYUYV()
84 *(dst+1) = yuvToRgbx(Y2, U, V); in fillRGBAFromYUYV()
/packages/modules/Virtualization/libs/apkverify/src/
Dv3.rs98 fn find_signer_and_then<R, U, F>(sections: &mut ApkSections<R>, f: F) -> Result<U> in find_signer_and_then() argument
101 F: FnOnce((&Signer, &mut ApkSections<R>)) -> Result<U>, in find_signer_and_then() argument
/packages/modules/Connectivity/service/ServiceConnectivityResources/resources-certs/
Dkey.pem40 U/VeRQblq9wNkgR4pVOOV++23MK/2+DMimjb6Ez3AoIBABIXK7wKlgmU32ONjKKM
41 capJ9asq6WJuE5Q6dCL/U/bQi64V9KiPY6ur2OailW/UrBhB30a+64I6AxrzESM/
/packages/modules/Bluetooth/android/pandora/server/src/com/android/pandora/
DUtils.kt156 fun <T, U> grpcBidirectionalStream( in grpcBidirectionalStream()
158 responseObserver: StreamObserver<U>, in grpcBidirectionalStream()
159 block: CoroutineScope.(Flow<T>) -> Flow<U> in grpcBidirectionalStream()
/packages/modules/DnsResolver/tests/doh/src/
Dffi.rs189 fn logging_and_return_err<T, U: std::fmt::Debug>(e: U) -> Result<T> { in logging_and_return_err()
/packages/services/Telephony/src/com/android/services/telephony/rcs/
DRcsFeatureController.java92 public interface FeatureConnectorFactory<U extends FeatureUpdates> {
97 FeatureConnector<U> create(Context context, int slotIndex, in create()
98 FeatureConnector.Listener<U> listener, Executor executor, String logPrefix); in create()
/packages/modules/Bluetooth/system/bta/sys/
Dbta_sys.h55 template <typename T, typename U>
56 inline const T* Specialize(U* u) { in Specialize()

123