Home
last modified time | relevance | path

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

12345678910>>...70

/openbmc/openbmc/poky/meta/recipes-kernel/systemtap/systemtap/
H A D0001-staprun-address-ncurses-6.3-failures.patch20 - width[p_index], HIGHLIGHT("index", p_index, comp_fn_index),
21 - width[p_state], HIGHLIGHT("state", p_state, comp_fn_index),
22 - width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index),
23 - width[p_min], HIGHLIGHT("min", p_min, comp_fn_index),
24 - width[p_avg], HIGHLIGHT("avg", p_avg, comp_fn_index),
25 - width[p_max], HIGHLIGHT("max", p_max, comp_fn_index),
26 + (int)width[p_index], HIGHLIGHT("index", p_index, comp_fn_index),
27 + (int)width[p_state], HIGHLIGHT("state", p_state, comp_fn_index),
28 + (int)width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index),
29 + (int)width[p_min], HIGHLIGHT("min", p_min, comp_fn_index),
[all …]
/openbmc/qemu/target/hexagon/mmvec/
H A Dmacros.h70 #define fGETQBITS(REG, WIDTH, MASK, BITNO) \ argument
96 #define fSETQBITS(REG, WIDTH, MASK, BITNO, VAL) \ argument
106 #define fVELEM(WIDTH) ((fVECSIZE() * 8) / WIDTH) argument
306 #define fVFOREACH(WIDTH, VAR) for (VAR = 0; VAR < fVELEM(WIDTH); VAR++) argument
313 #define fVUADDSAT(WIDTH, U, V) \ argument
314 fVSATUN(WIDTH, fZXTN(WIDTH, 2 * WIDTH, U) + fZXTN(WIDTH, 2 * WIDTH, V))
315 #define fVSADDSAT(WIDTH, U, V) \ argument
316 fVSATN(WIDTH, fSXTN(WIDTH, 2 * WIDTH, U) + fSXTN(WIDTH, 2 * WIDTH, V))
317 #define fVUSUBSAT(WIDTH, U, V) \ argument
318 fVSATUN(WIDTH, fZXTN(WIDTH, 2 * WIDTH, U) - fZXTN(WIDTH, 2 * WIDTH, V))
[all …]
/openbmc/phosphor-webui/app/access-control/styles/
H A Dcertificate.scss6 width: 100%;
13 width: 100%;
18 width: 18%;
21 width: 100%;
29 width: 18%;
36 width: 11%;
44 width: 5%;
52 width: auto;
59 width: 100%;
64 width: 18%;
[all …]
/openbmc/u-boot/drivers/clk/
H A Dclk_meson.h29 u8 width; member
32 #define PMASK(width) GENMASK(width - 1, 0) argument
33 #define SETPMASK(width, shift) GENMASK(shift + width - 1, shift) argument
34 #define CLRPMASK(width, shift) (~SETPMASK(width, shift)) argument
36 #define PARM_GET(width, shift, reg) \ argument
37 (((reg) & SETPMASK(width, shift)) >> (shift))
38 #define PARM_SET(width, shift, reg, val) \ argument
39 (((reg) & CLRPMASK(width, shift)) | ((val) << (shift)))
/openbmc/u-boot/tools/logos/
H A Du-boot_logo.svg14 width="186"
72 inkscape:window-width="1440"
89 style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0"
91 width="186"
96 style="fill:#004466;fill-opacity:1;stroke-width:0;stroke:none"
103 style="fill:#ffcc88;fill-opacity:1;stroke:none;stroke-width:0;stroke:none"
108 style="fill:#ffcc88;fill-opacity:1;stroke:none;stroke-width:0"
112 style="fill:#dd9955;fill-opacity:1;stroke:none;stroke-width:0"
119 style="fill:#dd9955;fill-opacity:1;stroke:none;stroke-width:0"
125 style="fill:#dd9955;fill-opacity:1;stroke:none;stroke-width:0"
[all …]
/openbmc/u-boot/arch/arm/mach-uniphier/
H A Dboards.c20 .width = 16,
24 .width = 16,
36 .width = 32,
40 .width = 32,
49 .width = 32,
53 .width = 32,
63 .width = 16,
67 .width = 16,
78 .width = 32,
82 .width = 32,
[all …]
/openbmc/qemu/python/qemu/utils/
H A D__init__.py63 width: Optional[int] = None,
81 ┃ predicting the total "visual" width of a line difficult. This
86 :param width:
88 itself. The default (None) uses the available width of the
90 subtracts a fixed-width from the default size. The default obeys
94 :param upper_left: Upper-left single-width text decoration character.
95 :param lower_left: Lower-left single-width text decoration character.
96 :param horizontal: Horizontal single-width text decoration character.
97 :param vertical: Vertical single-width text decoration character.
99 if width is None or width < 0:
[all …]
/openbmc/u-boot/scripts/kconfig/lxdialog/
H A Dyesno.c14 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument
16 int x = width / 2 - 10; in print_buttons()
29 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument
37 if (getmaxx(stdscr) < (width + YESNO_WIDTH_MIN)) in dialog_yesno()
41 x = (getmaxx(stdscr) - width) / 2; in dialog_yesno()
44 draw_shadow(stdscr, y, x, height, width); in dialog_yesno()
46 dialog = newwin(height, width, y, x); in dialog_yesno()
49 draw_box(dialog, 0, 0, height, width, in dialog_yesno()
53 for (i = 0; i < width - 2; i++) in dialog_yesno()
58 print_title(dialog, title, width); in dialog_yesno()
[all …]
/openbmc/u-boot/drivers/video/
H A Dvideo_bmp.c47 ulong width, height; in video_display_rle8_bitmap() local
53 width = get_unaligned_le32(&bmp->header.width); in video_display_rle8_bitmap()
68 /* 16bpix, 2-byte per pixel, width should *2 */ in video_display_rle8_bitmap()
69 fb -= (width * 2 + priv->line_length); in video_display_rle8_bitmap()
89 if (x < width) { in video_display_rle8_bitmap()
90 if (x + runlen > width) in video_display_rle8_bitmap()
91 cnt = width - x; in video_display_rle8_bitmap()
108 if (x < width) { in video_display_rle8_bitmap()
116 if (x + runlen > width) in video_display_rle8_bitmap()
117 cnt = width - x; in video_display_rle8_bitmap()
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Dast2600-bletchley.dts92 spi-tx-bus-width = <2>;
93 spi-rx-bus-width = <2>;
99 spi-tx-bus-width = <2>;
100 spi-rx-bus-width = <2>;
106 spi-tx-bus-width = <2>;
107 spi-rx-bus-width = <2>;
122 spi-tx-bus-width = <4>;
123 spi-rx-bus-width = <4>;
129 spi-tx-bus-width = <4>;
130 spi-rx-bus-width = <4>;
[all …]
H A Dast2600-slt.dts127 spi-tx-bus-width = <4>;
128 spi-rx-bus-width = <4>;
134 spi-tx-bus-width = <4>;
135 spi-rx-bus-width = <4>;
141 spi-tx-bus-width = <4>;
142 spi-rx-bus-width = <4>;
157 spi-tx-bus-width = <4>;
158 spi-rx-bus-width = <4>;
164 spi-tx-bus-width = <4>;
165 spi-rx-bus-width = <4>;
[all …]
H A Dast2600-pfr.dts129 spi-tx-bus-width = <1>;
130 spi-rx-bus-width = <1>;
136 spi-tx-bus-width = <1>;
137 spi-rx-bus-width = <1>;
143 spi-tx-bus-width = <1>;
144 spi-rx-bus-width = <1>;
160 spi-tx-bus-width = <1>;
161 spi-rx-bus-width = <1>;
167 spi-tx-bus-width = <1>;
168 spi-rx-bus-width = <1>;
[all …]
H A Dast2600-evb.dts127 spi-tx-bus-width = <4>;
128 spi-rx-bus-width = <4>;
134 spi-tx-bus-width = <4>;
135 spi-rx-bus-width = <4>;
141 spi-tx-bus-width = <4>;
142 spi-rx-bus-width = <4>;
157 spi-tx-bus-width = <4>;
158 spi-rx-bus-width = <4>;
164 spi-tx-bus-width = <4>;
165 spi-rx-bus-width = <4>;
[all …]
H A Dast2600-intel.dts128 spi-tx-bus-width = <4>;
129 spi-rx-bus-width = <4>;
135 spi-tx-bus-width = <4>;
136 spi-rx-bus-width = <4>;
142 spi-tx-bus-width = <4>;
143 spi-rx-bus-width = <4>;
158 spi-tx-bus-width = <4>;
159 spi-rx-bus-width = <4>;
165 spi-tx-bus-width = <4>;
166 spi-rx-bus-width = <4>;
[all …]
H A Dast2500-evb.dts70 spi-tx-bus-width = <2>;
71 spi-rx-bus-width = <2>;
77 spi-tx-bus-width = <2>;
78 spi-rx-bus-width = <2>;
89 spi-tx-bus-width = <2>;
90 spi-rx-bus-width = <2>;
97 spi-tx-bus-width = <2>;
98 spi-rx-bus-width = <2>;
104 bus-width = <4>;
111 bus-width = <4>;
/openbmc/openbmc/poky/documentation/overview-manual/svg/
H A Dbitbake_tasks_map.svg4width="12270px" height="3804px" viewBox="-0.5 -0.5 12270 3804" content="&lt;mxfile host=&quot;app.…
/openbmc/qemu/hw/display/
H A Dramfb.c26 uint32_t width; member
35 uint32_t width, height; member
47 static DisplaySurface *ramfb_create_display_surface(int width, int height, in ramfb_create_display_surface() argument
55 if (width < 16 || width > VBE_DISPI_MAX_XRES || in ramfb_create_display_surface()
60 linesize = width * PIXMAN_FORMAT_BPP(format) / 8; in ramfb_create_display_surface()
72 surface = qemu_create_displaysurface_from(width, height, in ramfb_create_display_surface()
84 uint32_t fourcc, format, width, height; in ramfb_fw_cfg_write() local
87 width = be32_to_cpu(s->cfg.width); in ramfb_fw_cfg_write()
94 surface = ramfb_create_display_surface(width, height, in ramfb_fw_cfg_write()
100 s->width = width; in ramfb_fw_cfg_write()
[all …]
H A Dpl110_template.h38 static void glue(pl110_draw_line1_,NAME)(void *opaque, uint8_t *d, const uint8_t *src, int width, i… in glue()
42 while (width > 0) { in glue()
61 width -= 32; in glue()
66 static void glue(pl110_draw_line2_,NAME)(void *opaque, uint8_t *d, const uint8_t *src, int width, i… in glue()
70 while (width > 0) { in glue()
89 width -= 16; in glue()
94 static void glue(pl110_draw_line4_,NAME)(void *opaque, uint8_t *d, const uint8_t *src, int width, i… in glue()
98 while (width > 0) { in glue()
117 width -= 8; in glue()
122 static void glue(pl110_draw_line8_,NAME)(void *opaque, uint8_t *d, const uint8_t *src, int width, i… in glue()
[all …]
/openbmc/qemu/target/hexagon/imported/mmvec/
H A Dmacros.def166 ((fVECSIZE()*8)/WIDTH),
720 for (VAR = 0; VAR < fVELEM(WIDTH); VAR++),
750 fVSATUN( WIDTH, fZXTN(WIDTH, 2*WIDTH, U) + fZXTN(WIDTH, 2*WIDTH, V)),
755 fVSATN( WIDTH, fSXTN(WIDTH, 2*WIDTH, U) + fSXTN(WIDTH, 2*WIDTH, V)),
760 fVSATUN( WIDTH, fZXTN(WIDTH, 2*WIDTH, U) - fZXTN(WIDTH, 2*WIDTH, V)),
765 fVSATN( WIDTH, fSXTN(WIDTH, 2*WIDTH, U) - fSXTN(WIDTH, 2*WIDTH, V)),
770 ((fZXTN(WIDTH, 2*WIDTH, U) + fZXTN(WIDTH, 2*WIDTH, V))>>1),
775 ((fZXTN(WIDTH, 2*WIDTH, U) + fZXTN(WIDTH, 2*WIDTH, V)+1)>>1),
780 ((fZXTN(WIDTH, 2*WIDTH, U) - fZXTN(WIDTH, 2*WIDTH, V))>>1),
785 fVSATUN(WIDTH,((fZXTN(WIDTH, 2*WIDTH, U) - fZXTN(WIDTH, 2*WIDTH, V)+1)>>1)),
[all …]
/openbmc/u-boot/lib/efi_loader/
H A Defi_gop.c90 efi_uintn_t width, in gop_blt_int() argument
107 linelen = width; in gop_blt_int()
115 if (sx + width > linelen) in gop_blt_int()
120 if (sx + width > gopobj->info.width || in gop_blt_int()
133 if (dx + width > gopobj->info.width || in gop_blt_int()
138 if (dx + width > linelen) in gop_blt_int()
143 /* Calculate line width */ in gop_blt_int()
150 swidth = gopobj->info.width; in gop_blt_int()
163 dwidth = gopobj->info.width; in gop_blt_int()
175 for (j = 0; j < width; j++) { in gop_blt_int()
[all …]
/openbmc/u-boot/arch/mips/mach-mt7620/
H A DKconfig97 prompt "DDR2 chip width"
100 bool "8bit DDR chip width"
103 Use DDR chips with 8bit width
106 bool "16bit DDR chip width"
109 Use DDR chips with 16bit width
114 prompt "DDR2 bus width"
117 bool "16bit DDR bus width"
120 Use 16bit DDR bus width
123 bool "32bit DDR bus width"
126 Use 32bit DDR bus width
/openbmc/u-boot/drivers/i2c/muxes/
H A Dpca954x.c30 u32 width; member
35 u32 width; /* I2C mux width - number of busses */ member
43 .width = 4,
48 .width = 8,
53 .width = 8,
58 .width = 4,
109 priv->width = chip->width; in pca954x_ofdata_to_platdata()
111 if (!priv->width) { in pca954x_ofdata_to_platdata()
112 debug("No I2C MUX width specified\n"); in pca954x_ofdata_to_platdata()
116 debug("Device %s at 0x%x with width %d\n", in pca954x_ofdata_to_platdata()
[all …]
/openbmc/qemu/hw/intc/
H A Dxics_pnv.c34 static uint64_t pnv_icp_read(void *opaque, hwaddr addr, unsigned width) in pnv_icp_read() argument
38 bool byte0 = (width == 1 && (addr & 0x3) == 0); in pnv_icp_read()
46 } else if (width != 4) { in pnv_icp_read()
53 } else if (width == 4) { in pnv_icp_read()
67 if (width == 4) { in pnv_icp_read()
74 if (width == 4) { in pnv_icp_read()
81 if (width == 4) { in pnv_icp_read()
90 HWADDR_PRIx"/%d\n", addr, width); in pnv_icp_read()
97 unsigned width) in pnv_icp_write() argument
101 bool byte0 = (width == 1 && (addr & 0x3) == 0); in pnv_icp_write()
[all …]
/openbmc/phosphor-webui/app/common/styles/elements/
H A Dpaginate.scss24 border-left-width: 0;
25 min-width:44px;
37 border-left-width:1px;
41 border-left-width: 1px;
85 @media only screen and ( max-width: 64.063em ) {
94 .pagination li:nth-of-type(2) a { border-left-width: 1px; }
98 @media only screen and ( max-width: 40.063em ) {
116 .pagination li:nth-of-type(2) a { border-left-width: 0; }
120 @media only screen and ( max-width: 30.063em ) {
132 .pagination li:nth-of-type(2) a { border-left-width: 1px; }
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/
H A Djquery-ui.structure.min.css5width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:n…

12345678910>>...70