Home
last modified time | relevance | path

Searched refs:pSrc2 (Results 1 – 18 of 18) sorted by relevance

/third_party/openh264/codec/common/loongarch/
Dsatd_sad_lasx.c53 uint8_t *pSrc2 = pSample2; in WelsSampleSad4x4_lasx() local
68 pSrc2, iStride0, in WelsSampleSad4x4_lasx()
69 pSrc2, iStride2, in WelsSampleSad4x4_lasx()
70 pSrc2, iStride2_tmp, in WelsSampleSad4x4_lasx()
71 pSrc2, iStride2_tmp + iStride2, in WelsSampleSad4x4_lasx()
95 uint8_t* pSrc2 = pSample2; in WelsSampleSad8x8x2_lasx() local
128 pSrc2, iStride0, in WelsSampleSad8x8x2_lasx()
129 pSrc2, iStride2, in WelsSampleSad8x8x2_lasx()
130 pSrc2, iStride2_tmp2, in WelsSampleSad8x8x2_lasx()
131 pSrc2, iStride2_tmp3, in WelsSampleSad8x8x2_lasx()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/TransformFunctions/
Darm_rfft_q15.c221 q15_t *pSrc1, *pSrc2; in arm_split_rfft_q15() local
231 pSrc2 = &pSrc[(2U * fftLen) - 2U]; in arm_split_rfft_q15()
263 outR = __SMLAD(read_q15x2 (pSrc2), read_q15x2((q15_t *) pCoefB), outR) >> 16U; in arm_split_rfft_q15()
267 outI = __SMUSDX(read_q15x2_da (&pSrc2), read_q15x2((q15_t *) pCoefB)); in arm_split_rfft_q15()
269 outI = __SMUSDX(read_q15x2 ((q15_t *) pCoefB), read_q15x2_da (&pSrc2)); in arm_split_rfft_q15()
310 outR = outR + (*pSrc2 * *pCoefB); in arm_split_rfft_q15()
311 outR = (outR + (*(pSrc2 + 1) * *(pCoefB + 1))) >> 16; in arm_split_rfft_q15()
320 outI = *pSrc2 * *(pCoefB + 1); in arm_split_rfft_q15()
321 outI = outI - (*(pSrc2 + 1) * *pCoefB); in arm_split_rfft_q15()
327 pSrc2 -= 2U; in arm_split_rfft_q15()
[all …]
Darm_rfft_f32.c167 …float32_t *pSrc1 = &pSrc[2], *pSrc2 = &pSrc[(2U * fftLen) - 1U]; /* temp pointers for input b… in arm_split_rfft_f32() local
200 outR -= (*pSrc1 + *pSrc2) * CoefA2; in arm_split_rfft_f32()
207 outI -= *pSrc2-- * CoefB1; in arm_split_rfft_f32()
209 outI -= *pSrc2 * CoefA2; in arm_split_rfft_f32()
212 outR += *pSrc2-- * CoefB1; in arm_split_rfft_f32()
261 float32_t *pSrc1 = &pSrc[0], *pSrc2 = &pSrc[(2U * fftLen) + 1U]; in arm_split_rifft_f32() local
290 outR += (*pSrc1 + *pSrc2) * CoefA2; in arm_split_rifft_f32()
298 outI -= *pSrc2-- * CoefB1; in arm_split_rifft_f32()
301 outR += *pSrc2 * CoefB1; in arm_split_rifft_f32()
304 outI += *pSrc2-- * CoefA2; in arm_split_rifft_f32()
/third_party/openh264/codec/common/src/
Dsad_common.cpp48 uint8_t* pSrc2 = pSample2; in WelsSampleSad4x4_c() local
50 iSadSum += WELS_ABS ((pSrc1[0] - pSrc2[0])); in WelsSampleSad4x4_c()
51 iSadSum += WELS_ABS ((pSrc1[1] - pSrc2[1])); in WelsSampleSad4x4_c()
52 iSadSum += WELS_ABS ((pSrc1[2] - pSrc2[2])); in WelsSampleSad4x4_c()
53 iSadSum += WELS_ABS ((pSrc1[3] - pSrc2[3])); in WelsSampleSad4x4_c()
56 pSrc2 += iStride2; in WelsSampleSad4x4_c()
80 uint8_t* pSrc2 = pSample2; in WelsSampleSad8x8_c() local
82 iSadSum += WELS_ABS ((pSrc1[0] - pSrc2[0])); in WelsSampleSad8x8_c()
83 iSadSum += WELS_ABS ((pSrc1[1] - pSrc2[1])); in WelsSampleSad8x8_c()
84 iSadSum += WELS_ABS ((pSrc1[2] - pSrc2[2])); in WelsSampleSad8x8_c()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/FilteringFunctions/
Darm_conv_partial_q31.c74 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_q31() local
161 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_q31()
162 py = pSrc2; in arm_conv_partial_q31()
220 py = ++pSrc2; in arm_conv_partial_q31()
252 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q31()
253 py = pSrc2; in arm_conv_partial_q31()
376 py = pSrc2; in arm_conv_partial_q31()
441 py = pSrc2; in arm_conv_partial_q31()
478 py = pSrc2; in arm_conv_partial_q31()
513 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q31()
[all …]
Darm_conv_partial_fast_q15.c71 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_fast_q15() local
153 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_fast_q15()
154 py = pSrc2; in arm_conv_partial_fast_q15()
187 py = ++pSrc2; in arm_conv_partial_fast_q15()
246 py = ++pSrc2 - 1U; in arm_conv_partial_fast_q15()
278 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_fast_q15()
279 py = pSrc2; in arm_conv_partial_fast_q15()
463 py = pSrc2; in arm_conv_partial_fast_q15()
516 py = pSrc2; in arm_conv_partial_fast_q15()
553 py = pSrc2; in arm_conv_partial_fast_q15()
[all …]
Darm_conv_partial_fast_q31.c71 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_fast_q31() local
158 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_fast_q31()
159 py = pSrc2; in arm_conv_partial_fast_q31()
222 py = ++pSrc2; in arm_conv_partial_fast_q31()
254 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_fast_q31()
255 py = pSrc2; in arm_conv_partial_fast_q31()
397 py = pSrc2; in arm_conv_partial_fast_q31()
467 py = pSrc2; in arm_conv_partial_fast_q31()
505 py = pSrc2; in arm_conv_partial_fast_q31()
540 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_fast_q31()
[all …]
Darm_conv_partial_q15.c77 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_q15() local
159 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_q15()
160 py = pSrc2; in arm_conv_partial_q15()
193 py = ++pSrc2; in arm_conv_partial_q15()
252 py = ++pSrc2 - 1U; in arm_conv_partial_q15()
284 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q15()
285 py = pSrc2; in arm_conv_partial_q15()
469 py = pSrc2; in arm_conv_partial_q15()
522 py = pSrc2; in arm_conv_partial_q15()
559 py = pSrc2; in arm_conv_partial_q15()
[all …]
Darm_conv_partial_q7.c74 const q7_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_q7() local
163 pSrc2 = pIn2 + firstIndex; in arm_conv_partial_q7()
164 py = pSrc2; in arm_conv_partial_q7()
238 py = ++pSrc2; in arm_conv_partial_q7()
270 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q7()
271 py = pSrc2; in arm_conv_partial_q7()
459 py = pSrc2; in arm_conv_partial_q7()
544 py = pSrc2; in arm_conv_partial_q7()
581 py = pSrc2; in arm_conv_partial_q7()
616 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_q7()
[all …]
Darm_conv_partial_f32.c95 const float32_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_partial_f32() local
273 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_f32()
274 py = pSrc2; in arm_conv_partial_f32()
416 py = pSrc2; in arm_conv_partial_f32()
481 py = pSrc2; in arm_conv_partial_f32()
518 py = pSrc2; in arm_conv_partial_f32()
553 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_partial_f32()
554 py = pSrc2; in arm_conv_partial_f32()
613 py = pSrc2; in arm_conv_partial_f32()
Darm_conv_fast_q31.c75 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_fast_q31() local
221 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q31()
222 py = pSrc2; in arm_conv_fast_q31()
366 py = pSrc2; in arm_conv_fast_q31()
424 py = pSrc2; in arm_conv_fast_q31()
462 py = pSrc2; in arm_conv_fast_q31()
489 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q31()
490 py = pSrc2; in arm_conv_fast_q31()
548 py = pSrc2; in arm_conv_fast_q31()
Darm_conv_fast_q15.c76 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_fast_q15() local
256 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q15()
257 py = pSrc2; in arm_conv_fast_q15()
441 py = pSrc2; in arm_conv_fast_q15()
494 py = pSrc2; in arm_conv_fast_q15()
531 py = pSrc2; in arm_conv_fast_q15()
557 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_fast_q15()
558 pIn2 = pSrc2 - 1U; in arm_conv_fast_q15()
653 py = pSrc2; in arm_conv_fast_q15()
Darm_conv_q31.c242 const q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_q31() local
393 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q31()
394 py = pSrc2; in arm_conv_q31()
513 py = pSrc2; in arm_conv_q31()
578 py = pSrc2; in arm_conv_q31()
615 py = pSrc2; in arm_conv_q31()
642 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q31()
643 py = pSrc2; in arm_conv_q31()
703 py = pSrc2; in arm_conv_q31()
Darm_conv_q7.c234 const q7_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_q7() local
403 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q7()
404 py = pSrc2; in arm_conv_q7()
592 py = pSrc2; in arm_conv_q7()
678 py = pSrc2; in arm_conv_q7()
715 py = pSrc2; in arm_conv_q7()
742 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q7()
743 py = pSrc2; in arm_conv_q7()
818 py = pSrc2; in arm_conv_q7()
Darm_conv_f32.c261 const float32_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_f32() local
455 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_f32()
456 py = pSrc2; in arm_conv_f32()
674 py = pSrc2; in arm_conv_f32()
772 py = pSrc2; in arm_conv_f32()
809 py = pSrc2; in arm_conv_f32()
836 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_f32()
837 py = pSrc2; in arm_conv_f32()
922 py = pSrc2; in arm_conv_f32()
Darm_conv_q15.c239 const q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ in arm_conv_q15() local
417 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q15()
418 py = pSrc2; in arm_conv_q15()
602 py = pSrc2; in arm_conv_q15()
655 py = pSrc2; in arm_conv_q15()
692 py = pSrc2; in arm_conv_q15()
720 pSrc2 = pIn2 + (srcBLen - 1U); in arm_conv_q15()
721 pIn2 = pSrc2 - 1U; in arm_conv_q15()
817 py = pSrc2; in arm_conv_q15()
/third_party/openh264/codec/encoder/core/src/
Dsample.cpp54 uint8_t* pSrc2 = pSample2; in WelsSampleSatd4x4_c() local
58 pSampleMix[i][0] = pSrc1[0] - pSrc2[0]; in WelsSampleSatd4x4_c()
59 pSampleMix[i][1] = pSrc1[1] - pSrc2[1]; in WelsSampleSatd4x4_c()
60 pSampleMix[i][2] = pSrc1[2] - pSrc2[2]; in WelsSampleSatd4x4_c()
61 pSampleMix[i][3] = pSrc1[3] - pSrc2[3]; in WelsSampleSatd4x4_c()
64 pSrc2 += iStride2; in WelsSampleSatd4x4_c()
/third_party/openh264/test/encoder/
DEncUT_MotionCompensation.cpp67 uint8_t* pSrc2, int32_t iSrc2Stride, int32_t iWidth, int32_t iHeight) { in PixelAvgAnchor() argument
70 pDst[x] = (pSrc1[x] + pSrc2[x] + 1) >> 1; in PixelAvgAnchor()
73 pSrc2 += iSrc2Stride; in PixelAvgAnchor()
85 uint8_t* pSrc2 = pSrc[iHpelRef1Array[iMvYIdx][iMvXIdx]] + iOffset + ((iMvXIdx) == 3); in MCLumaAnchor() local
86 PixelAvgAnchor (pDst, iDstStride, pSrc1, iSrcStride, pSrc2, iSrcStride, iWidth, iHeight); in MCLumaAnchor()