Home | History | Annotate | Download | only in source

Lines Matching full:dst_ptr

36                const uint8* a_buf, uint8* dst_ptr,                         \
43 ANY_SIMD(y_buf, u_buf, v_buf, a_buf, dst_ptr, yuvconstants, n); \
51 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 256, \
72 uint8* dst_ptr, int width) { \
78 ANY_SIMD(y_buf, u_buf, v_buf, dst_ptr, n); \
84 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 192, \
116 uint8* dst_ptr, const struct YuvConstants* yuvconstants, \
123 ANY_SIMD(y_buf, u_buf, v_buf, dst_ptr, yuvconstants, n); \
133 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 192, \
197 void NAMEANY(const uint8* y_buf, const uint8* uv_buf, uint8* dst_ptr, \
204 ANY_SIMD(y_buf, uv_buf, dst_ptr, n); \
210 memcpy(dst_ptr + n * BPP, temp + 128, r * BPP); \
295 void NAMEANY(const uint8* y_buf, const uint8* uv_buf, uint8* dst_ptr, \
302 ANY_SIMD(y_buf, uv_buf, dst_ptr, yuvconstants, n); \
308 memcpy(dst_ptr + n * BPP, temp + 128, r * BPP); \
355 void NAMEANY(const uint8* src_ptr, uint8* dst_ptr, int width) { \
361 ANY_SIMD(src_ptr, dst_ptr, n); \
365 memcpy(dst_ptr + n * BPP, temp + 128, r * BPP); \
628 void NAMEANY(const uint8* src_ptr, uint8* dst_ptr, int width) { \
634 ANY_SIMD(src_ptr, dst_ptr, n); \
637 memcpy(temp + 64, dst_ptr + n * BPP, r * BPP); \
639 memcpy(dst_ptr + n * BPP, temp + 64, r * BPP); \
658 void NAMEANY(const uint8* src_ptr, uint8* dst_ptr, T param, int width) { \
664 ANY_SIMD(src_ptr, dst_ptr, param, n); \
668 memcpy(dst_ptr + n * BPP, temp + 64, r * BPP); \
722 void NAMEANY(const uint16* src_ptr, uint16* dst_ptr, T param, int width) { \
728 ANY_SIMD(src_ptr, dst_ptr, param, n); \
732 memcpy(dst_ptr + n, temp + 16, r * BPP); \
753 void NAMEANY(const uint8* src_ptr, uint8* dst_ptr, \
760 ANY_SIMD(src_ptr, dst_ptr, yuvconstants, n); \
764 memcpy(dst_ptr + n * BPP, temp + 128, r * BPP); \
786 void NAMEANY(uint8* dst_ptr, const uint8* src_ptr, ptrdiff_t src_stride_ptr, \
793 ANY_SIMD(dst_ptr, src_ptr, src_stride_ptr, n, source_y_fraction); \
798 memcpy(dst_ptr + n * BPP, temp + 128, r * BPP); \
820 void NAMEANY(const uint8* src_ptr, uint8* dst_ptr, int width) { \
826 ANY_SIMD(src_ptr + r * BPP, dst_ptr, n); \
830 memcpy(dst_ptr + n * BPP, temp + 64 + (MASK + 1 - r) * BPP, r * BPP); \
861 void NAMEANY(uint8* dst_ptr, T v32, int width) { \
866 ANY_SIMD(dst_ptr, v32, n); \
869 memcpy(dst_ptr + n * BPP, temp, r * BPP); \