Home
last modified time | relevance | path

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

12345678910>>...40

/external/libaom/libaom/third_party/libyuv/include/libyuv/
Drow.h28 uint8* var##_mem = reinterpret_cast<uint8*>(malloc((size) + 63)); \
29 uint8* var = reinterpret_cast<uint8*> \
33 uint8* var##_mem = (uint8*)(malloc((size) + 63)); /* NOLINT */ \
34 uint8* var = (uint8*)(((intptr_t)(var##_mem) + 63) & ~63) /* NOLINT */
377 typedef __declspec(align(16)) uint8 uvec8[16];
383 typedef __declspec(align(32)) uint8 ulvec8[32];
393 typedef uint8 __attribute__((vector_size(16))) uvec8;
399 typedef uint8 __attribute__((vector_size(32))) ulvec8;
408 typedef uint8 uvec8[16];
414 typedef uint8 ulvec8[32];
[all …]
Dscale_row.h91 const uint8* src_argb, uint8* dst_argb,
127 void ScaleRowDown2_C(const uint8* src_ptr, ptrdiff_t src_stride,
128 uint8* dst, int dst_width);
131 void ScaleRowDown2Linear_C(const uint8* src_ptr, ptrdiff_t src_stride,
132 uint8* dst, int dst_width);
135 void ScaleRowDown2Box_C(const uint8* src_ptr, ptrdiff_t src_stride,
136 uint8* dst, int dst_width);
139 void ScaleRowDown4_C(const uint8* src_ptr, ptrdiff_t src_stride,
140 uint8* dst, int dst_width);
143 void ScaleRowDown4Box_C(const uint8* src_ptr, ptrdiff_t src_stride,
[all …]
Dplanar_functions.h28 void CopyPlane(const uint8* src_y, int src_stride_y,
29 uint8* dst_y, int dst_stride_y,
39 void SetPlane(uint8* dst_y, int dst_stride_y,
45 int I400ToI400(const uint8* src_y, int src_stride_y,
46 uint8* dst_y, int dst_stride_y,
54 int I422Copy(const uint8* src_y, int src_stride_y,
55 const uint8* src_u, int src_stride_u,
56 const uint8* src_v, int src_stride_v,
57 uint8* dst_y, int dst_stride_y,
58 uint8* dst_u, int dst_stride_u,
[all …]
Dconvert.h28 int I444ToI420(const uint8* src_y, int src_stride_y,
29 const uint8* src_u, int src_stride_u,
30 const uint8* src_v, int src_stride_v,
31 uint8* dst_y, int dst_stride_y,
32 uint8* dst_u, int dst_stride_u,
33 uint8* dst_v, int dst_stride_v,
38 int I422ToI420(const uint8* src_y, int src_stride_y,
39 const uint8* src_u, int src_stride_u,
40 const uint8* src_v, int src_stride_v,
41 uint8* dst_y, int dst_stride_y,
[all …]
Dconvert_from.h28 int I420ToI422(const uint8* src_y, int src_stride_y,
29 const uint8* src_u, int src_stride_u,
30 const uint8* src_v, int src_stride_v,
31 uint8* dst_y, int dst_stride_y,
32 uint8* dst_u, int dst_stride_u,
33 uint8* dst_v, int dst_stride_v,
37 int I420ToI444(const uint8* src_y, int src_stride_y,
38 const uint8* src_u, int src_stride_u,
39 const uint8* src_v, int src_stride_v,
40 uint8* dst_y, int dst_stride_y,
[all …]
Dconvert_from_argb.h25 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
26 uint8* dst_argb, int dst_stride_argb,
31 int ARGBToBGRA(const uint8* src_argb, int src_stride_argb,
32 uint8* dst_bgra, int dst_stride_bgra,
37 int ARGBToABGR(const uint8* src_argb, int src_stride_argb,
38 uint8* dst_abgr, int dst_stride_abgr,
43 int ARGBToRGBA(const uint8* src_argb, int src_stride_argb,
44 uint8* dst_rgba, int dst_stride_rgba,
49 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
50 uint8* dst_rgb24, int dst_stride_rgb24,
[all …]
Dconvert_argb.h36 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
37 uint8* dst_argb, int dst_stride_argb,
42 int I420ToARGB(const uint8* src_y, int src_stride_y,
43 const uint8* src_u, int src_stride_u,
44 const uint8* src_v, int src_stride_v,
45 uint8* dst_argb, int dst_stride_argb,
50 int I422ToARGB(const uint8* src_y, int src_stride_y,
51 const uint8* src_u, int src_stride_u,
52 const uint8* src_v, int src_stride_v,
53 uint8* dst_argb, int dst_stride_argb,
[all …]
Drotate.h37 int I420Rotate(const uint8* src_y, int src_stride_y,
38 const uint8* src_u, int src_stride_u,
39 const uint8* src_v, int src_stride_v,
40 uint8* dst_y, int dst_stride_y,
41 uint8* dst_u, int dst_stride_u,
42 uint8* dst_v, int dst_stride_v,
47 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y,
48 const uint8* src_uv, int src_stride_uv,
49 uint8* dst_y, int dst_stride_y,
50 uint8* dst_u, int dst_stride_u,
[all …]
Drotate_row.h93 void TransposeWxH_C(const uint8* src, int src_stride,
94 uint8* dst, int dst_stride, int width, int height);
96 void TransposeWx8_C(const uint8* src, int src_stride,
97 uint8* dst, int dst_stride, int width);
98 void TransposeWx8_NEON(const uint8* src, int src_stride,
99 uint8* dst, int dst_stride, int width);
100 void TransposeWx8_SSSE3(const uint8* src, int src_stride,
101 uint8* dst, int dst_stride, int width);
102 void TransposeWx8_Fast_SSSE3(const uint8* src, int src_stride,
103 uint8* dst, int dst_stride, int width);
[all …]
Dcompare.h24 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed);
29 uint32 ARGBDetect(const uint8* argb, int stride_argb, int width, int height);
33 uint64 ComputeSumSquareError(const uint8* src_a,
34 const uint8* src_b, int count);
37 uint64 ComputeSumSquareErrorPlane(const uint8* src_a, int stride_a,
38 const uint8* src_b, int stride_b,
47 double CalcFramePsnr(const uint8* src_a, int stride_a,
48 const uint8* src_b, int stride_b,
52 double I420Psnr(const uint8* src_y_a, int stride_y_a,
53 const uint8* src_u_a, int stride_u_a,
[all …]
/external/libaom/libaom/third_party/libyuv/source/
Drow_neon.cc170 void I444ToARGBRow_NEON(const uint8* src_y, in I444ToARGBRow_NEON()
171 const uint8* src_u, in I444ToARGBRow_NEON()
172 const uint8* src_v, in I444ToARGBRow_NEON()
173 uint8* dst_argb, in I444ToARGBRow_NEON()
200 void I422ToARGBRow_NEON(const uint8* src_y, in I422ToARGBRow_NEON()
201 const uint8* src_u, in I422ToARGBRow_NEON()
202 const uint8* src_v, in I422ToARGBRow_NEON()
203 uint8* dst_argb, in I422ToARGBRow_NEON()
230 void I411ToARGBRow_NEON(const uint8* src_y, in I411ToARGBRow_NEON()
231 const uint8* src_u, in I411ToARGBRow_NEON()
[all …]
Drow_neon64.cc171 void I444ToARGBRow_NEON(const uint8* src_y, in I444ToARGBRow_NEON()
172 const uint8* src_u, in I444ToARGBRow_NEON()
173 const uint8* src_v, in I444ToARGBRow_NEON()
174 uint8* dst_argb, in I444ToARGBRow_NEON()
200 void I422ToARGBRow_NEON(const uint8* src_y, in I422ToARGBRow_NEON()
201 const uint8* src_u, in I422ToARGBRow_NEON()
202 const uint8* src_v, in I422ToARGBRow_NEON()
203 uint8* dst_argb, in I422ToARGBRow_NEON()
229 void I411ToARGBRow_NEON(const uint8* src_y, in I411ToARGBRow_NEON()
230 const uint8* src_u, in I411ToARGBRow_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.cc145 void TestRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) { in TestRow_SSE2()
240 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) { in J400ToARGBRow_SSE2()
268 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3()
306 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) { in RAWToARGBRow_SSSE3()
344 void RGB565ToARGBRow_SSE2(const uint8* src, uint8* dst, int pix) { in RGB565ToARGBRow_SSE2()
392 void ARGB1555ToARGBRow_SSE2(const uint8* src, uint8* dst, int pix) { in ARGB1555ToARGBRow_SSE2()
443 void ARGB4444ToARGBRow_SSE2(const uint8* src, uint8* dst, int pix) { in ARGB4444ToARGBRow_SSE2()
481 void ARGBToRGB24Row_SSSE3(const uint8* src, uint8* dst, int pix) { in ARGBToRGB24Row_SSSE3()
519 void ARGBToRAWRow_SSSE3(const uint8* src, uint8* dst, int pix) { in ARGBToRAWRow_SSSE3()
557 void ARGBToRGB565Row_SSE2(const uint8* src, uint8* dst, int pix) { in ARGBToRGB565Row_SSE2()
[all …]
Dconvert.cc31 static int I4xxToI420(const uint8* src_y, int src_stride_y, in I4xxToI420()
32 const uint8* src_u, int src_stride_u, in I4xxToI420()
33 const uint8* src_v, int src_stride_v, in I4xxToI420()
34 uint8* dst_y, int dst_stride_y, in I4xxToI420()
35 uint8* dst_u, int dst_stride_u, in I4xxToI420()
36 uint8* dst_v, int dst_stride_v, in I4xxToI420()
63 int I420Copy(const uint8* src_y, int src_stride_y, in I420Copy()
64 const uint8* src_u, int src_stride_u, in I420Copy()
65 const uint8* src_v, int src_stride_v, in I420Copy()
66 uint8* dst_y, int dst_stride_y, in I420Copy()
[all …]
Dconvert_from.cc33 static int I420ToI4xx(const uint8* src_y, int src_stride_y, in I420ToI4xx()
34 const uint8* src_u, int src_stride_u, in I420ToI4xx()
35 const uint8* src_v, int src_stride_v, in I420ToI4xx()
36 uint8* dst_y, int dst_stride_y, in I420ToI4xx()
37 uint8* dst_u, int dst_stride_u, in I420ToI4xx()
38 uint8* dst_v, int dst_stride_v, in I420ToI4xx()
64 int I420ToI422(const uint8* src_y, int src_stride_y, in I420ToI422()
65 const uint8* src_u, int src_stride_u, in I420ToI422()
66 const uint8* src_v, int src_stride_v, in I420ToI422()
67 uint8* dst_y, int dst_stride_y, in I420ToI422()
[all …]
Dscale_neon.cc26 void ScaleRowDown2_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2_NEON()
27 uint8* dst, int dst_width) { in ScaleRowDown2_NEON()
47 void ScaleRowDown2Linear_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2Linear_NEON()
48 uint8* dst, int dst_width) { in ScaleRowDown2Linear_NEON()
71 void ScaleRowDown2Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2Box_NEON()
72 uint8* dst, int dst_width) { in ScaleRowDown2Box_NEON()
101 void ScaleRowDown4_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown4_NEON()
102 uint8* dst_ptr, int dst_width) { in ScaleRowDown4_NEON()
120 void ScaleRowDown4Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown4Box_NEON()
121 uint8* dst_ptr, int dst_width) { in ScaleRowDown4Box_NEON()
[all …]
Dscale_neon64.cc24 void ScaleRowDown2_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2_NEON()
25 uint8* dst, int dst_width) { in ScaleRowDown2_NEON()
44 void ScaleRowDown2Linear_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2Linear_NEON()
45 uint8* dst, int dst_width) { in ScaleRowDown2Linear_NEON()
67 void ScaleRowDown2Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2Box_NEON()
68 uint8* dst, int dst_width) { in ScaleRowDown2Box_NEON()
96 void ScaleRowDown4_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown4_NEON()
97 uint8* dst_ptr, int dst_width) { in ScaleRowDown4_NEON()
114 void ScaleRowDown4Box_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown4Box_NEON()
115 uint8* dst_ptr, int dst_width) { in ScaleRowDown4Box_NEON()
[all …]
Dplanar_functions.cc28 void CopyPlane(const uint8* src_y, int src_stride_y, in CopyPlane()
29 uint8* dst_y, int dst_stride_y, in CopyPlane()
32 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in CopyPlane()
122 int I422Copy(const uint8* src_y, int src_stride_y, in I422Copy()
123 const uint8* src_u, int src_stride_u, in I422Copy()
124 const uint8* src_v, int src_stride_v, in I422Copy()
125 uint8* dst_y, int dst_stride_y, in I422Copy()
126 uint8* dst_u, int dst_stride_u, in I422Copy()
127 uint8* dst_v, int dst_stride_v, in I422Copy()
153 int I444Copy(const uint8* src_y, int src_stride_y, in I444Copy()
[all …]
Dconvert_argb.cc28 int ARGBCopy(const uint8* src_argb, int src_stride_argb, in ARGBCopy()
29 uint8* dst_argb, int dst_stride_argb, in ARGBCopy()
49 int I444ToARGB(const uint8* src_y, int src_stride_y, in I444ToARGB()
50 const uint8* src_u, int src_stride_u, in I444ToARGB()
51 const uint8* src_v, int src_stride_v, in I444ToARGB()
52 uint8* dst_argb, int dst_stride_argb, in I444ToARGB()
55 void (*I444ToARGBRow)(const uint8* y_buf, in I444ToARGB()
56 const uint8* u_buf, in I444ToARGB()
57 const uint8* v_buf, in I444ToARGB()
58 uint8* rgb_buf, in I444ToARGB()
[all …]
Dconvert_from_argb.cc25 int ARGBToI444(const uint8* src_argb, int src_stride_argb, in ARGBToI444()
26 uint8* dst_y, int dst_stride_y, in ARGBToI444()
27 uint8* dst_u, int dst_stride_u, in ARGBToI444()
28 uint8* dst_v, int dst_stride_v, in ARGBToI444()
31 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444()
33 void (*ARGBToUV444Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToI444()
106 int ARGBToI422(const uint8* src_argb, int src_stride_argb, in ARGBToI422()
107 uint8* dst_y, int dst_stride_y, in ARGBToI422()
108 uint8* dst_u, int dst_stride_u, in ARGBToI422()
109 uint8* dst_v, int dst_stride_v, in ARGBToI422()
[all …]
Drow_mips.cc23 void CopyRow_MIPS(const uint8* src, uint8* dst, int count) { in CopyRow_MIPS()
383 void SplitUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, in SplitUVRow_MIPS_DSPR2()
450 void MirrorRow_MIPS_DSPR2(const uint8* src, uint8* dst, int width) { in MirrorRow_MIPS_DSPR2()
501 void MirrorUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, in MirrorUVRow_MIPS_DSPR2()
658 void I422ToARGBRow_MIPS_DSPR2(const uint8* y_buf, in I422ToARGBRow_MIPS_DSPR2()
659 const uint8* u_buf, in I422ToARGBRow_MIPS_DSPR2()
660 const uint8* v_buf, in I422ToARGBRow_MIPS_DSPR2()
661 uint8* rgb_buf, in I422ToARGBRow_MIPS_DSPR2()
720 void I422ToABGRRow_MIPS_DSPR2(const uint8* y_buf, in I422ToABGRRow_MIPS_DSPR2()
721 const uint8* u_buf, in I422ToABGRRow_MIPS_DSPR2()
[all …]
Dscale_mips.cc24 void ScaleRowDown2_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2_MIPS_DSPR2()
25 uint8* dst, int dst_width) { in ScaleRowDown2_MIPS_DSPR2()
81 void ScaleRowDown2Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2Box_MIPS_DSPR2()
82 uint8* dst, int dst_width) { in ScaleRowDown2Box_MIPS_DSPR2()
83 const uint8* t = src_ptr + src_stride; in ScaleRowDown2Box_MIPS_DSPR2()
181 void ScaleRowDown4_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown4_MIPS_DSPR2()
182 uint8* dst, int dst_width) { in ScaleRowDown4_MIPS_DSPR2()
237 void ScaleRowDown4Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown4Box_MIPS_DSPR2()
238 uint8* dst, int dst_width) { in ScaleRowDown4Box_MIPS_DSPR2()
240 const uint8* s1 = src_ptr + stride; in ScaleRowDown4Box_MIPS_DSPR2()
[all …]
/external/protobuf/src/google/protobuf/
Dwire_format_lite.h280 PROTOBUF_ALWAYS_INLINE static const uint8* ReadPrimitiveFromArray(
281 const uint8* buffer, CType* value);
462 PROTOBUF_ALWAYS_INLINE static uint8* WriteTagToArray(int field_number,
464 uint8* target);
467 PROTOBUF_ALWAYS_INLINE static uint8* WriteInt32NoTagToArray(int32 value,
468 uint8* target);
469 PROTOBUF_ALWAYS_INLINE static uint8* WriteInt64NoTagToArray(int64 value,
470 uint8* target);
471 PROTOBUF_ALWAYS_INLINE static uint8* WriteUInt32NoTagToArray(uint32 value,
472 uint8* target);
[all …]
/external/libusb/libusb/os/
Dhaiku_usb.h39 uint8 CountConfigurations() const;
41 const usb_configuration_descriptor* ConfigurationDescriptor(uint8) const;
43 uint8 EndpointToIndex(uint8) const;
44 uint8 EndpointToInterface(uint8) const;
45 int ClaimInterface(uint8);
46 int ReleaseInterface(uint8);
47 int CheckInterfacesFree(uint8);
48 void SetActiveConfiguration(uint8);
49 uint8 ActiveConfigurationIndex() const;
56 uint8 fActiveConfiguration;
[all …]

12345678910>>...40