Searched defs:pSrcLeft (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DarmVCM4P10_PredictIntraDC4x4.c44 * [in] pSrcLeft Pointer to the buffer of 16 left coefficients:
58 const OMX_U8* pSrcLeft,
72 Sum += pSrcLeft[y*leftStep];
57 armVCM4P10_PredictIntraDC4x4( const OMX_U8* pSrcLeft, const OMX_U8 *pSrcAbove, OMX_U8* pDst, OMX_INT leftStep, OMX_INT dstStep, OMX_S32 availability ) argument
H A DomxVCM4P10_PredictIntraChroma_8x8.c44 * [in] pSrcLeft Pointer to the buffer of 16 left coefficients:
58 const OMX_U8* pSrcLeft,
80 Sum += pSrcLeft[y*leftStep];
106 * [in] pSrcLeft Pointer to the buffer of 16 left coefficients:
120 const OMX_U8* pSrcLeft,
134 Sum += pSrcLeft[y*leftStep];
171 * pSrcLeft - Pointer to the buffer of 8 left pixels: p[x, y] (x = -1, y=
205 * availability sets OMX_VC_LEFT, but pSrcLeft is NULL.
215 const OMX_U8* pSrcLeft,
235 armRetArgErrIf((availability & OMX_VC_LEFT ) && pSrcLeft
57 armVCM4P10_PredictIntraDCUp4x4( const OMX_U8* pSrcLeft, const OMX_U8 *pSrcAbove, OMX_U8* pDst, OMX_INT leftStep, OMX_INT dstStep, OMX_S32 availability ) argument
119 armVCM4P10_PredictIntraDCLeft4x4( const OMX_U8* pSrcLeft, const OMX_U8 *pSrcAbove, OMX_U8* pDst, OMX_INT leftStep, OMX_INT dstStep, OMX_S32 availability ) argument
214 omxVCM4P10_PredictIntraChroma_8x8( const OMX_U8* pSrcLeft, const OMX_U8 *pSrcAbove, const OMX_U8 *pSrcAboveLeft, OMX_U8* pDst, OMX_INT leftStep, OMX_INT dstStep, OMXVCM4P10IntraChromaPredMode predMode, OMX_S32 availability ) argument
[all...]
H A DomxVCM4P10_PredictIntra_16x16.c49 * pSrcLeft - Pointer to the buffer of 16 left pixels: p[x, y] (x = -1, y =
83 * availability sets OMX_VC_LEFT, but pSrcLeft is NULL.
95 const OMX_U8* pSrcLeft,
114 armRetArgErrIf((availability & OMX_VC_LEFT ) && pSrcLeft == NULL, OMX_Sts_BadArgErr);
140 pDst[y*dstStep+x] = pSrcLeft[y*leftStep];
153 Sum += pSrcLeft[y*leftStep];
192 V = 8*(pSrcLeft[15*leftStep] - pSrcAboveLeft[0]);
195 V += (y+1)*(pSrcLeft[(8+y)*leftStep] - pSrcLeft[(6-y)*leftStep]);
197 a = 16*(pSrcAbove[15] + pSrcLeft[1
94 omxVCM4P10_PredictIntra_16x16( const OMX_U8* pSrcLeft, const OMX_U8 *pSrcAbove, const OMX_U8 *pSrcAboveLeft, OMX_U8* pDst, OMX_INT leftStep, OMX_INT dstStep, OMXVCM4P10Intra16x16PredMode predMode, OMX_S32 availability) argument
[all...]
H A DomxVCM4P10_PredictIntra_4x4.c49 * pSrcLeft - Pointer to the buffer of 4 left pixels:
98 * availability sets OMX_VC_LEFT, but pSrcLeft is NULL.
109 const OMX_U8* pSrcLeft,
129 armRetArgErrIf((availability & OMX_VC_LEFT ) && pSrcLeft == NULL, OMX_Sts_BadArgErr);
170 #define L0 pSrcLeft[0*leftStep]
171 #define L1 pSrcLeft[1*leftStep]
172 #define L2 pSrcLeft[2*leftStep]
173 #define L3 pSrcLeft[3*leftStep]
199 armVCM4P10_PredictIntraDC4x4(pSrcLeft, pSrcAbove, pDst, leftStep, dstStep, availability);
108 omxVCM4P10_PredictIntra_4x4( const OMX_U8* pSrcLeft, const OMX_U8 *pSrcAbove, const OMX_U8 *pSrcAboveLeft, OMX_U8* pDst, OMX_INT leftStep, OMX_INT dstStep, OMXVCM4P10Intra4x4PredMode predMode, OMX_S32 availability ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DomxVCM4P10_PredictIntraChroma_8x8_s.s114 pSrcLeft RN 0 ;// input pointer label
158 ADD pSrcLeft2, pSrcLeft, leftStep ;// pSrcLeft2 = pSrcLeft + leftStep
174 M_LDRB tVal8, [pSrcLeft], +leftStepx2 ;// tVal8 = pSrcLeft[0]
175 M_LDRB tVal9, [pSrcLeft2], +leftStepx2 ;// tVal9 = pSrcLeft[1]
176 M_LDRB tVal4, [pSrcLeft], +leftStepx2 ;// tVal4 = pSrcLeft[2]
177 M_LDRB tVal12,[pSrcLeft2], +leftStepx2 ;// tVal12= pSrcLeft[3]
180 M_LDRB tVal8, [pSrcLeft],
[all...]
H A DomxVCM4P10_PredictIntra_4x4_s.s96 pSrcLeft RN 0 ;// input pointer label
145 M_LDRB Left0, [pSrcLeft], leftStep ;// Left0 = pSrcLeft[0]
146 M_LDRB Left1, [pSrcLeft], leftStep ;// Left1 = pSrcLeft[1]
147 M_LDRB Left2, [pSrcLeft], leftStep ;// Left2 = pSrcLeft[2]
148 LDRB Left3, [pSrcLeft] ;// Left3 = pSrcLeft[3]
174 M_LDRB Left0, [pSrcLeft], leftSte
[all...]
H A DomxVCM4P10_PredictIntra_16x16_s.s111 pSrcLeft RN 0 ;// input pointer label
170 M_LDRB tVal6, [pSrcLeft], +leftStep ;// tVal6 = pSrcLeft[0 to 3]
172 M_LDRB tVal7, [pSrcLeft], +leftStep ;// tVal1 = pSrcLeft[4 to 7]
177 M_LDRB tVal8, [pSrcLeft], +leftStep ;// tVal8 = pSrcLeft[0 to 3]
179 M_LDRB tVal9, [pSrcLeft], +leftStep ;// tVal9 = pSrcLeft[4 to 7]
199 M_LDRB tVal6, [pSrcLeft],
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DomxVCM4P10_PredictIntraChroma_8x8_s.s67 pSrcLeft RN 0 ;// input pointer label
206 ADD pTmp, pSrcLeft, leftStep
210 VLD1 {dLeftVal[0]},[pSrcLeft],step ;// pSrcLeft[0*leftStep]
211 VLD1 {dLeftVal[1]},[pTmp],step ;// pSrcLeft[1*leftStep]
212 VLD1 {dLeftVal[2]},[pSrcLeft],step ;// pSrcLeft[2*leftStep]
213 VLD1 {dLeftVal[3]},[pTmp],step ;// pSrcLeft[3*leftStep]
214 VLD1 {dLeftVal[4]},[pSrcLeft],step ;// pSrcLeft[
[all...]
H A DomxVCM4P10_PredictIntra_16x16_s.s166 pSrcLeft RN 0 ;// input pointer label
229 ADD pTmp, pSrcLeft, leftStep
234 VLD1 {qLeft[]}, [pSrcLeft], leftStep
239 VLD1 {qLeft[]}, [pSrcLeft], leftStep
243 VLD1 {qLeft[]}, [pSrcLeft], leftStep
247 VLD1 {qLeft[]}, [pSrcLeft], leftStep
261 ADD pTmp, pSrcLeft, leftStep
264 VLD1 {qLeft[0]}, [pSrcLeft],step
266 VLD1 {qLeft[2]}, [pSrcLeft],step
268 VLD1 {qLeft[4]}, [pSrcLeft],ste
[all...]
H A DomxVCM4P10_PredictIntra_4x4_s.s60 pSrcLeft RN 0 ;// input pointer label
192 ADD pSrcTmp, pSrcLeft, leftStep
195 VLD1 {dLeftVal0[]},[pSrcLeft],srcStep ;// pSrcLeft[0*leftStep]
196 VLD1 {dLeftVal1[]},[pSrcTmp],srcStep ;// pSrcLeft[1*leftStep]
197 VLD1 {dLeftVal2[]},[pSrcLeft] ;// pSrcLeft[2*leftStep]
198 VLD1 {dLeftVal3[]},[pSrcTmp] ;// pSrcLeft[3*leftStep]
232 ADD pSrcTmp, pSrcLeft, leftStep
235 VLD1 {dLeftVal[0]},[pSrcLeft],srcSte
[all...]

Completed in 77 milliseconds