Home
last modified time | relevance | path

Searched full:height (Results 1 – 25 of 8903) sorted by relevance

12345678910>>...357

/external/libvpx/libvpx/third_party/libyuv/source/
Dplanar_functions.cc34 int height) { in CopyPlane() argument
37 // Negative height means invert the image. in CopyPlane()
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()
83 // TODO(fbarchard): Consider support for negative height.
91 int height) { in CopyPlane_16() argument
[all …]
Dconvert_argb.cc34 int height) { in ARGBCopy() argument
35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy()
38 // Negative height means invert the image. 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()
70 // Negative height means invert the image. in I420ToARGBMatrix()
[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()
89 // Negative height means invert the image. 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()
112 // 420 chroma is 1/2 width, 1/2 height
[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 …]
Dconvert.cc82 int height) { in I420Copy() argument
84 int halfheight = (height + 1) >> 1; in I420Copy()
85 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420Copy()
88 // Negative height means invert the image. in I420Copy()
89 if (height < 0) { in I420Copy()
90 height = -height; in I420Copy()
91 halfheight = (height + 1) >> 1; in I420Copy()
92 src_y = src_y + (height - 1) * src_stride_y; in I420Copy()
101 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
124 int height) { in I010Copy() argument
[all …]
/external/libaom/libaom/third_party/libyuv/source/
Dconvert_argb.cc30 int width, int height) { in ARGBCopy() argument
32 width <= 0 || height == 0) { in ARGBCopy()
35 // Negative height means invert the image. 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()
65 // Negative height means invert the image. 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.cc61 // 420 chroma is 1/2 width, 1/2 height
62 // 422 chroma is 1/2 width, 1x height
70 int width, int height) { in I420ToI422() argument
72 const int dst_uv_height = Abs(height); in I420ToI422()
79 width, height, in I420ToI422()
83 // 420 chroma is 1/2 width, 1/2 height
84 // 444 chroma is 1x width, 1x height
92 int width, int height) { in I420ToI444() argument
94 const int dst_uv_height = Abs(height); in I420ToI444()
101 width, height, in I420ToI444()
[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 …]
Dconvert.cc69 int width, int height) { in I420Copy() argument
71 int halfheight = (height + 1) >> 1; in I420Copy()
74 width <= 0 || height == 0) { in I420Copy()
77 // Negative height means invert the image. in I420Copy()
78 if (height < 0) { in I420Copy()
79 height = -height; in I420Copy()
80 halfheight = (height + 1) >> 1; in I420Copy()
81 src_y = src_y + (height - 1) * src_stride_y; in I420Copy()
90 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
98 // 422 chroma is 1/2 width, 1x height
[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()
38 // Negative height means invert the image. 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()
70 // Negative height means invert the image. in I420ToARGBMatrix()
[all …]
Dplanar_functions.cc34 int height) { in CopyPlane() argument
37 // Negative height means invert the image. in CopyPlane()
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()
83 // TODO(fbarchard): Consider support for negative height.
91 int height) { in CopyPlane_16() argument
[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()
89 // Negative height means invert the image. 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()
112 // 420 chroma is 1/2 width, 1/2 height
[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.cc82 int height) { in I420Copy() argument
84 int halfheight = (height + 1) >> 1; in I420Copy()
85 if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) { in I420Copy()
88 // Negative height means invert the image. in I420Copy()
89 if (height < 0) { in I420Copy()
90 height = -height; in I420Copy()
91 halfheight = (height + 1) >> 1; in I420Copy()
92 src_y = src_y + (height - 1) * src_stride_y; in I420Copy()
101 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
124 int height) { in I010Copy() argument
[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/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 …]
Devcxr-jupyter-integration.html61 height: 0;
98 line-height: 0;
119 height: 0;
164 line-height: normal;
173 height: auto;
289 line-height: 1;
459 .glyphicon-text-height:before {
1098 line-height: 1.42857143;
1108 line-height: inherit;
1136 height: auto;
[all …]
/external/python/cpython3/Tools/msi/bundle/
DDefault.thm3 <Window Width="670" Height="412" HexStyle="100a0000" FontId="0">#(loc.Caption)</Window>
4 <Font Id="0" Height="-14" Weight="500" Foreground="000000" Background="ffffff">Segoe UI</Font>
5 <Font Id="1" Height="-26" Weight="500" Foreground="000000" Background="ffffff">Segoe UI</Font>
6 <Font Id="2" Height="-24" Weight="500" Foreground="808080" Background="ffffff">Segoe UI</Font>
7 <Font Id="3" Height="-14" Weight="500" Foreground="000000" Background="ffffff">Segoe UI</Font>
8 …<Font Id="4" Height="-14" Weight="500" Foreground="ff0000" Background="ffffff" Underline="yes">Seg…
9 <Font Id="5" Height="-14" Weight="500" Foreground="808080" Background="ffffff">Segoe UI</Font>
12 …<Text X="185" Y="11" Width="-11" Height="36" FontId="1" DisablePrefix="yes">#(loc.HelpHeader)</Tex…
13 <Image X="0" Y="0" Width="178" Height="382" ImageFile="SideBar.png"/>
15 …<Hypertext X="185" Y="50" Width="-11" Height="-35" FontId="3" DisablePrefix="yes">#(loc.HelpText)<…
[all …]
/external/llvm-project/llvm/docs/
Dloop-separate.svg2 <svg width="540pt" height="456.35pt" version="1.1" viewBox="0 0 540 456.35" xmlns="http://www.w3.or…
140 <use x="274.88388" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/>
141 <use x="292.62811" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/>
142 <use x="318.24506" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/>
146 <use x="162.13281" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-1"/>
147 <use x="169.35559" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-2"/>
148 <use x="176.57835" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-3"/>
149 <use x="183.8134" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-4"/>
150 <use x="191.03618" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-5"/>
151 <use x="198.25894" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-6"/>
[all …]
Dloop-merge.svg2 <svg width="540pt" height="370.24pt" version="1.1" viewBox="0 0 540 370.24" xmlns="http://www.w3.or…
140 <use x="276.50989" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/>
141 <use x="293.32669" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/>
142 <use x="317.60468" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/>
146 <use x="238.96875" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-1"/>
147 <use x="245.81401" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-2"/>
148 <use x="252.65927" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-3"/>
149 <use x="259.51614" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-4"/>
150 <use x="266.36139" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-5"/>
151 <use x="273.20667" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-6"/>
[all …]
/external/angle/src/image_util/
Dloadimage.h19 size_t height,
29 size_t height,
39 size_t height,
49 size_t height,
59 size_t height,
69 size_t height,
79 size_t height,
89 size_t height,
99 size_t height,
109 size_t height,
[all …]
/external/mesa3d/src/util/format/
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 …]
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 …]
/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 …]

12345678910>>...357