Home
last modified time | relevance | path

Searched refs:height (Results 1 – 25 of 6814) sorted by relevance

12345678910>>...273

/external/libaom/libaom/third_party/libyuv/source/
Dconvert_argb.cc30 int width, int height) { in ARGBCopy() argument
32 width <= 0 || height == 0) { in ARGBCopy()
36 if (height < 0) { in ARGBCopy()
37 height = -height; in ARGBCopy()
38 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBCopy()
43 width * 4, height); in ARGBCopy()
53 int width, int height) { in I444ToARGB() argument
62 width <= 0 || height == 0) { in I444ToARGB()
66 if (height < 0) { in I444ToARGB()
67 height = -height; in I444ToARGB()
[all …]
Dplanar_functions.cc30 int width, int height) { in CopyPlane() argument
36 width *= height; in CopyPlane()
37 height = 1; in CopyPlane()
71 for (y = 0; y < height; ++y) { in CopyPlane()
81 int width, int height) { in CopyPlane_16() argument
87 width *= height; in CopyPlane_16()
88 height = 1; in CopyPlane_16()
113 for (y = 0; y < height; ++y) { in CopyPlane_16()
128 int width, int height) { in I422Copy() argument
132 width <= 0 || height == 0) { in I422Copy()
[all …]
Dconvert_from.cc70 int width, int height) { in I420ToI422() argument
72 const int dst_uv_height = Abs(height); in I420ToI422()
79 width, height, in I420ToI422()
92 int width, int height) { in I420ToI444() argument
94 const int dst_uv_height = Abs(height); in I420ToI444()
101 width, height, in I420ToI444()
114 int width, int height) { in I420ToI411() argument
116 const int dst_uv_height = Abs(height); in I420ToI411()
123 width, height, in I420ToI411()
131 int width, int height) { in I400Copy() argument
[all …]
Dconvert_from_argb.cc29 int width, int height) { in ARGBToI444() argument
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
38 if (height < 0) { in ARGBToI444()
39 height = -height; in ARGBToI444()
40 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
48 width *= height; in ARGBToI444()
49 height = 1; in ARGBToI444()
93 for (y = 0; y < height; ++y) { in ARGBToI444()
110 int width, int height) { in ARGBToI422() argument
116 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
[all …]
Drotate.cc27 int width, int height) { in TransposePlane() argument
28 int i = height; in TransposePlane()
79 int width, int height) { in RotatePlane90() argument
83 src += src_stride * (height - 1); in RotatePlane90()
85 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane90()
91 int width, int height) { in RotatePlane270() argument
97 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane270()
103 int width, int height) { in RotatePlane180() argument
106 const uint8* src_bot = src + src_stride * (height - 1); in RotatePlane180()
107 uint8* dst_bot = dst + dst_stride * (height - 1); in RotatePlane180()
[all …]
/external/mesa3d/src/util/format/
Du_format_bptc.c38 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_unpack_rgba_8unorm() argument
40 decompress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_unpack_rgba_8unorm()
48 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_pack_rgba_8unorm() argument
50 compress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_pack_rgba_8unorm()
58 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_unpack_rgba_float() argument
61 temp_block = malloc(width * height * 4 * sizeof(uint8_t)); in util_format_bptc_rgba_unorm_unpack_rgba_float()
62 decompress_rgba_unorm(width, height, in util_format_bptc_rgba_unorm_unpack_rgba_float()
68 width, height); in util_format_bptc_rgba_unorm_unpack_rgba_float()
75 unsigned width, unsigned height) in util_format_bptc_rgba_unorm_pack_rgba_float() argument
78 temp_block = malloc(width * height * 4 * sizeof(uint8_t)); in util_format_bptc_rgba_unorm_pack_rgba_float()
[all …]
Du_format_zs.h37 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
41 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
45 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
49 …, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height);
53 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
57 …nsigned dst_stride, const uint32_t *src_row, unsigned src_stride, unsigned width, unsigned height);
61 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
65 …, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height);
69 …unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
73 …nsigned dst_stride, const uint32_t *src_row, unsigned src_stride, unsigned width, unsigned height);
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_argb.cc34 int height) { in ARGBCopy() argument
35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy()
39 if (height < 0) { in ARGBCopy()
40 height = -height; in ARGBCopy()
41 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBCopy()
46 height); in ARGBCopy()
61 int height) { in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
71 if (height < 0) { in I420ToARGBMatrix()
72 height = -height; in I420ToARGBMatrix()
[all …]
Dplanar_functions.cc34 int height) { in CopyPlane() argument
38 if (height < 0) { in CopyPlane()
39 height = -height; in CopyPlane()
40 dst_y = dst_y + (height - 1) * dst_stride_y; in CopyPlane()
45 width *= height; in CopyPlane()
46 height = 1; in CopyPlane()
76 for (y = 0; y < height; ++y) { in CopyPlane()
91 int height) { in CopyPlane_16() argument
96 width *= height; in CopyPlane_16()
97 height = 1; in CopyPlane_16()
[all …]
Dconvert_from.cc83 int height) { in I420ToI010() argument
85 int halfheight = (height + 1) >> 1; in I420ToI010()
86 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420ToI010()
90 if (height < 0) { in I420ToI010()
91 height = -height; in I420ToI010()
92 halfheight = (height + 1) >> 1; in I420ToI010()
93 src_y = src_y + (height - 1) * src_stride_y; in I420ToI010()
103 height); in I420ToI010()
128 int height) { in I420ToI422() argument
130 const int dst_uv_height = Abs(height); in I420ToI422()
[all …]
Dconvert_from_argb.cc34 int height) { in ARGBToI444() argument
40 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
43 if (height < 0) { in ARGBToI444()
44 height = -height; in ARGBToI444()
45 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
51 width *= height; in ARGBToI444()
52 height = 1; in ARGBToI444()
112 for (y = 0; y < height; ++y) { in ARGBToI444()
134 int height) { in ARGBToI422() argument
141 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
[all …]
/external/libyuv/files/source/
Dconvert_argb.cc34 int height) { in ARGBCopy() argument
35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy()
39 if (height < 0) { in ARGBCopy()
40 height = -height; in ARGBCopy()
41 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBCopy()
46 height); in ARGBCopy()
61 int height) { in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
71 if (height < 0) { in I420ToARGBMatrix()
72 height = -height; in I420ToARGBMatrix()
[all …]
Dplanar_functions.cc34 int height) { in CopyPlane() argument
38 if (height < 0) { in CopyPlane()
39 height = -height; in CopyPlane()
40 dst_y = dst_y + (height - 1) * dst_stride_y; in CopyPlane()
45 width *= height; in CopyPlane()
46 height = 1; in CopyPlane()
76 for (y = 0; y < height; ++y) { in CopyPlane()
91 int height) { in CopyPlane_16() argument
96 width *= height; in CopyPlane_16()
97 height = 1; in CopyPlane_16()
[all …]
Dconvert_from.cc83 int height) { in I420ToI010() argument
85 int halfheight = (height + 1) >> 1; in I420ToI010()
86 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420ToI010()
90 if (height < 0) { in I420ToI010()
91 height = -height; in I420ToI010()
92 halfheight = (height + 1) >> 1; in I420ToI010()
93 src_y = src_y + (height - 1) * src_stride_y; in I420ToI010()
103 height); in I420ToI010()
128 int height) { in I420ToI422() argument
130 const int dst_uv_height = Abs(height); in I420ToI422()
[all …]
Drotate.cc30 int height) { in TransposePlane() argument
31 int i = height; in TransposePlane()
103 int height) { in RotatePlane90() argument
107 src += src_stride * (height - 1); in RotatePlane90()
109 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane90()
118 int height) { in RotatePlane270() argument
124 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane270()
133 int height) { in RotatePlane180() argument
136 const uint8_t* src_bot = src + src_stride * (height - 1); in RotatePlane180()
137 uint8_t* dst_bot = dst + dst_stride * (height - 1); in RotatePlane180()
[all …]
Dconvert_from_argb.cc34 int height) { in ARGBToI444() argument
40 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
43 if (height < 0) { in ARGBToI444()
44 height = -height; in ARGBToI444()
45 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
51 width *= height; in ARGBToI444()
52 height = 1; in ARGBToI444()
128 for (y = 0; y < height; ++y) { in ARGBToI444()
150 int height) { in ARGBToI422() argument
157 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
[all …]
/external/libaom/libaom/test/
Dsum_squares_test.cc42 int height);
62 void GenRandomData(int width, int height, int stride) { in GenRandomData() argument
65 for (int ii = 0; ii < height; ii++) { in GenRandomData()
72 void GenExtremeData(int width, int height, int stride) { in GenExtremeData() argument
76 for (int ii = 0; ii < height; ii++) { in GenExtremeData()
93 const int height = 4 * (rnd_(31) + 1); // Up to 128x128 in RunTest() local
99 GenRandomData(width, height, stride); in RunTest()
101 GenExtremeData(width, height, stride); in RunTest()
103 const uint64_t res_ref = params_.ref_func(src_, stride, width, height); in RunTest()
106 params_.tst_func(src_, stride, width, height)); in RunTest()
[all …]
/external/tensorflow/tensorflow/compiler/xla/
Darray4d.h60 Array4D(int64 planes, int64 depth, int64 height, int64 width) in Array4D() argument
61 : Array<T>(std::vector<int64>{planes, depth, height, width}) {} in Array4D()
64 Array4D(int64 planes, int64 depth, int64 height, int64 width, T value) in Array4D() argument
65 : Array<T>(std::vector<int64>{planes, depth, height, width}, value) {} in Array4D()
73 Array4D(int64 planes, int64 depth, int64 height, int64 width, in Array4D() argument
75 : Array4D(planes, depth, height, width) { in Array4D()
106 int64 height() const { return this->dim(2); } in height() function
112 CHECK_EQ(value.height(), height()); in FillWithYX()
116 for (int64 height = 0; height < this->height(); ++height) { in FillWithYX() local
118 (*this)(plane, depth, height, width) = value(height, width); in FillWithYX()
[all …]
/external/rust/crates/plotters/plotters-doc-data/
Devcxr-jupyter-integration.ipynb108 …"<rect fill=\"#0000FF\" height=\"10\" opacity=\"1\" stroke=\"none\" width=\"300\" x=\"0\" y=\"0\"/…
149 …"<rect fill=\"#00FF00\" height=\"50\" opacity=\"1\" stroke=\"none\" width=\"320\" x=\"0\" y=\"0\"/…
196 …"<rect fill=\"#000000\" height=\"4800\" opacity=\"1\" stroke=\"none\" width=\"4800\" x=\"0\" y=\"0…
197 …"<rect fill=\"#FFFFFF\" height=\"20\" opacity=\"1\" stroke=\"none\" width=\"20\" x=\"21\" y=\"21\"…
198 …"<rect fill=\"#FFFFFF\" height=\"20\" opacity=\"1\" stroke=\"none\" width=\"19\" x=\"79\" y=\"21\"…
199 …"<rect fill=\"#FFFFFF\" height=\"20\" opacity=\"1\" stroke=\"none\" width=\"19\" x=\"138\" y=\"21\…
200 …"<rect fill=\"#FFFFFF\" height=\"19\" opacity=\"1\" stroke=\"none\" width=\"20\" x=\"21\" y=\"79\"…
201 …"<rect fill=\"#FFFFFF\" height=\"59\" opacity=\"1\" stroke=\"none\" width=\"59\" x=\"60\" y=\"60\"…
202 …"<rect fill=\"#FFFFFF\" height=\"19\" opacity=\"1\" stroke=\"none\" width=\"19\" x=\"138\" y=\"79\…
203 …"<rect fill=\"#FFFFFF\" height=\"19\" opacity=\"1\" stroke=\"none\" width=\"20\" x=\"21\" y=\"138\…
[all …]
/external/libkmsxx/py/tests/
Dtrans-test.py58 stepY = fb.height // 5;
60 pykms.draw_rect(fb, 0, 0, fb.width, fb.height, pykms.purple)
62 stepX, fb.height - (stepY * 2),
65 stepX, fb.height - (stepY * 2),
68 stepX, fb.height - (stepY * 2),
73 fb.width, fb.height,
75 pykms.draw_circle(fb, (stepX * 3) + (stepX // 2), fb.height // 2,
76 (fb.height // 2) - stepY,
96 "SRC_H": fb.height << 16,
98 "CRTC_H": fb.height,
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dplanar_functions.h50 int height);
58 int height);
67 int height);
76 int height);
83 int height,
95 int height);
106 int height);
119 int height);
132 int height);
141 int height);
[all …]
/external/skia/src/gpu/
DGrRectanizerPow2.cpp10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { in addRect() argument
12 (unsigned)height > (unsigned)this->height()) { in addRect()
16 int32_t area = width * height; // computed here since height will be modified in addRect()
18 height = GrNextPow2(height); in addRect()
19 if (height < kMIN_HEIGHT_POW2) { in addRect()
20 height = kMIN_HEIGHT_POW2; in addRect()
23 Row* row = &fRows[HeightToRowIndex(height)]; in addRect()
24 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height); in addRect()
27 if (!this->canAddStrip(height)) { in addRect()
30 this->initRow(row, height); in addRect()
[all …]
/external/skqp/src/gpu/
DGrRectanizer_pow2.cpp10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { in addRect() argument
12 (unsigned)height > (unsigned)this->height()) { in addRect()
16 int32_t area = width * height; // computed here since height will be modified in addRect()
18 height = GrNextPow2(height); in addRect()
19 if (height < kMIN_HEIGHT_POW2) { in addRect()
20 height = kMIN_HEIGHT_POW2; in addRect()
23 Row* row = &fRows[HeightToRowIndex(height)]; in addRect()
24 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height); in addRect()
27 if (!this->canAddStrip(height)) { in addRect()
30 this->initRow(row, height); in addRect()
[all …]
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dplanar_functions.h30 int width, int height);
35 int width, int height);
40 int width, int height,
47 int width, int height);
60 int width, int height);
71 int width, int height);
79 int width, int height);
87 int width, int height);
93 int width, int height);
99 int width, int height);
[all …]
/external/libyuv/files/include/libyuv/
Dplanar_functions.h50 int height);
58 int height);
67 int height);
76 int height);
83 int height,
95 int height);
106 int height);
119 int height);
132 int height);
141 int height);
[all …]

12345678910>>...273