Searched refs:pDst (Results 1 - 25 of 108) sorted by relevance

12345

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dssse3.c7 static void test_pabsb_c(char *pDst, char *pSrc, int xmm) argument
12 pDst[ i ] = pSrc[ i ] > 0 ? pSrc[i ] : -pSrc[ i ];
15 static void test_pabsw_c(short *pDst, short *pSrc, int xmm) argument
20 pDst[ i ] = pSrc[ i ] > 0 ? pSrc[i ] : -pSrc[ i ];
23 static void test_pabsd_c(int *pDst, int *pSrc, int xmm) argument
28 pDst[ i ] = pSrc[ i ] > 0 ? pSrc[i ] : -pSrc[ i ];
31 static void test_psignb_c(char *pDst, char *pSrc, int xmm) argument
36 pDst[ i ] = pSrc[i] ? ( pSrc[ i ] >= 0 ? pDst[i ] : -pDst[
39 test_psignw_c(short *pDst, short *pSrc, int xmm) argument
47 test_psignd_c(int *pDst, int *pSrc, int xmm) argument
55 test_phaddw_c(unsigned short *pDst,unsigned short *pSrc, int xmm) argument
66 test_phaddsw_c(short *pDst, short *pSrc, int xmm) argument
77 test_phaddd_c(unsigned int *pDst, unsigned int *pSrc, int xmm) argument
88 test_phsubw_c(unsigned short *pDst,unsigned short *pSrc, int xmm) argument
99 test_phsubsw_c(short *pDst, short *pSrc, int xmm) argument
110 test_phsubd_c(unsigned int *pDst, unsigned int *pSrc, int xmm) argument
121 test_pmulhrsw_c(short *pDst, short *pSrc, int xmm) argument
132 test_pmaddubsw_c(unsigned char *pDst, signed char *pSrc, int xmm) argument
143 test_pshufb_c(unsigned char *pDst, unsigned char *pSrc, int xmm) argument
154 test_palignr_c(unsigned char *pDst, unsigned char *pSrc, int xmm) argument
165 randomize_args(unsigned char *pDst, unsigned char *pSrc) argument
195 void *pDst = malloc(16); local
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/mips/
H A DomxSP_FFTFwd_RToCCS_F32_Sfs.c20 OMX_F32* pDst,
25 OMX_F32* pDst,
29 OMX_F32* pDst,
34 if (!pSrc || !pDst || ((uintptr_t)pSrc & 31) || ((uintptr_t)pDst & 31) ||
46 return mips_FFTFwd_RToCCS_F32_complex(pSrc, pDst, pFFTStruct);
50 pDst[0] = (pSrc[0] + pSrc[1]);
51 pDst[1] = 0.0f;
52 pDst[2] = (pSrc[0] - pSrc[1]);
53 pDst[
28 omxSP_FFTFwd_RToCCS_F32_Sfs(const OMX_F32* pSrc, OMX_F32* pDst, const OMXFFTSpec_R_F32* pFFTSpec) argument
[all...]
H A DomxSP_FFTInv_CCSToR_F32_Sfs.c20 OMX_F32* pDst,
25 OMX_F32* pDst,
29 OMX_F32* pDst,
34 if (!pSrc || !pDst || (uintptr_t)pSrc & 31 || (uintptr_t)pDst & 31 ||
49 return mips_FFTInv_CCSToR_F32_complex(pSrc, pDst, pFFTStruct);
53 pDst[0] = (pSrc[0] + pSrc[2]) / 2;
54 pDst[1] = (pSrc[0] - pSrc[2]) / 2;
59 return mips_FFTInv_CCSToR_F32_real(pSrc, pDst, pFFTStruct);
28 omxSP_FFTInv_CCSToR_F32_Sfs(const OMX_F32* pSrc, OMX_F32* pDst, const OMXFFTSpec_R_F32* pFFTSpec) argument
H A Dmips_FFTInv_CCSToR_F32_real.c18 OMX_F32* pDst,
48 pDst[0] = factor * (tmp1 + tmp2);
49 pDst[2] = factor * (tmp1 - tmp2);
50 pDst[1] = factor * (tmp3 - tmp4);
51 pDst[3] = factor * (tmp3 + tmp4);
107 pDst[4] = factor * (p_buf[0].Re - tmp5);
108 pDst[0] = factor * (p_buf[0].Re + tmp5);
109 pDst[6] = factor * (p_buf[2].Re + tmp6);
110 pDst[2] = factor * (p_buf[2].Re - tmp6);
120 pDst[
17 mips_FFTInv_CCSToR_F32_real(const OMX_F32* pSrc, OMX_F32* pDst, const MIPSFFTSpec_R_FC32* pFFTSpec) argument
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/arm64/
H A DomxSP_FFTInv_CToC_FC32.c19 OMX_FC32* pDst,
26 OMX_FC32* pDst,
33 OMX_FC32* pDst,
40 OMX_FC32* pDst,
47 OMX_FC32* pDst,
54 OMX_FC32* pDst,
61 OMX_FC32* pDst,
110 * pDst - pointer to the complex-valued output signal, of length 2^order;
118 * - one or more of the following pointers is NULL: pSrc, pDst, or
120 * - pSrc or pDst i
124 omxSP_FFTInv_CToC_FC32_Sfs(const OMX_FC32* pSrc, OMX_FC32* pDst, const OMXFFTSpec_C_FC32* pFFTSpec) argument
[all...]
H A DomxSP_FFTFwd_CToC_FC32.c17 OMX_FC32* pDst,
24 OMX_FC32* pDst,
31 OMX_FC32* pDst,
38 OMX_FC32* pDst,
45 OMX_FC32* pDst,
52 OMX_FC32* pDst,
59 OMX_FC32* pDst,
87 * pDst - pointer to the complex-valued output vector, of length 2^order;
95 * - one or more of the following pointers is NULL: pSrc, pDst, or
97 * - pSrc or pDst i
101 omxSP_FFTFwd_CToC_FC32_Sfs(const OMX_FC32* pSrc, OMX_FC32* pDst, const OMXFFTSpec_C_FC32* pFFTSpec) argument
[all...]
H A DomxSP_FFTFwd_RToCCS_F32.c17 OMX_FC32* pDst,
24 OMX_FC32* pDst,
31 OMX_FC32* pDst,
38 OMX_FC32* pDst,
45 OMX_FC32* pDst,
52 OMX_FC32* pDst,
59 OMX_FC32* pDst,
65 OMX_F32* pDst,
93 * pDst - pointer to the complex-valued output vector, of length 2^order;
101 * - one or more of the following pointers is NULL: pSrc, pDst, o
107 omxSP_FFTFwd_RToCCS_F32_Sfs(const OMX_F32* pSrc, OMX_F32* pDst, const OMXFFTSpec_R_F32* pFFTSpec) argument
[all...]
H A DomxSP_FFTInv_CCSToR_F32.c19 OMX_FC32* pDst,
26 OMX_FC32* pDst,
33 OMX_FC32* pDst,
40 OMX_FC32* pDst,
47 OMX_FC32* pDst,
54 OMX_FC32* pDst,
61 OMX_FC32* pDst,
131 * pDst - pointer to the real-valued output sequence, of length
140 * - pSrc, pDst, or pFFTSpec is NULL
141 * - pSrc or pDst i
144 omxSP_FFTInv_CCSToR_F32_Sfs( const OMX_F32* pSrc, OMX_F32* pDst, const OMXFFTSpec_R_F32* pFFTSpec) argument
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
H A DarmSP_FFT_CToC_FC32_Radix4_fs_unsafe_s.S46 #define pDst r2 define
157 vstm.f32 pDst, {x0r, x0i}
158 add pDst, pDst, outPointStep
169 vstm.f32 pDst, {t3r, t3i}
170 add pDst, pDst, outPointStep
171 vstm.f32 pDst, {x1r, x1i}
172 add pDst, pDst, outPointSte
[all...]
H A DarmSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S46 #define pDst r2 define
113 add pDst, pDst, outPointStep
114 @// {y1r,y1i} -> [pDst, outPointStep]
115 vstm pDst, {y1r, y1i}
116 sub pDst, pDst, outPointStep
117 vstm pDst!, {y0r, y0i}
122 @// reset pSrc to pDst for the next stage
123 SUB pSrc,pDst,pointSte
[all...]
H A DarmSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S44 #define pDst r2 define
231 vstm pDst, {x2r, x2i} @// store y0
232 add pDst, step1
243 vstm pDst, {t1r, t1i} @// store y2
244 add pDst, step1
245 vstm pDst, {x0r, x0i} @// store y4
246 add pDst, step1
247 vstm pDst, {x3r, x3i} @// store y6
248 add pDst, step1
250 vstm pDst, {x3
[all...]
H A DarmSP_FFT_CToC_FC32_Radix4_unsafe_s.S46 #define pDst r2 define
124 @// Set pSrc and pDst for the grpLoop
131 ADD pDst,pDst,diff @// pDst += (grpCount-1)*setCount
242 vstm pDst, {x2r, x2i} @// store y0
253 add pDst, outPointStep
254 vstm pDst, {t2r, t2i} @// store y1
255 add pDst, outPointStep
256 vstm pDst, {x1
[all...]
H A DomxSP_FFTFwd_CToC_FC32_Sfs_s.S48 #define pDst r1 define
107 vstmlt.f32 pDst, {x0r, x0i}
109 MOVLT pSrc,pDst
113 MOV argDst,pDst @// Set input args to fft stages
123 MOVNE argDst,pDst
125 MOVEQ pOut,pDst @// Pass the first stage destination in RN5
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/
H A Ddetect.c53 OMX_F32* pDst,
56 return omxSP_FFTFwd_RToCCS_F32(pSrc, pDst, pFFTSpec);
66 OMX_F32* pDst,
69 return omxSP_FFTInv_CCSToR_F32(pSrc, pDst, pFFTSpec);
79 OMX_F32* pDst,
84 OMX_F32* pDst,
51 DetectForwardRealFFT( const OMX_F32* pSrc, OMX_F32* pDst, const OMXFFTSpec_R_F32* pFFTSpec) argument
64 DetectInverseRealFFT( const OMX_F32* pSrc, OMX_F32* pDst, const OMXFFTSpec_R_F32* pFFTSpec) argument
/external/pdfium/core/src/fpdftext/
H A Dunicodenormalization.cpp20 FX_STRSIZE FX_Unicode_GetNormalization(FX_WCHAR wch, FX_LPWSTR pDst) argument
25 if (pDst) {
26 *pDst = wch;
44 if (pDst) {
47 *pDst ++ = *pMap ++;
52 FX_STRSIZE FX_WideString_GetNormalization(FX_WSTR wsSrc, FX_LPWSTR pDst) argument
57 if(pDst) {
58 nCount += FX_Unicode_GetNormalization(wch, pDst + nCount);
60 nCount += FX_Unicode_GetNormalization(wch, pDst);
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTInv_CCSToR_S32S16_Sfs_s.S61 #define pDst r1 define
105 MOV pTmpDst,pDst
106 ADD pDst,pOut,N, LSL #2
111 ADD pDst,pOut,N, LSL #2
116 VLD1 dX0[0],[pDst]
124 VLD1 dX0,[pDst]
131 VLD1 {dX0,dX01},[pDst]!
H A DarmSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S49 #define pDst r2 define
109 VST1 dY0,[pDst],outPointStep
111 VST1 dY1,[pDst],dstStep
116 @// reset pSrc to pDst for the next stage
117 SUB pSrc,pDst,pointStep @// pDst -= 2*grpSize
118 MOV pDst,pPingPongBuf
H A DarmSP_FFT_CToC_SC16_Radix4_fs_unsafe_s.S56 #define pDst r2 define
185 VST2 {dZr0,dZi0},[pDst :128],outPointStep
188 VST2 {dZr3,dZi3},[pDst :128],outPointStep
191 VST2 {dZr1,dZi1},[pDst :128],outPointStep
195 VST2 {dZr2,dZi2},[pDst :128],setStep
203 VST2 {dZr0,dZi0},[pDst :128],outPointStep
206 VST2 {dZr2,dZi2},[pDst :128],outPointStep
209 VST2 {dZr1,dZi1},[pDst :128],outPointStep
211 VST2 {dZr3,dZi3},[pDst :128],setStep
239 VST2 {dZr0,dZi0},[pDst
[all...]
H A DarmSP_FFT_CToC_SC16_Radix8_fs_unsafe_s.S56 #define pDst r2 define
266 VST2 {dYr0,dYi0},[pDst :128],step1 @// store y0
274 VST2 {dYr2,dYi2},[pDst :128],step1 @// store y2
278 VST2 {dYr4,dYi4},[pDst :128],step1 @// store y4
282 VST2 {dYr6,dYi6},[pDst :128],step1 @// store y6
290 VST2 {dYr6,dYi6},[pDst :128],step1 @// store y2
295 VST2 {dYr4,dYi4},[pDst :128],step1 @// store y4
298 VST2 {dYr2,dYi2},[pDst :128],step1 @// store y6
349 SUB pDst, pDst, step
[all...]
H A DarmSP_FFT_CToC_SC32_Radix8_fs_unsafe_s.S55 #define pDst r2 define
257 VST2 {dYr0,dYi0},[pDst :128],step1 @// store y0
265 VST2 {dYr2,dYi2},[pDst :128],step1 @// store y2
269 VST2 {dYr4,dYi4},[pDst :128],step1 @// store y4
273 VST2 {dYr6,dYi6},[pDst :128],step1 @// store y6
281 VST2 {dYr6,dYi6},[pDst :128],step1 @// store y2
286 VST2 {dYr4,dYi4},[pDst :128],step1 @// store y4
289 VST2 {dYr2,dYi2},[pDst :128],step1 @// store y6
340 SUB pDst, pDst, step
[all...]
H A DomxSP_FFTFwd_CToC_FC32_Sfs_s.S55 #define pDst r1 define
117 VST1 dX0,[pDst]
118 MOV pSrc,pDst
124 MOVNE argDst,pDst
127 MOVEQ pOut,pDst
153 MOVNE argDst,pDst
156 MOVEQ pOut,pDst
H A DarmSP_FFT_CToC_SC16_Radix2_fs_unsafe_s.S57 #define pDst r2 define
131 VST1 {dY0S32[0]},[pDst],outPointStep
132 VST1 {dY1S32[0]},[pDst],dstStep @// dstStep = step = -pointStep + 4
137 @// reset pSrc to pDst for the next stage
138 SUB pSrc,pDst,pointStep @// pDst -= 2*grpSize
139 MOV pDst,pPingPongBuf
/external/chromium_org/third_party/openmax_dl/dl/sp/api/
H A DarmSP.h114 const void* pDst,
116 return pSrc && pDst && pFFTSpec && !(((uintptr_t)pSrc) & 31) &&
117 !(((uintptr_t)pDst) & 31) && pFFTSpec->pTwiddle && pFFTSpec->pBuf &&
122 const void* pDst,
124 return pSrc && pDst && pFFTSpec && !(((uintptr_t)pSrc) & 31) &&
125 !(((uintptr_t)pDst) & 31) && pFFTSpec->pTwiddle && pFFTSpec->pBuf &&
113 validateParametersFC32(const void* pSrc, const void* pDst, const ARMsFFTSpec_FC32* pFFTSpec) argument
121 validateParametersF32(const void* pSrc, const void* pDst, const ARMsFFTSpec_R_FC32* pFFTSpec) argument
H A DomxSP.h57 * elements of the vector pointed to by pDst. That is:
58 * pDst[i] = pSrc[i], for (i=0, 1, ..., len-1)
67 * pDst - pointer to the destination vector
74 * - pSrc or pDst is NULL
80 OMX_S16 *pDst,
272 * pDst - pointer to the vector of filtered output samples
281 * - pDst,
293 OMX_S16 *pDst,
351 * - pDst,
411 * pDst
[all...]
/external/aac/libFDK/src/
H A Dfft.cpp218 FIXP_DBL *RESTRICT pDst = aDst; local
222 pDst[k+0] = pSrc[l];
223 pDst[k+1] = pSrc[l+1];
228 pDst[k+2] = pSrc[l];
229 pDst[k+3] = pSrc[l+1];
233 pDst[k+4] = pSrc[l];
234 pDst[k+5] = pSrc[l+1];
243 r1 = pDst[k+2] + pDst[k+4];
244 r2 = fMult((pDst[
270 FIXP_DBL *RESTRICT pDst = aDst1; local
294 FIXP_DBL *RESTRICT pDst = pInput; local
1174 FIXP_DBL *pSrc, *pDst, *pDstOut; local
[all...]

Completed in 5676 milliseconds

12345