Home
last modified time | relevance | path

Searched refs:WebPUint32ToMem (Results 1 – 8 of 8) sorted by relevance

/external/webp/src/dsp/
Ddec_sse2.c190 WebPUint32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(dst0)); in Transform_SSE2()
191 WebPUint32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(dst1)); in Transform_SSE2()
192 WebPUint32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(dst2)); in Transform_SSE2()
193 WebPUint32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(dst3)); in Transform_SSE2()
236 WebPUint32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32(dst0)); in TransformAC3()
237 WebPUint32ToMem(dst + 1 * BPS, _mm_cvtsi128_si32(dst1)); in TransformAC3()
238 WebPUint32ToMem(dst + 2 * BPS, _mm_cvtsi128_si32(dst2)); in TransformAC3()
239 WebPUint32ToMem(dst + 3 * BPS, _mm_cvtsi128_si32(dst3)); in TransformAC3()
543 WebPUint32ToMem(dst, _mm_cvtsi128_si32(*x)); in Store4x4_SSE2()
914 WebPUint32ToMem(dst + i * BPS, vals); in VE4_SSE2()
[all …]
Denc_sse2.c188 WebPUint32ToMem(&dst[0 * BPS], _mm_cvtsi128_si32(ref0)); in ITransform_SSE2()
189 WebPUint32ToMem(&dst[1 * BPS], _mm_cvtsi128_si32(ref1)); in ITransform_SSE2()
190 WebPUint32ToMem(&dst[2 * BPS], _mm_cvtsi128_si32(ref2)); in ITransform_SSE2()
191 WebPUint32ToMem(&dst[3 * BPS], _mm_cvtsi128_si32(ref3)); in ITransform_SSE2()
728 WebPUint32ToMem(dst + i * BPS, vals); in VE4_SSE2()
739 WebPUint32ToMem(dst + 0 * BPS, 0x01010101U * AVG3(X, I, J)); in HE4_SSE2()
740 WebPUint32ToMem(dst + 1 * BPS, 0x01010101U * AVG3(I, J, K)); in HE4_SSE2()
741 WebPUint32ToMem(dst + 2 * BPS, 0x01010101U * AVG3(J, K, L)); in HE4_SSE2()
742 WebPUint32ToMem(dst + 3 * BPS, 0x01010101U * AVG3(K, L, L)); in HE4_SSE2()
763 WebPUint32ToMem(dst + 0 * BPS, _mm_cvtsi128_si32( abcdefg )); in LD4_SSE2()
[all …]
Denc.c370 WebPUint32ToMem(dst + 0 * BPS, 0x01010101U * AVG3(X, I, J)); in HE4()
371 WebPUint32ToMem(dst + 1 * BPS, 0x01010101U * AVG3(I, J, K)); in HE4()
372 WebPUint32ToMem(dst + 2 * BPS, 0x01010101U * AVG3(J, K, L)); in HE4()
373 WebPUint32ToMem(dst + 3 * BPS, 0x01010101U * AVG3(K, L, L)); in HE4()
Ddec.c277 WebPUint32ToMem(dst + 0 * BPS, 0x01010101U * AVG3(A, B, C)); in HE4_C()
278 WebPUint32ToMem(dst + 1 * BPS, 0x01010101U * AVG3(B, C, D)); in HE4_C()
279 WebPUint32ToMem(dst + 2 * BPS, 0x01010101U * AVG3(C, D, E)); in HE4_C()
280 WebPUint32ToMem(dst + 3 * BPS, 0x01010101U * AVG3(D, E, E)); in HE4_C()
Denc_msa.c281 WebPUint32ToMem(dst + 0 * BPS, 0x01010101U * AVG3(X, I, J)); in HE4()
282 WebPUint32ToMem(dst + 1 * BPS, 0x01010101U * AVG3(I, J, K)); in HE4()
283 WebPUint32ToMem(dst + 2 * BPS, 0x01010101U * AVG3(J, K, L)); in HE4()
284 WebPUint32ToMem(dst + 3 * BPS, 0x01010101U * AVG3(K, L, L)); in HE4()
Drescaler_sse2.c88 WebPUint32ToMem((uint8_t*)frow, _mm_cvtsi128_si32(out)); in RescalerImportRowExpand_SSE2()
Dlossless.c504 WebPUint32ToMem(dst, BSwap32(argb)); in CopyOrSwap()
/external/webp/src/utils/
Dutils.h72 static WEBP_INLINE void WebPUint32ToMem(uint8_t* const ptr, uint32_t val) { in WebPUint32ToMem() function