HomeSort by relevance Sort by last modified time
    Searched refs:uint8 (Results 1 - 25 of 974) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libaom/libaom/third_party/libyuv/include/libyuv/
row.h 28 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]
    [all...]
rotate.h 37 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...]
convert_from_argb.h 25 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...]
scale_row.h 91 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)
    [all...]
convert_argb.h 36 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...]
convert.h 28 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...]
compare.h 24 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...]
convert_from.h 28 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...]
planar_functions.h 28 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...]
rotate_row.h 93 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...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_evaluator_typed_visitor_uint8.cc 21 template class HloEvaluatorTypedVisitor<uint8>;
  /external/libyuv/files/include/libyuv/
row.h 26 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]
    [all...]
rotate.h 36 int I420Rotate(const uint8* src_y,
38 const uint8* src_u,
40 const uint8* src_v,
42 uint8* dst_y,
44 uint8* dst_u,
46 uint8* dst_v,
54 int NV12ToI420Rotate(const uint8* src_y,
56 const uint8* src_uv,
58 uint8* dst_y,
60 uint8* dst_u
    [all...]
planar_functions.h 27 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...]
rotate_row.h 68 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...]
convert.h 30 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...]
convert_from_argb.h 24 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...]
convert_argb.h 33 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_abgr
    [all...]
convert_from.h 27 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...]
compare.h 23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed);
28 uint32 ARGBDetect(const uint8* argb, int stride_argb, int width, int height);
32 uint64 ComputeSumSquareError(const uint8* src_a, const uint8* src_b, int count);
35 uint64 ComputeSumSquareErrorPlane(const uint8* src_a,
37 const uint8* src_b,
48 double CalcFramePsnr(const uint8* src_a,
50 const uint8* src_b,
56 double I420Psnr(const uint8* src_y_a,
58 const uint8* src_u_a
    [all...]
scale_row.h 122 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...]
  /external/libyuv/files/util/
ssim.h 23 typedef unsigned char uint8; typedef
27 double CalcSSIM(const uint8* org,
28 const uint8* rec,
  /external/libtextclassifier/lang_id/script/
approx-script-data.cc     [all...]
approx-script-data.h 46 // kNumRanges, the range #i has the script kRangeScript[i]. Each uint8 element
51 // (due to USCRIPT_INVALID_CODE = -1). uint8 is enough for us (and shorter!)
52 extern const uint8 kRangeScript[];
57 extern const uint8 kMaxScript;
  /external/libaom/libaom/third_party/libyuv/source/
rotate_gcc.cc 24 void TransposeWx8_SSSE3(const uint8* src, int src_stride,
25 uint8* dst, int dst_stride, int width) {
110 void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
111 uint8* dst_a, int dst_stride_a,
112 uint8* dst_b, int dst_stride_b, int width);
239 void TransposeWx8_Fast_SSSE3(const uint8* src, int src_stride,
240 uint8* dst, int dst_stride, int width) {
377 void TransposeUVWx8_SSE2(const uint8* src, int src_stride,
378 uint8* dst_a, int dst_stride_a,
379 uint8* dst_b, int dst_stride_b, int width)
    [all...]

Completed in 728 milliseconds

1 2 3 4 5 6 7 8 91011>>