Home
last modified time | relevance | path

Searched refs:uint8 (Results 1 – 25 of 753) sorted by relevance

12345678910>>...31

/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h27 uint8* var##_mem = reinterpret_cast<uint8*>(malloc((size) + 63)); \
28 uint8* var = reinterpret_cast<uint8*> \
32 uint8* var##_mem = (uint8*)(malloc((size) + 63)); /* NOLINT */ \
33 uint8* var = (uint8*)(((intptr_t)(var##_mem) + 63) & ~63) /* NOLINT */
386 typedef __declspec(align(16)) uint8 uvec8[16];
392 typedef __declspec(align(32)) uint8 ulvec8[32];
405 typedef uint8 __attribute__((vector_size(16))) uvec8;
411 typedef uint8 __attribute__((vector_size(32))) ulvec8;
419 typedef uint8 uvec8[16];
425 typedef uint8 ulvec8[32];
[all …]
Dscale_row.h109 const uint8* src_argb, uint8* dst_argb,
145 void ScaleRowDown2_C(const uint8* src_ptr, ptrdiff_t src_stride,
146 uint8* dst, int dst_width);
149 void ScaleRowDown2Linear_C(const uint8* src_ptr, ptrdiff_t src_stride,
150 uint8* dst, int dst_width);
153 void ScaleRowDown2Box_C(const uint8* src_ptr, ptrdiff_t src_stride,
154 uint8* dst, int dst_width);
155 void ScaleRowDown2Box_Odd_C(const uint8* src_ptr, ptrdiff_t src_stride,
156 uint8* dst, int dst_width);
159 void ScaleRowDown4_C(const uint8* src_ptr, ptrdiff_t src_stride,
[all …]
Dplanar_functions.h27 void CopyPlane(const uint8* src_y, int src_stride_y,
28 uint8* dst_y, int dst_stride_y,
38 void SetPlane(uint8* dst_y, int dst_stride_y,
44 void SplitUVPlane(const uint8* src_uv, int src_stride_uv,
45 uint8* dst_u, int dst_stride_u,
46 uint8* dst_v, int dst_stride_v,
51 void MergeUVPlane(const uint8* src_u, int src_stride_u,
52 const uint8* src_v, int src_stride_v,
53 uint8* dst_uv, int dst_stride_uv,
58 int I400ToI400(const uint8* src_y, int src_stride_y,
[all …]
Dconvert.h30 int I444ToI420(const uint8* src_y, int src_stride_y,
31 const uint8* src_u, int src_stride_u,
32 const uint8* src_v, int src_stride_v,
33 uint8* dst_y, int dst_stride_y,
34 uint8* dst_u, int dst_stride_u,
35 uint8* dst_v, int dst_stride_v,
40 int I422ToI420(const uint8* src_y, int src_stride_y,
41 const uint8* src_u, int src_stride_u,
42 const uint8* src_v, int src_stride_v,
43 uint8* dst_y, int dst_stride_y,
[all …]
Dconvert_argb.h33 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
34 uint8* dst_argb, int dst_stride_argb,
39 int I420ToARGB(const uint8* src_y, int src_stride_y,
40 const uint8* src_u, int src_stride_u,
41 const uint8* src_v, int src_stride_v,
42 uint8* dst_argb, int dst_stride_argb,
47 int I420ToABGR(const uint8* src_y, int src_stride_y,
48 const uint8* src_u, int src_stride_u,
49 const uint8* src_v, int src_stride_v,
50 uint8* dst_argb, int dst_stride_argb,
[all …]
Dconvert_from.h27 int I420ToI422(const uint8* src_y, int src_stride_y,
28 const uint8* src_u, int src_stride_u,
29 const uint8* src_v, int src_stride_v,
30 uint8* dst_y, int dst_stride_y,
31 uint8* dst_u, int dst_stride_u,
32 uint8* dst_v, int dst_stride_v,
36 int I420ToI444(const uint8* src_y, int src_stride_y,
37 const uint8* src_u, int src_stride_u,
38 const uint8* src_v, int src_stride_v,
39 uint8* dst_y, int dst_stride_y,
[all …]
Dconvert_from_argb.h24 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
25 uint8* dst_argb, int dst_stride_argb,
30 int ARGBToBGRA(const uint8* src_argb, int src_stride_argb,
31 uint8* dst_bgra, int dst_stride_bgra,
36 int ARGBToABGR(const uint8* src_argb, int src_stride_argb,
37 uint8* dst_abgr, int dst_stride_abgr,
42 int ARGBToRGBA(const uint8* src_argb, int src_stride_argb,
43 uint8* dst_rgba, int dst_stride_rgba,
48 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
49 uint8* dst_rgb24, int dst_stride_rgb24,
[all …]
Drotate_row.h63 void TransposeWxH_C(const uint8* src, int src_stride,
64 uint8* dst, int dst_stride, int width, int height);
66 void TransposeWx8_C(const uint8* src, int src_stride,
67 uint8* dst, int dst_stride, int width);
68 void TransposeWx8_NEON(const uint8* src, int src_stride,
69 uint8* dst, int dst_stride, int width);
70 void TransposeWx8_SSSE3(const uint8* src, int src_stride,
71 uint8* dst, int dst_stride, int width);
72 void TransposeWx8_Fast_SSSE3(const uint8* src, int src_stride,
73 uint8* dst, int dst_stride, int width);
[all …]
/external/libyuv/files/include/libyuv/
Drow.h26 uint8* var##_mem = (uint8*)(malloc((size) + 63)); /* NOLINT */ \
27 uint8* var = (uint8*)(((intptr_t)(var##_mem) + 63) & ~63) /* NOLINT */
467 typedef __declspec(align(16)) uint8 uvec8[16];
473 typedef __declspec(align(32)) uint8 ulvec8[32];
486 typedef uint8 __attribute__((vector_size(16))) uvec8;
492 typedef uint8 __attribute__((vector_size(32))) ulvec8;
500 typedef uint8 uvec8[16];
506 typedef uint8 ulvec8[32];
688 void I444ToARGBRow_NEON(const uint8* src_y,
689 const uint8* src_u,
[all …]
Dplanar_functions.h27 void CopyPlane(const uint8* src_y,
29 uint8* dst_y,
44 void SetPlane(uint8* dst_y,
52 void SplitUVPlane(const uint8* src_uv,
54 uint8* dst_u,
56 uint8* dst_v,
63 void MergeUVPlane(const uint8* src_u,
65 const uint8* src_v,
67 uint8* dst_uv,
74 int I400ToI400(const uint8* src_y,
[all …]
Dscale_row.h122 const uint8* src_argb,
123 uint8* dst_argb,
175 void ScaleRowDown2_C(const uint8* src_ptr,
177 uint8* dst,
183 void ScaleRowDown2Linear_C(const uint8* src_ptr,
185 uint8* dst,
191 void ScaleRowDown2Box_C(const uint8* src_ptr,
193 uint8* dst,
195 void ScaleRowDown2Box_Odd_C(const uint8* src_ptr,
197 uint8* dst,
[all …]
Dconvert.h30 int I444ToI420(const uint8* src_y,
32 const uint8* src_u,
34 const uint8* src_v,
36 uint8* dst_y,
38 uint8* dst_u,
40 uint8* dst_v,
47 int I422ToI420(const uint8* src_y,
49 const uint8* src_u,
51 const uint8* src_v,
53 uint8* dst_y,
[all …]
Dconvert_argb.h33 int ARGBCopy(const uint8* src_argb,
35 uint8* dst_argb,
42 int I420ToARGB(const uint8* src_y,
44 const uint8* src_u,
46 const uint8* src_v,
48 uint8* dst_argb,
55 int I420ToABGR(const uint8* src_y,
57 const uint8* src_u,
59 const uint8* src_v,
61 uint8* dst_argb,
[all …]
Dconvert_from.h27 int I420ToI422(const uint8* src_y,
29 const uint8* src_u,
31 const uint8* src_v,
33 uint8* dst_y,
35 uint8* dst_u,
37 uint8* dst_v,
43 int I420ToI444(const uint8* src_y,
45 const uint8* src_u,
47 const uint8* src_v,
49 uint8* dst_y,
[all …]
Dconvert_from_argb.h24 int ARGBCopy(const uint8* src_argb,
26 uint8* dst_argb,
33 int ARGBToBGRA(const uint8* src_argb,
35 uint8* dst_bgra,
42 int ARGBToABGR(const uint8* src_argb,
44 uint8* dst_abgr,
51 int ARGBToRGBA(const uint8* src_argb,
53 uint8* dst_rgba,
60 int ARGBToRGB24(const uint8* src_argb,
62 uint8* dst_rgb24,
[all …]
Drotate_row.h68 void TransposeWxH_C(const uint8* src,
70 uint8* dst,
75 void TransposeWx8_C(const uint8* src,
77 uint8* dst,
80 void TransposeWx16_C(const uint8* src,
82 uint8* dst,
85 void TransposeWx8_NEON(const uint8* src,
87 uint8* dst,
90 void TransposeWx8_SSSE3(const uint8* src,
92 uint8* dst,
[all …]
/external/libyuv/files/source/
Drow_neon.cc128 void I444ToARGBRow_NEON(const uint8* src_y, in I444ToARGBRow_NEON()
129 const uint8* src_u, in I444ToARGBRow_NEON()
130 const uint8* src_v, in I444ToARGBRow_NEON()
131 uint8* dst_argb, in I444ToARGBRow_NEON()
158 void I422ToARGBRow_NEON(const uint8* src_y, in I422ToARGBRow_NEON()
159 const uint8* src_u, in I422ToARGBRow_NEON()
160 const uint8* src_v, in I422ToARGBRow_NEON()
161 uint8* dst_argb, in I422ToARGBRow_NEON()
188 void I422AlphaToARGBRow_NEON(const uint8* src_y, in I422AlphaToARGBRow_NEON()
189 const uint8* src_u, in I422AlphaToARGBRow_NEON()
[all …]
Drow_neon64.cc128 void I444ToARGBRow_NEON(const uint8* src_y, in I444ToARGBRow_NEON()
129 const uint8* src_u, in I444ToARGBRow_NEON()
130 const uint8* src_v, in I444ToARGBRow_NEON()
131 uint8* dst_argb, in I444ToARGBRow_NEON()
158 void I422ToARGBRow_NEON(const uint8* src_y, in I422ToARGBRow_NEON()
159 const uint8* src_u, in I422ToARGBRow_NEON()
160 const uint8* src_v, in I422ToARGBRow_NEON()
161 uint8* dst_argb, in I422ToARGBRow_NEON()
188 void I422AlphaToARGBRow_NEON(const uint8* src_y, in I422AlphaToARGBRow_NEON()
189 const uint8* src_u, in I422AlphaToARGBRow_NEON()
[all …]
Drow_common.cc65 static inline void WRITEWORD(uint8* p, uint32 v) { in WRITEWORD()
66 p[0] = (uint8)(v & 255); in WRITEWORD()
67 p[1] = (uint8)((v >> 8) & 255); in WRITEWORD()
68 p[2] = (uint8)((v >> 16) & 255); in WRITEWORD()
69 p[3] = (uint8)((v >> 24) & 255); in WRITEWORD()
73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C()
76 uint8 b = src_rgb24[0]; in RGB24ToARGBRow_C()
77 uint8 g = src_rgb24[1]; in RGB24ToARGBRow_C()
78 uint8 r = src_rgb24[2]; in RGB24ToARGBRow_C()
88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_C()
[all …]
Drow_gcc.cc156 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int width) { in J400ToARGBRow_SSE2()
184 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_SSSE3()
222 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_SSSE3()
260 void RAWToRGB24Row_SSSE3(const uint8* src_raw, uint8* dst_rgb24, int width) { in RAWToRGB24Row_SSSE3()
290 void RGB565ToARGBRow_SSE2(const uint8* src, uint8* dst, int width) { in RGB565ToARGBRow_SSE2()
338 void ARGB1555ToARGBRow_SSE2(const uint8* src, uint8* dst, int width) { in ARGB1555ToARGBRow_SSE2()
389 void ARGB4444ToARGBRow_SSE2(const uint8* src, uint8* dst, int width) { in ARGB4444ToARGBRow_SSE2()
427 void ARGBToRGB24Row_SSSE3(const uint8* src, uint8* dst, int width) { in ARGBToRGB24Row_SSSE3()
465 void ARGBToRAWRow_SSSE3(const uint8* src, uint8* dst, int width) { in ARGBToRAWRow_SSSE3()
503 void ARGBToRGB565Row_SSE2(const uint8* src, uint8* dst, int width) { in ARGBToRGB565Row_SSE2()
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_neon.cc137 void I444ToARGBRow_NEON(const uint8* src_y, in I444ToARGBRow_NEON()
138 const uint8* src_u, in I444ToARGBRow_NEON()
139 const uint8* src_v, in I444ToARGBRow_NEON()
140 uint8* dst_argb, in I444ToARGBRow_NEON()
167 void I422ToARGBRow_NEON(const uint8* src_y, in I422ToARGBRow_NEON()
168 const uint8* src_u, in I422ToARGBRow_NEON()
169 const uint8* src_v, in I422ToARGBRow_NEON()
170 uint8* dst_argb, in I422ToARGBRow_NEON()
197 void I422AlphaToARGBRow_NEON(const uint8* src_y, in I422AlphaToARGBRow_NEON()
198 const uint8* src_u, in I422AlphaToARGBRow_NEON()
[all …]
Drow_neon64.cc130 void I444ToARGBRow_NEON(const uint8* src_y, in I444ToARGBRow_NEON()
131 const uint8* src_u, in I444ToARGBRow_NEON()
132 const uint8* src_v, in I444ToARGBRow_NEON()
133 uint8* dst_argb, in I444ToARGBRow_NEON()
160 void I422ToARGBRow_NEON(const uint8* src_y, in I422ToARGBRow_NEON()
161 const uint8* src_u, in I422ToARGBRow_NEON()
162 const uint8* src_v, in I422ToARGBRow_NEON()
163 uint8* dst_argb, in I422ToARGBRow_NEON()
190 void I422AlphaToARGBRow_NEON(const uint8* src_y, in I422AlphaToARGBRow_NEON()
191 const uint8* src_u, in I422AlphaToARGBRow_NEON()
[all …]
Drow_gcc.cc189 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int width) { in J400ToARGBRow_SSE2()
217 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_SSSE3()
255 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_SSSE3()
293 void RAWToRGB24Row_SSSE3(const uint8* src_raw, uint8* dst_rgb24, int width) { in RAWToRGB24Row_SSSE3()
323 void RGB565ToARGBRow_SSE2(const uint8* src, uint8* dst, int width) { in RGB565ToARGBRow_SSE2()
371 void ARGB1555ToARGBRow_SSE2(const uint8* src, uint8* dst, int width) { in ARGB1555ToARGBRow_SSE2()
422 void ARGB4444ToARGBRow_SSE2(const uint8* src, uint8* dst, int width) { in ARGB4444ToARGBRow_SSE2()
460 void ARGBToRGB24Row_SSSE3(const uint8* src, uint8* dst, int width) { in ARGBToRGB24Row_SSSE3()
498 void ARGBToRAWRow_SSSE3(const uint8* src, uint8* dst, int width) { in ARGBToRAWRow_SSSE3()
536 void ARGBToRGB565Row_SSE2(const uint8* src, uint8* dst, int width) { in ARGBToRGB565Row_SSE2()
[all …]
Drow_common.cc65 static inline void WRITEWORD(uint8* p, uint32 v) { in WRITEWORD()
66 p[0] = (uint8)(v & 255); in WRITEWORD()
67 p[1] = (uint8)((v >> 8) & 255); in WRITEWORD()
68 p[2] = (uint8)((v >> 16) & 255); in WRITEWORD()
69 p[3] = (uint8)((v >> 24) & 255); in WRITEWORD()
73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C()
76 uint8 b = src_rgb24[0]; in RGB24ToARGBRow_C()
77 uint8 g = src_rgb24[1]; in RGB24ToARGBRow_C()
78 uint8 r = src_rgb24[2]; in RGB24ToARGBRow_C()
88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_C()
[all …]
Dconvert_argb.cc29 int ARGBCopy(const uint8* src_argb, int src_stride_argb, in ARGBCopy()
30 uint8* dst_argb, int dst_stride_argb, in ARGBCopy()
49 static int I420ToARGBMatrix(const uint8* src_y, int src_stride_y, in I420ToARGBMatrix()
50 const uint8* src_u, int src_stride_u, in I420ToARGBMatrix()
51 const uint8* src_v, int src_stride_v, in I420ToARGBMatrix()
52 uint8* dst_argb, int dst_stride_argb, in I420ToARGBMatrix()
56 void (*I422ToARGBRow)(const uint8* y_buf, in I420ToARGBMatrix()
57 const uint8* u_buf, in I420ToARGBMatrix()
58 const uint8* v_buf, in I420ToARGBMatrix()
59 uint8* rgb_buf, in I420ToARGBMatrix()
[all …]

12345678910>>...31