Searched defs:iWidth (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
H A DarmVCCOMM_Average.c12 * This function will calculate Average of two blocks if size iWidth X iHeight
36 * [in] iWidth Width of the blocks
51 OMX_U32 iWidth,
64 for (x = 0; x < iWidth; x++)
44 armVCCOMM_Average( const OMX_U8* pPred0, const OMX_U8* pPred1, OMX_U32 iPredStep0, OMX_U32 iPredStep1, OMX_U8* pDstPred, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_InterpolateHalfHor_Luma.c35 * [in] iWidth Width of the current block
49 OMX_U32 iWidth,
62 for (x = 0; x < iWidth; x++)
44 armVCM4P10_InterpolateHalfHor_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DarmVCM4P10_InterpolateHalfVer_Luma.c36 * [in] iWidth Width of the current block
50 OMX_U32 iWidth,
64 for (x = 0; x < iWidth; x++)
45 armVCM4P10_InterpolateHalfVer_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
H A DomxVCM4P10_InterpolateHalfHor_Luma.c36 * multiple of iWidth.
37 * iWidth - Width of the current block; must be equal to either 4, 8, or 16
44 * If iWidth==4, 4-byte alignment required.
45 * If iWidth==8, 8-byte alignment required.
46 * If iWidth==16, 16-byte alignment required.
49 * If iWidth==4, 4-byte alignment required.
50 * If iWidth==8, 8-byte alignment required.
51 * If iWidth==16, 16-byte alignment required.
60 * - iWidth or iHeight have values other than 4, 8, or 16
61 * - iWidth
68 omxVCM4P10_InterpolateHalfHor_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDstLeft, OMX_U8* pDstRight, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
[all...]
H A DomxVCM4P10_InterpolateHalfVer_Luma.c37 * multiple of iWidth.
38 * iWidth - Width of the current block; must be equal to either 4, 8, or 16
45 * If iWidth==4, 4-byte alignment required.
46 * If iWidth==8, 8-byte alignment required.
47 * If iWidth==16, 16-byte alignment required.
50 * If iWidth==4, 4-byte alignment required.
51 * If iWidth==8, 8-byte alignment required.
52 * If iWidth==16, 16-byte alignment required.
61 * - iWidth or iHeight have values other than 4, 8, or 16
62 * - iWidth
67 omxVCM4P10_InterpolateHalfVer_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDstUp, OMX_U8* pDstDown, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
[all...]
H A DarmVCM4P10_InterpolateHalfDiag_Luma.c37 * [in] iWidth Width of the current block
51 OMX_U32 iWidth,
66 * Buf contains a 2D array of size (iWidth)X(iHeight + 5)
70 for (x = 0; x < iWidth; x++)
80 Buf [y * iWidth + x] = (OMX_S16)HalfCoeff;
87 for (x = 0; x < iWidth; x++)
89 pos = y * iWidth + x;
92 5 * Buf [pos + 1 * iWidth] +
93 20 * Buf [pos + 2 * iWidth] +
94 20 * Buf [pos + 3 * iWidth]
46 armVCM4P10_InterpolateHalfDiag_Luma( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
[all...]
H A DarmVCM4P10_Interpolate_Chroma.c33 * [in] iWidth Width of the current block
50 OMX_U32 iWidth,
68 armRetArgErrIf(iWidth == 0, OMX_Sts_BadArgErr)
81 for (x = 0; x < iWidth; x++)
96 for (x = 0; x < iWidth; x++)
45 armVCM4P10_Interpolate_Chroma( OMX_U8 *pSrc, OMX_U32 iSrcStep, OMX_U8 *pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight, OMX_U32 dx, OMX_U32 dy ) argument
H A DarmVCM4P10_Interpolate_Luma.c34 * [in] iWidth Width of the current block
47 OMX_U32 iWidth,
55 for (x = 0; x < iWidth; x++)
76 * [in] iWidth Width of the current block
94 OMX_U32 iWidth,
126 armM4P10_Copy(pSrc, iSrcStep, pDst, iDstStep, iWidth, iHeight);
132 (pSrcHalfHor, iSrcStep, pDst, iDstStep, iWidth, iHeight);
137 (pDst, pSrcHalfVer, iDstStep, iSrcStep, pDst, iDstStep, iWidth, iHeight);
144 (pSrcHalfVer, iSrcStep, pDst, iDstStep, iWidth, iHeight);
149 (pDst, pSrcHalfHor, iDstStep, iSrcStep, pDst, iDstStep, iWidth, iHeigh
42 armM4P10_Copy( const OMX_U8* pSrc, OMX_U32 iSrcStep, OMX_U8* pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight ) argument
89 armVCM4P10_Interpolate_Luma( const OMX_U8 *pSrc, OMX_U32 iSrcStep, OMX_U8 *pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight, OMX_U32 dx, OMX_U32 dy ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DomxVCM4P10_InterpolateLuma_s.s82 iWidth RN 5 label
111 ;// r5 - iWidth
135 M_LDR iWidth, ptrWidth
138 M_PRINTF "roi.width %d\n", iWidth
401 SUBS iWidth, iWidth, #4
410 M_LDR iWidth, ptrWidth
414 SUB pSrc, pSrc, iWidth
415 SUB pDst, pDst, iWidth
H A DarmVCM4P10_Interpolate_Chroma_s.s27 iWidth RN 4 label
103 M_LDR iWidth, Width
117 SUB temp, iWidth, #1
122 ORR iWidth, iWidth, temp, LSL #16
163 ;// iWidth packed with MSB (top 16 bits)
165 ;// (iWidth -1) and LSB (lower 16 bits)
168 SUBS iWidth, iWidth, #1<<17
214 ADD iWidth, iWidt
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DarmVCM4P10_Interpolate_Chroma_s.s41 iWidth RN 4 label
134 M_LDRD iWidth, iHeight, Width
165 LDR pc, [pTable, iWidth, LSL #1] ;// Branch to the case based on iWidth
H A DomxVCM4P10_InterpolateLuma_s.s72 iWidth RN 5 label
179 M_LDR iWidth, ptrWidth
530 SUBS iWidth, iWidth, #4
537 M_LDR iWidth, ptrWidth
541 SUB pSrc, pSrc, iWidth
542 SUB pDst, pDst, iWidth
/frameworks/native/opengl/include/EGL/
H A Deglext.h249 EGLint iWidth; member in struct:EGLClientPixmapHI

Completed in 150 milliseconds