Lines Matching full:uint8
46 void MirrorRow_NEON(const uint8* src, uint8* dst, int width);
48 void MirrorRowUV_NEON(const uint8* src,
49 uint8* dst_a, uint8* dst_b,
52 void TransposeWx8_NEON(const uint8* src, int src_stride,
53 uint8* dst, int dst_stride, int width);
55 void TransposeUVWx8_NEON(const uint8* src, int src_stride,
56 uint8* dst_a, int dst_stride_a,
57 uint8* dst_b, int dst_stride_b,
64 static void TransposeWx8_SSSE3(const uint8* src, int src_stride,
65 uint8* dst, int dst_stride, int width) {
156 static void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
157 uint8* dst_a, int dst_stride_a,
158 uint8* dst_b, int dst_stride_b,
285 static void TransposeWx8_SSSE3(const uint8* src, int src_stride,
286 uint8* dst, int dst_stride, int width) {
374 extern "C" void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
375 uint8* dst_a, int dst_stride_a,
376 uint8* dst_b, int dst_stride_b,
497 static void TransposeWx8_FAST_SSSE3(const uint8* src, int src_stride,
498 uint8* dst, int dst_stride, int width) {
636 static void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
637 uint8* dst_a, int dst_stride_a,
638 uint8* dst_b, int dst_stride_b,
748 static void TransposeWx8_C(const uint8* src, int src_stride,
749 uint8* dst, int dst_stride,
765 static void TransposeWxH_C(const uint8* src, int src_stride,
766 uint8* dst, int dst_stride,
776 void TransposePlane(const uint8* src, int src_stride,
777 uint8* dst, int dst_stride,
779 void (*TransposeWx8)(const uint8* src, int src_stride,
780 uint8* dst, int dst_stride,
813 void RotatePlane90(const uint8* src, int src_stride,
814 uint8* dst, int dst_stride,
825 void RotatePlane270(const uint8* src, int src_stride,
826 uint8* dst, int dst_stride,
837 void RotatePlane180(const uint8* src, int src_stride,
838 uint8* dst, int dst_stride,
840 void (*MirrorRow)(const uint8* src, uint8* dst, int width) = MirrorRow_C;
862 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C;
884 SIMD_ALIGNED(uint8 row[kMaxStride]);
885 const uint8* src_bot = src + src_stride * (height - 1);
886 uint8* dst_bot = dst + dst_stride * (height - 1);
900 static void TransposeUVWx8_C(const uint8* src, int src_stride,
901 uint8* dst_a, int dst_stride_a,
902 uint8* dst_b, int dst_stride_b,
927 static void TransposeUVWxH_C(const uint8* src, int src_stride,
928 uint8* dst_a, int dst_stride_a,
929 uint8* dst_b, int dst_stride_b,
939 void TransposeUV(const uint8* src, int src_stride,
940 uint8* dst_a, int dst_stride_a,
941 uint8* dst_b, int dst_stride_b,
943 void (*TransposeUVWx8)(const uint8* src, int src_stride,
944 uint8* dst_a, int dst_stride_a,
945 uint8* dst_b, int dst_stride_b,
979 void RotateUV90(const uint8* src, int src_stride,
980 uint8* dst_a, int dst_stride_a,
981 uint8* dst_b, int dst_stride_b,
993 void RotateUV270(const uint8* src, int src_stride,
994 uint8* dst_a, int dst_stride_a,
995 uint8* dst_b, int dst_stride_b,
1010 void RotateUV180(const uint8* src, int src_stride,
1011 uint8* dst_a, int dst_stride_a,
1012 uint8* dst_b, int dst_stride_b,
1014 void (*MirrorRowUV)(const uint8* src, uint8* dst_u, uint8* dst_v, int width) =
1040 int I420Rotate(const uint8* src_y, int src_stride_y,
1041 const uint8* src_u, int src_stride_u,
1042 const uint8* src_v, int src_stride_v,
1043 uint8* dst_y, int dst_stride_y,
1044 uint8* dst_u, int dst_stride_u,
1045 uint8* dst_v, int dst_stride_v,
1117 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y,
1118 const uint8* src_uv, int src_stride_uv,
1119 uint8* dst_y, int dst_stride_y,
1120 uint8* dst_u, int dst_stride_u,
1121 uint8* dst_v, int dst_stride_v,