Home
last modified time | relevance | path

Searched full:width (Results 1 – 25 of 5523) sorted by relevance

12345678910>>...221

/kernel/linux/linux-4.19/Documentation/media/
Dtypical_media_device.svg2width="235mm" height="179mm" clip-path="url(#a)" fill-rule="evenodd" stroke-linejoin="round" strok…
12 …979.49-840.89v420.03h2960.5v-420.03z" fill="none" stroke="#3465af" stroke-width="25.77" style=""/>…
34width="28.432" style=""/><path id="path417" d="m776.87 644.14c-17.255 2.9998-35.525 6.9996-52.78 1…
35width="28.432" style=""/><path id="path429" d="m357.68 927.13c-10.15 13.999-19.285 28.998-28.42 44…
36width="28.432" style=""/><path id="path443" d="m254.15 1504.1v52.997" fill="none" stroke="#3465af"…
37width="28.432" style=""/><path id="path461" d="m254.15 2273v52.997" fill="none" stroke="#3465af" s…
38width="28.432" style=""/><path id="path477" d="m254.15 2956v52.997" fill="none" stroke="#3465af" s…
39width="28.432" style=""/><path id="path495" d="m262.27 3724c4.06 17.999 8.12 34.998 13.195 51.997"…
40width="28.432" style=""/><path id="path507" d="m552.56 4135.9c14.21 9.9994 29.435 18.999 45.675 26…
41width="28.432" style=""/><path id="path521" d="m1138.2 4235.9h53.795" fill="none" stroke="#3465af"…
[all …]
/kernel/linux/linux-5.10/Documentation/userspace-api/media/
Dtypical_media_device.svg3width="235mm" height="179mm" clip-path="url(#a)" fill-rule="evenodd" stroke-linejoin="round" strok…
13 …979.49-840.89v420.03h2960.5v-420.03z" fill="none" stroke="#3465af" stroke-width="25.77" style=""/>…
35width="28.432" style=""/><path id="path417" d="m776.87 644.14c-17.255 2.9998-35.525 6.9996-52.78 1…
36width="28.432" style=""/><path id="path429" d="m357.68 927.13c-10.15 13.999-19.285 28.998-28.42 44…
37width="28.432" style=""/><path id="path443" d="m254.15 1504.1v52.997" fill="none" stroke="#3465af"…
38width="28.432" style=""/><path id="path461" d="m254.15 2273v52.997" fill="none" stroke="#3465af" s…
39width="28.432" style=""/><path id="path477" d="m254.15 2956v52.997" fill="none" stroke="#3465af" s…
40width="28.432" style=""/><path id="path495" d="m262.27 3724c4.06 17.999 8.12 34.998 13.195 51.997"…
41width="28.432" style=""/><path id="path507" d="m552.56 4135.9c14.21 9.9994 29.435 18.999 45.675 26…
42width="28.432" style=""/><path id="path521" d="m1138.2 4235.9h53.795" fill="none" stroke="#3465af"…
[all …]
/kernel/linux/linux-4.19/drivers/media/platform/omap/
Domap_voutlib.c46 crop->width = (pix->width < fbuf->fmt.width) ? in omap_vout_default_crop()
47 pix->width : fbuf->fmt.width; in omap_vout_default_crop()
50 crop->width &= ~1; in omap_vout_default_crop()
52 crop->left = ((pix->width - crop->width) >> 1) & ~1; in omap_vout_default_crop()
75 try_win.width += try_win.left; in omap_vout_try_window()
82 try_win.width = (try_win.width < fbuf->fmt.width) ? in omap_vout_try_window()
83 try_win.width : fbuf->fmt.width; in omap_vout_try_window()
86 if (try_win.left + try_win.width > fbuf->fmt.width) in omap_vout_try_window()
87 try_win.width = fbuf->fmt.width - try_win.left; in omap_vout_try_window()
90 try_win.width &= ~1; in omap_vout_try_window()
[all …]
/kernel/linux/linux-5.10/drivers/media/platform/omap/
Domap_voutlib.c46 crop->width = (pix->width < fbuf->fmt.width) ? in omap_vout_default_crop()
47 pix->width : fbuf->fmt.width; in omap_vout_default_crop()
50 crop->width &= ~1; in omap_vout_default_crop()
52 crop->left = ((pix->width - crop->width) >> 1) & ~1; in omap_vout_default_crop()
75 try_win.width += try_win.left; in omap_vout_try_window()
82 try_win.width = (try_win.width < fbuf->fmt.width) ? in omap_vout_try_window()
83 try_win.width : fbuf->fmt.width; in omap_vout_try_window()
86 if (try_win.left + try_win.width > fbuf->fmt.width) in omap_vout_try_window()
87 try_win.width = fbuf->fmt.width - try_win.left; in omap_vout_try_window()
90 try_win.width &= ~1; in omap_vout_try_window()
[all …]
/kernel/linux/linux-4.19/include/media/
Dv4l2-rect.h14 * v4l2_rect_set_size_to() - copy the width/height values.
15 * @r: rect whose width and height fields will be set
16 * @size: rect containing the width and height fields you need.
21 r->width = size->width; in v4l2_rect_set_size_to()
26 * v4l2_rect_set_min_size() - width and height of r should be >= min_size.
27 * @r: rect whose width and height will be modified
28 * @min_size: rect containing the minimal width and height
33 if (r->width < min_size->width) in v4l2_rect_set_min_size()
34 r->width = min_size->width; in v4l2_rect_set_min_size()
40 * v4l2_rect_set_max_size() - width and height of r should be <= max_size
[all …]
/kernel/linux/linux-5.10/include/media/
Dv4l2-rect.h14 * v4l2_rect_set_size_to() - copy the width/height values.
15 * @r: rect whose width and height fields will be set
16 * @size: rect containing the width and height fields you need.
21 r->width = size->width; in v4l2_rect_set_size_to()
26 * v4l2_rect_set_min_size() - width and height of r should be >= min_size.
27 * @r: rect whose width and height will be modified
28 * @min_size: rect containing the minimal width and height
33 if (r->width < min_size->width) in v4l2_rect_set_min_size()
34 r->width = min_size->width; in v4l2_rect_set_min_size()
40 * v4l2_rect_set_max_size() - width and height of r should be <= max_size
[all …]
/kernel/linux/linux-5.10/Documentation/input/
Dshape.svg1 <svg width="7.95in" height="3.70in" version="1.1" viewBox="1956 1041 9354.492 4306.001" xmlns="http…
2 …00 4200 3075 4950 2325 7425 2325 8250 3150 8250 3600" fill="none" stroke="#000" stroke-width="15"/>
3 …points="4200 3675 4200 5400" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
4 …points="8250 3675 8250 5400" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
5 …translate(-121.88 -68.4)" points="3675 3600 8700 3600" fill="none" stroke="#000" stroke-width="7"/>
6 …oints="8775 3600 10200 3600" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
7 …points="8325 3150 9075 3150" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
8 …oints="7500 2325 10200 2325" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
9 … points="3600 3600 3e3 3600" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
10 … points="4125 3075 3e3 3075" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
[all …]
Dinteractive.svg1 <svg width="5.75in" height="3.90in" version="1.1" viewBox="1178 3138 6779.9424 4671.3427" xmlns="ht…
2 …600 1800 3600 2400 4800 3e3 4800 4200 5700 4800 5700" fill="none" stroke="#000" stroke-width="15"/>
3 …<rect x="1181.5" y="3133.7" width="3600" height="3150" rx="0" fill="none" stroke="#000" stroke-wid…
4 …translate(-18.5,-16.294)" points="1200 4800 4800 4800" fill="none" stroke="#000" stroke-width="7"/>
5 …00 6525 1950 7125 1950 7800" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
6 …e3 6525 3600 7125 3600 7800" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
7 …-18.5,-16.294)" points="3837 5389 4125 5100 5400 5100" fill="none" stroke="#000" stroke-width="7"/>
8 …="3889 5292 3826 5398 3932 5334" fill="none" stroke="#000" stroke-miterlimit="8" stroke-width="7"/>
9 …-18.5,-16.294)" points="2112 4189 2400 3900 5400 3900" fill="none" stroke="#000" stroke-width="7"/>
10 …="2164 4092 2101 4198 2207 4134" fill="none" stroke="#000" stroke-miterlimit="8" stroke-width="7"/>
[all …]
/kernel/linux/linux-4.19/Documentation/input/
Dshape.svg1 <svg width="7.95in" height="3.70in" version="1.1" viewBox="1956 1041 9354.492 4306.001" xmlns="http…
2 …00 4200 3075 4950 2325 7425 2325 8250 3150 8250 3600" fill="none" stroke="#000" stroke-width="15"/>
3 …points="4200 3675 4200 5400" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
4 …points="8250 3675 8250 5400" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
5 …translate(-121.88 -68.4)" points="3675 3600 8700 3600" fill="none" stroke="#000" stroke-width="7"/>
6 …oints="8775 3600 10200 3600" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
7 …points="8325 3150 9075 3150" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
8 …oints="7500 2325 10200 2325" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
9 … points="3600 3600 3e3 3600" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
10 … points="4125 3075 3e3 3075" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
[all …]
Dinteractive.svg1 <svg width="5.75in" height="3.90in" version="1.1" viewBox="1178 3138 6779.9424 4671.3427" xmlns="ht…
2 …600 1800 3600 2400 4800 3e3 4800 4200 5700 4800 5700" fill="none" stroke="#000" stroke-width="15"/>
3 …<rect x="1181.5" y="3133.7" width="3600" height="3150" rx="0" fill="none" stroke="#000" stroke-wid…
4 …translate(-18.5,-16.294)" points="1200 4800 4800 4800" fill="none" stroke="#000" stroke-width="7"/>
5 …00 6525 1950 7125 1950 7800" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
6 …e3 6525 3600 7125 3600 7800" fill="none" stroke="#000" stroke-dasharray="40, 40" stroke-width="7"/>
7 …-18.5,-16.294)" points="3837 5389 4125 5100 5400 5100" fill="none" stroke="#000" stroke-width="7"/>
8 …="3889 5292 3826 5398 3932 5334" fill="none" stroke="#000" stroke-miterlimit="8" stroke-width="7"/>
9 …-18.5,-16.294)" points="2112 4189 2400 3900 5400 3900" fill="none" stroke="#000" stroke-width="7"/>
10 …="2164 4092 2101 4198 2207 4134" fill="none" stroke="#000" stroke-miterlimit="8" stroke-width="7"/>
[all …]
/kernel/linux/linux-4.19/drivers/media/platform/soc_camera/
Dsoc_scale_crop.c29 return r1->width < r2->width || r1->height < r2->height; in is_smaller()
36 r1->left + r1->width < r2->left + r2->width || in is_inside()
68 if (rect->width < subrect->width) in move_and_crop_subrect()
69 subrect->width = rect->width; in move_and_crop_subrect()
76 else if (rect->left + rect->width < in move_and_crop_subrect()
77 subrect->left + subrect->width) in move_and_crop_subrect()
78 subrect->left = rect->left + rect->width - in move_and_crop_subrect()
79 subrect->width; in move_and_crop_subrect()
112 unsigned int width, height; in soc_camera_client_s_selection() local
127 rect->width, rect->height, rect->left, rect->top); in soc_camera_client_s_selection()
[all …]
/kernel/linux/linux-4.19/Documentation/media/uapi/v4l/
Dsubdev-image-processing-full.svg10 width="58.825298cm"
40 inkscape:window-width="1920"
62 width="208.10001"
66 style="fill:none;fill-opacity:0;stroke:#ff765a;stroke-width:2"
69 width="208.10001"
74 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
77 width="806"
90 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
96 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
112 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
[all …]
/kernel/linux/linux-5.10/drivers/video/fbdev/core/
Dfbcon_ccw.c29 int width = (vc->vc_font.height + 7) >> 3; in ccw_update_attr() local
39 for (i = 0; i < vc->vc_font.width; i++) { in ccw_update_attr()
40 for (j = 0; j < width; j++) { in ccw_update_attr()
44 if (j == width - 1) in ccw_update_attr()
47 if (msk1 && j == width - 2) in ccw_update_attr()
52 *(dst - width) |= c; in ccw_update_attr()
64 int sx, int dy, int dx, int height, int width) in ccw_bmove() argument
71 area.sy = vyres - ((sx + width) * vc->vc_font.width); in ccw_bmove()
73 area.dy = vyres - ((dx + width) * vc->vc_font.width); in ccw_bmove()
74 area.width = height * vc->vc_font.height; in ccw_bmove()
[all …]
Dfbcon_rotate.h40 static inline void rotate_ud(const char *in, char *out, u32 width, u32 height) in rotate_ud() argument
43 int shift = (8 - (width % 8)) & 7; in rotate_ud()
45 width = (width + 7) & ~7; in rotate_ud()
48 for (j = 0; j < width - shift; j++) { in rotate_ud()
49 if (pattern_test_bit(j, i, width, in)) in rotate_ud()
50 pattern_set_bit(width - (1 + j + shift), in rotate_ud()
52 width, out); in rotate_ud()
58 static inline void rotate_cw(const char *in, char *out, u32 width, u32 height) in rotate_cw() argument
60 int i, j, h = height, w = width; in rotate_cw()
63 width = (width + 7) & ~7; in rotate_cw()
[all …]
/kernel/linux/linux-4.19/drivers/video/fbdev/core/
Dfbcon_ccw.c29 int width = (vc->vc_font.height + 7) >> 3; in ccw_update_attr() local
39 for (i = 0; i < vc->vc_font.width; i++) { in ccw_update_attr()
40 for (j = 0; j < width; j++) { in ccw_update_attr()
44 if (j == width - 1) in ccw_update_attr()
47 if (msk1 && j == width - 2) in ccw_update_attr()
52 *(dst - width) |= c; in ccw_update_attr()
64 int sx, int dy, int dx, int height, int width) in ccw_bmove() argument
71 area.sy = vyres - ((sx + width) * vc->vc_font.width); in ccw_bmove()
73 area.dy = vyres - ((dx + width) * vc->vc_font.width); in ccw_bmove()
74 area.width = height * vc->vc_font.height; in ccw_bmove()
[all …]
Dfbcon_rotate.h40 static inline void rotate_ud(const char *in, char *out, u32 width, u32 height) in rotate_ud() argument
43 int shift = (8 - (width % 8)) & 7; in rotate_ud()
45 width = (width + 7) & ~7; in rotate_ud()
48 for (j = 0; j < width - shift; j++) { in rotate_ud()
49 if (pattern_test_bit(j, i, width, in)) in rotate_ud()
50 pattern_set_bit(width - (1 + j + shift), in rotate_ud()
52 width, out); in rotate_ud()
58 static inline void rotate_cw(const char *in, char *out, u32 width, u32 height) in rotate_cw() argument
60 int i, j, h = height, w = width; in rotate_cw()
63 width = (width + 7) & ~7; in rotate_cw()
[all …]
/kernel/linux/linux-5.10/Documentation/userspace-api/media/v4l/
Dsubdev-image-processing-full.svg11 width="58.825298cm"
41 inkscape:window-width="1920"
63 width="208.10001"
67 style="fill:none;fill-opacity:0;stroke:#ff765a;stroke-width:2"
70 width="208.10001"
75 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
78 width="806"
91 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
97 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
113 style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:2"
[all …]
/kernel/linux/linux-4.19/net/wireless/
Dchan.c28 chandef->width = NL80211_CHAN_WIDTH_20_NOHT; in cfg80211_chandef_create()
32 chandef->width = NL80211_CHAN_WIDTH_20; in cfg80211_chandef_create()
36 chandef->width = NL80211_CHAN_WIDTH_40; in cfg80211_chandef_create()
40 chandef->width = NL80211_CHAN_WIDTH_40; in cfg80211_chandef_create()
58 switch (chandef->width) { in cfg80211_chandef_valid()
123 switch (c->width) { in chandef_primary_freqs()
156 int width; in cfg80211_chandef_get_width() local
158 switch (c->width) { in cfg80211_chandef_get_width()
160 width = 5; in cfg80211_chandef_get_width()
163 width = 10; in cfg80211_chandef_get_width()
[all …]
/kernel/linux/linux-5.10/sound/core/
Dpcm_misc.c35 unsigned char width; /* bit width */ member
36 unsigned char phys; /* physical bit width */
52 .width = 8, .phys = 8, .le = -1, .signd = 1,
56 .width = 8, .phys = 8, .le = -1, .signd = 0,
60 .width = 16, .phys = 16, .le = 1, .signd = 1,
64 .width = 16, .phys = 16, .le = 0, .signd = 1,
68 .width = 16, .phys = 16, .le = 1, .signd = 0,
72 .width = 16, .phys = 16, .le = 0, .signd = 0,
76 .width = 24, .phys = 32, .le = 1, .signd = 1,
80 .width = 24, .phys = 32, .le = 0, .signd = 1,
[all …]
/kernel/linux/linux-4.19/sound/core/
Dpcm_misc.c35 unsigned char width; /* bit width */ member
36 unsigned char phys; /* physical bit width */
47 .width = 8, .phys = 8, .le = -1, .signd = 1,
51 .width = 8, .phys = 8, .le = -1, .signd = 0,
55 .width = 16, .phys = 16, .le = 1, .signd = 1,
59 .width = 16, .phys = 16, .le = 0, .signd = 1,
63 .width = 16, .phys = 16, .le = 1, .signd = 0,
67 .width = 16, .phys = 16, .le = 0, .signd = 0,
71 .width = 24, .phys = 32, .le = 1, .signd = 1,
75 .width = 24, .phys = 32, .le = 0, .signd = 1,
[all …]
/kernel/linux/linux-4.19/Documentation/RCU/Design/Data-Structures/
DBigTreePreemptRCUBHdyntick.svg16 width="6.1in"
47 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"
60 inkscape:window-width="874"
72 style="stroke-width:.025in; fill:none"
78 width="6300"
81 … style="stroke:#000000;stroke-width:30; stroke-linejoin:miter; stroke-linecap:butt; fill:#ffffff; "
87 width="5700"
90 … style="stroke:#000000;stroke-width:30; stroke-linejoin:miter; stroke-linecap:butt; fill:#ffff00; "
96 width="1500"
99 … style="stroke:#000000;stroke-width:30; stroke-linejoin:miter; stroke-linecap:butt; fill:#87cfff; "
[all …]
/kernel/linux/linux-4.19/Documentation/RCU/Design/Memory-Ordering/
DTreeRCU-gp-cleanup.svg16 width="1026.1281"
47 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
61 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
75 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
88 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
102 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
117 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
131 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
146 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
160 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
[all …]
DTreeRCU-gp.svg16 width="1626.5841"
47 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
61 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
75 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
88 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
102 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
117 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
131 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
146 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
160 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
[all …]
/kernel/linux/linux-5.10/Documentation/RCU/Design/Memory-Ordering/
DTreeRCU-gp-cleanup.svg16 width="1026.1281"
47 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
61 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
75 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
88 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
102 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
117 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
131 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
146 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
160 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
[all …]
DTreeRCU-gp.svg16 width="1626.5841"
47 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
61 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
75 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
88 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
102 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
117 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
131 style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
146 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
160 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
[all …]

12345678910>>...221