Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 248) sorted by relevance

12345678910

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DomxVCM4P10_FilterDeblockingLuma_VerEdge_I.c99 int X, Y, I, Internal=0; in omxVCM4P10_FilterDeblockingLuma_VerEdge_I() local
116 for (Y=0; Y<16; Y++) in omxVCM4P10_FilterDeblockingLuma_VerEdge_I()
118 I = (Y>>2)+4*(X>>2); in omxVCM4P10_FilterDeblockingLuma_VerEdge_I()
120 armRetArgErrIf(pBS[Y] > 4, OMX_Sts_BadArgErr); in omxVCM4P10_FilterDeblockingLuma_VerEdge_I()
122 armRetArgErrIf((pBS[Y] == 4) && (Y > 3), in omxVCM4P10_FilterDeblockingLuma_VerEdge_I()
125 armRetArgErrIf(( (pBS[Y] == 4) && (pBS[Y^3] != 4) ), in omxVCM4P10_FilterDeblockingLuma_VerEdge_I()
128 armRetArgErrIf(pThresholds[Y] > 25, OMX_Sts_BadArgErr); in omxVCM4P10_FilterDeblockingLuma_VerEdge_I()
132 pSrcDst + Y*srcdstStep + X, in omxVCM4P10_FilterDeblockingLuma_VerEdge_I()
DomxVCM4P10_FilterDeblockingChroma_VerEdge_I.c103 int I, X, Y, Internal=0; in omxVCM4P10_FilterDeblockingChroma_VerEdge_I() local
119 for (Y=0; Y<8; Y++) in omxVCM4P10_FilterDeblockingChroma_VerEdge_I()
121 I = (Y>>1)+4*(X>>1); in omxVCM4P10_FilterDeblockingChroma_VerEdge_I()
130 armRetArgErrIf(pThresholds[Y] > 25, OMX_Sts_BadArgErr); in omxVCM4P10_FilterDeblockingChroma_VerEdge_I()
135 pSrcDst + Y*srcdstStep + X, in omxVCM4P10_FilterDeblockingChroma_VerEdge_I()
137 pThresholds[(Y>>1)+4*(X>>2)], in omxVCM4P10_FilterDeblockingChroma_VerEdge_I()
DomxVCM4P10_FilterDeblockingChroma_HorEdge_I.c104 int I, X, Y, Internal=0; in omxVCM4P10_FilterDeblockingChroma_HorEdge_I() local
116 for (Y=0; Y<8; Y+=4, Internal=1) in omxVCM4P10_FilterDeblockingChroma_HorEdge_I()
120 I = (X>>1)+4*(Y>>1); in omxVCM4P10_FilterDeblockingChroma_HorEdge_I()
134 pSrcDst + Y*srcdstStep + X, in omxVCM4P10_FilterDeblockingChroma_HorEdge_I()
136 pThresholds[(X>>1)+4*(Y>>2)], in omxVCM4P10_FilterDeblockingChroma_HorEdge_I()
DomxVCM4P10_FilterDeblockingLuma_HorEdge_I.c100 int I, X, Y, Internal=0; in omxVCM4P10_FilterDeblockingLuma_HorEdge_I() local
112 for (Y=0; Y<16; Y+=4, Internal=1) in omxVCM4P10_FilterDeblockingLuma_HorEdge_I()
116 I = (X>>2)+4*(Y>>2); in omxVCM4P10_FilterDeblockingLuma_HorEdge_I()
129 pSrcDst + Y*srcdstStep + X, in omxVCM4P10_FilterDeblockingLuma_HorEdge_I()
/frameworks/av/media/libeffects/lvm/lib/Common/src/
DLVM_FO_LPF.c75 LVM_INT32 Y,Coefficients[13]={ -8388571, in LVM_FO_LPF() local
86 Y=LVM_Polynomial( (LVM_UINT16)9, in LVM_FO_LPF()
89 pCoeffs->B1=-Y; // Store -B1 in filter structure instead of B1! in LVM_FO_LPF()
91 Y=Y>>1; // A0=Y=B1/2 in LVM_FO_LPF()
92 Y=Y+0x40000000; // A0=Y=(B1/2 + 0.5) in LVM_FO_LPF()
93 MUL32x16INTO32(Y, FILTER_LOSS ,pCoeffs->A0 ,15) // Apply loss to avoid overflow in LVM_FO_LPF()
DLVM_FO_HPF.c75 LVM_INT32 Y,Coefficients[13]={ -8388571, in LVM_FO_HPF() local
88 Y=LVM_Polynomial( (LVM_UINT16)9, in LVM_FO_HPF()
91 pCoeffs->B1=-Y; /* Store -B1 in filter structure instead of B1!*/ in LVM_FO_HPF()
93 Y=Y>>1; /* A0=Y=B1/2*/ in LVM_FO_HPF()
94 Y=Y-0x40000000; /* A0=Y=(B1/2 - 0.5)*/ in LVM_FO_HPF()
95 MUL32x16INTO32(Y, FILTER_LOSS ,pCoeffs->A0 ,15) /* Apply loss to avoid overflow*/ in LVM_FO_HPF()
DLVM_Polynomial.c49 LVM_INT32 Y,A,XTemp,Temp,sign; in LVM_Polynomial() local
51 Y=*pCoefficients; /* Y=A0*/ in LVM_Polynomial()
60 Y+=((*pCoefficients)*sign); in LVM_Polynomial()
76 Y+=Temp; in LVM_Polynomial()
88 Y=Y>>A; in LVM_Polynomial()
92 Y = Y<<A; in LVM_Polynomial()
94 return Y; in LVM_Polynomial()
DLVM_Power10.c60 LVM_INT32 Y,Coefficients[13]={ 16775636, in LVM_Power10() local
73 Y=LVM_Polynomial((LVM_UINT16)11, in LVM_Power10()
76 return Y; in LVM_Power10()
/frameworks/rs/cpu_ref/
DrsCpuIntrinsicYuvToRGB.cpp67 short Y = ((short)y) - 16; in rsYuvToRGBA_uchar4() local
72 p.x = (Y * 298 + V * 409 + 128) >> 8; in rsYuvToRGBA_uchar4()
73 p.y = (Y * 298 - U * 100 - V * 208 + 128) >> 8; in rsYuvToRGBA_uchar4()
74 p.z = (Y * 298 + U * 516 + 128) >> 8; in rsYuvToRGBA_uchar4()
100 extern "C" void rsdIntrinsicYuv_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size…
101 extern "C" void rsdIntrinsicYuvR_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, siz…
102 extern "C" void rsdIntrinsicYuv2_K(void *dst, const uchar *Y, const uchar *u, const uchar *v, size_…
124 const uchar *Y = pinY + (info->current.y * strideY); in kernel() local
160 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); in kernel()
169 rsdIntrinsicYuv2_K(info->outPtr[0], Y, u, v, x1, x2); in kernel()
[all …]
DrsCpuIntrinsicBLAS.cpp114 void *Y = nullptr; in invokeForEach() local
136 initABC(ain, sizeof(float), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach()
138 lda, (float*)X, call->incX, call->beta.f, (float*)Y, call->incY); in invokeForEach()
141 initABC(ain, sizeof(float), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach()
144 call->beta.f, (float*)Y, call->incY); in invokeForEach()
178 initABC(ain, sizeof(double), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach()
180 lda, (double*)X, call->incX, call->beta.d, (double*)Y, call->incY); in invokeForEach()
183 initABC(ain, sizeof(double), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach()
186 call->beta.d, (double*)Y, call->incY); in invokeForEach()
220 initABC(ain, sizeof(float)*2, &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach()
[all …]
DrsCpuBLASDispatch.h25 float *Y, const int incY);
30 const int incX, const float beta, float *Y, const int incY);
58 double *Y, const int incY);
63 const int incX, const double beta, double *Y, const int incY);
91 void *Y, const int incY);
96 const int incX, const void *beta, void *Y, const int incY);
124 void *Y, const int incY);
129 const int incX, const void *beta, void *Y, const int incY);
160 const float beta, float *Y, const int incY);
164 const float beta, float *Y, const int incY);
[all …]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
DScriptIntrinsicBLAS.java282 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) {
288 !Y.getType().getElement().isCompatible(e)) {
291 if (X.getType().getY() > 1 || Y.getType().getY() > 1) {
307 Y.getType().getX() != expectedYDim) {
327 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument
328 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local
335 long yID = Y.getID(mRS); in SGEMV()
339 yID = getDummyAlloc(Y); in SGEMV()
359 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument
360 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local
[all …]
/frameworks/base/rs/java/android/renderscript/
DScriptIntrinsicBLAS.java275 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { in validateGEMV() argument
281 !Y.getType().getElement().isCompatible(e)) { in validateGEMV()
284 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGEMV()
300 Y.getType().getX() != expectedYDim) { in validateGEMV()
320 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument
321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local
324 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SGEMV()
342 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument
343 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local
346 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DGEMV()
[all …]
/frameworks/rs/cpp/
DScriptIntrinsicBLAS.cpp178 sp<Allocation> X, int incX, sp<Allocation> Y, int incY) { in validateGEMV() argument
183 !Y->getType()->getElement()->isCompatible(e)) { in validateGEMV()
186 if (X->getType()->getY() > 1 || Y->getType()->getY() > 1) { in validateGEMV()
202 (int)Y->getType()->getX() != expectedYDim) { in validateGEMV()
208 int incX, float beta, sp<Allocation> Y, int incY) { in SGEMV() argument
209 validateGEMV(mRS, Element::F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV()
215 beta, Y->getID(), incX, incY, 0, 0); in SGEMV()
219 int incX, double beta, sp<Allocation> Y, int incY) { in DGEMV() argument
220 validateGEMV(mRS, Element::F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV()
226 beta, Y->getID(), incX, incY, 0, 0); in DGEMV()
[all …]
/frameworks/base/tests/LegacyRestoreTest/
Djbmr2-encrypted-settings-abcd.ab10Y�e�Y��� ?A>Q��ª_j��a<�E��K��g�;�e���c��:k�(�K*rFA�ȏ�"��wR���&�%�?\��}����z��%������*���(…
15Yڸ ��B\�:+g�%�� H��zK ��;�Q2���+�b�w�-uy xj��^�qqy��>� ��`�x���⼖��0���I�0j��T�z�,aB�…
17 n��ɭ=��aA�|ݽ��8E.�h�xi�Δ��e������/��óQu|A%Y�Mp�5���Y1O���C�;X!Oq1H����}���z��~TA<2xI|KL�г�…
Dkk-fixed-encrypted-settings-abcd.ab11 Ȫ ��߼ۏh:$5K3c�����d�a멂�Y����7�����$#A�%>R �J��+k>���f��S��p��[��c�~`��pr�&۹l
14 Y?^[��S�|�+�����u��H!�D���F�o�7�_-�p�
18 ��K��KVY�����i�Y�����j<��KC��I7��#Xu13Z�1w㵀;�T� �{��U��C����sKþ�8%:���% #��P�@o($���û"��a����…
19 …@����/�6Zҁ���}�jk�-�(��H�O����ù��8y^����������1�LX���,#T{5��B�9N��Y$��;Uj��ʶ��[���Z�…
23 �!�?�� Xz`S;�1;�A�v̖%_yj��S����u�Y�Z������_�=��u�h��J��*.��k���YM�q���v'�.�6b>��>}���b;��5�…
24 ��Y�C%M3o�� �iz�Kpf0e����33>�g�k�q�BX;��_�5NK6mM�)]���/��^��5�>@��
/frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/dummy/
DInnerTest.java73 public <X, Y> void genericMethod2(X a, List<Y> b) { in genericMethod2()
76 public <X, Y extends InnerTest> void genericMethod3(X a, List<Y> b) { in genericMethod3()
/frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/
DhelloComputeNDK.cpp24 jint Y, in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono() argument
43 sp<const Type> t = Type::create(rs, e, X, Y, 0); in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono()
53 inputAlloc->copy2DRangeFrom(0, 0, X, Y, inputPtr); in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono()
56 outputAlloc->copy2DRangeTo(0, 0, X, Y, outputPtr); in Java_com_example_android_rs_hellocomputendk_HelloComputeNDK_nativeMono()
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
DUT_check_dims.java47 int Y = 7; in initializeGlobals() local
48 typeBuilder.setX(X).setY(Y); in initializeGlobals()
52 mData = new int[X*Y]; in initializeGlobals()
53 for (int i = 0; i < X*Y; i++) { in initializeGlobals()
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
DUT_alloc.java34 int Y = 7; in initializeGlobals() local
37 s.set_dimY(Y); in initializeGlobals()
39 typeBuilder.setX(X).setY(Y); in initializeGlobals()
45 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
DUT_alloc.java34 int Y = 7; in initializeGlobals() local
37 s.set_dimY(Y); in initializeGlobals()
39 typeBuilder.setX(X).setY(Y); in initializeGlobals()
45 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
DUT_foreach.java35 int Y = 7; in initializeGlobals() local
37 s.set_dimY(Y); in initializeGlobals()
38 typeBuilder.setX(X).setY(Y); in initializeGlobals()
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
DUT_alloc.java34 int Y = 7; in initializeGlobals() local
37 s.set_dimY(Y); in initializeGlobals()
39 typeBuilder.setX(X).setY(Y); in initializeGlobals()
45 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
DUT_alloc.java34 int Y = 7; in initializeGlobals() local
37 s.set_dimY(Y); in initializeGlobals()
39 typeBuilder.setX(X).setY(Y); in initializeGlobals()
45 typeBuilder.setX(X).setY(Y).setFaces(true); in initializeGlobals()
/frameworks/base/core/java/android/view/
DOrientationEventListener.java122 float Y = -values[_DATA_Y]; in onSensorChanged() local
124 float magnitude = X*X + Y*Y; in onSensorChanged()
128 float angle = (float)Math.atan2(-Y, X) * OneEightyOverPi; in onSensorChanged()

12345678910