Searched refs:width (Results 151 - 175 of 1541) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dui-out.h177 void table_header (int width, ui_align align, const std::string &col_name,
186 void field_fmt_signed (int width, ui_align align, const char *fldname,
271 bool query_table_field (int colno, int *width, int *alignment,
284 virtual void do_table_header (int width, ui_align align,
290 virtual void do_field_signed (int fldno, int width, ui_align align,
292 virtual void do_field_unsigned (int fldno, int width, ui_align align,
294 virtual void do_field_skip (int fldno, int width, ui_align align,
296 virtual void do_field_string (int fldno, int width, ui_align align,
299 virtual void do_field_fmt (int fldno, int width, ui_align align,
330 void verify_field (int *fldno, int *width, ui_alig
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/mi/
H A Dmi-out.c66 mi_ui_out::do_table_header (int width, ui_align alignment, argument
71 do_field_signed (0, 0, ui_center, "width", width);
75 do_field_string (0, width, alignment, "colhdr", col_hdr.c_str (),
99 mi_ui_out::do_field_signed (int fldno, int width, ui_align alignment, argument
102 do_field_string (fldno, width, alignment, fldname, plongest (value),
109 mi_ui_out::do_field_unsigned (int fldno, int width, ui_align alignment, argument
112 do_field_string (fldno, width, alignment, fldname, pulongest (value),
119 mi_ui_out::do_field_skip (int fldno, int width, ui_align alignment, argument
128 mi_ui_out::do_field_string (int fldno, int width, ui_alig argument
144 do_field_fmt(int fldno, int width, ui_align align, const char *fldname, const ui_file_style &style, const char *format, va_list args) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dui-out.h175 void table_header (int width, ui_align align, const std::string &col_name,
184 void field_fmt_signed (int width, ui_align align, const char *fldname,
274 bool query_table_field (int colno, int *width, int *alignment,
337 virtual void do_table_header (int width, ui_align align,
343 virtual void do_field_signed (int fldno, int width, ui_align align,
345 virtual void do_field_unsigned (int fldno, int width, ui_align align,
347 virtual void do_field_skip (int fldno, int width, ui_align align,
349 virtual void do_field_string (int fldno, int width, ui_align align,
352 virtual void do_field_fmt (int fldno, int width, ui_align align,
387 void verify_field (int *fldno, int *width, ui_alig
[all...]
/netbsd-current/sys/arch/hp300/stand/common/
H A Dite_subr.c88 int stride, width; local
93 width = (ip->ftwidth + 7) / 8;
98 fbmem += (ip->fontx >> 3) + (c % ip->cpl) * width;
100 for (b = 0; b < width; b++) {
104 fbmem -= width;
302 int width; /* add to get to same position in next line */ local
325 width = ip->fbwidth >> 5;
326 psrcLine = ((unsigned int *) ip->fbbase) + (sy * width);
327 pdstLine = ((unsigned int *) ip->fbbase) + (dy * width);
343 pdst += width;
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/virtio/
H A Dvirtgpu_display.c165 int count, width, height; local
173 width = le32_to_cpu(output->info.r.width);
177 if (width == 0 || height == 0) {
178 width = XRES_DEF;
182 DRM_DEBUG("add mode: %dx%d\n", width, height);
183 mode = drm_cvt_mode(connector->dev, width, height, 60,
198 int width, height; local
200 width = le32_to_cpu(output->info.r.width);
[all...]
/netbsd-current/external/bsd/jemalloc/dist/src/
H A Dmalloc_io.c344 #define APPEND_PADDED_S(s, slen, width, left_justify) do { \
346 size_t pad_len = (width == -1) ? 0 : ((slen < (size_t)width) ? \
347 (size_t)width - slen : 0); \
419 int width = -1; local
452 width = va_arg(ap, int);
454 if (width < 0) {
456 width = -width;
466 width
[all...]
/netbsd-current/sys/dev/usb/
H A Dudl.c217 udl_cmd_add_buf(struct udl_softc *sc, uint16_t *buf, int width) argument
220 memcpy(sc->sc_cmd_buf, buf, width * 2);
221 sc->sc_cmd_buf += width * 2;
225 endp = buf + width;
582 wdf->width = sc->sc_width;
976 int x, y, width, height; local
989 width = ri->ri_font->fontwidth;
993 udl_copy_rect(sc, x, y, 0, sc->sc_offscreen, width, height);
996 udl_fill_rect(sc, 0xffff, x, y, width, 1);
998 udl_fill_rect(sc, 0xffff, x + width
1012 int fg, bg, underline, x, y, width, height; local
1047 int sx, dx, y, width, height; local
1071 int fg, bg, x, y, width, height; local
1092 int sy, ey, dy, width, height; local
1129 int fg, bg, y, width, height; local
1148 int x, y, width, height; local
1202 udl_copy_rect(struct udl_softc *sc, int sx, int sy, int dx, int dy, int width, int height) argument
1234 udl_fill_rect(struct udl_softc *sc, uint16_t rgb16, int x, int y, int width, int height) argument
1265 int sbase, soff, ebase, eoff, x, y, width, width_cur, height; local
1299 int soff, eoff, x, y, width, height; local
1313 width); local
1322 udl_copy_line(struct udl_softc *sc, int soff, int doff, int width) argument
1336 udl_fill_line(struct udl_softc *sc, uint16_t rgb16, int off, int width) argument
1351 udl_draw_line(struct udl_softc *sc, uint16_t *buf, int off, int width) argument
1367 udl_cmd_add_buf_comp(struct udl_softc *sc, uint16_t *buf, int width) argument
1438 udl_draw_line_comp(struct udl_softc *sc, uint16_t *buf, int off, int width) argument
[all...]
/netbsd-current/external/bsd/atf/dist/tools/
H A Dui.cpp52 static size_t width = 0; local
58 width = tools::text::to_type< size_t >(cols);
63 width = ws.ws_col;
66 if (width >= 80)
67 width -= 5;
72 return width;
/netbsd-current/sys/arch/amiga/dev/
H A Dgrfabs.c114 get_best_display_mode(u_long width, u_long height, u_char depth) argument
123 dim.width = width;
127 dx = ABS(long, (d->nominal_size.width - width));
205 d = get_best_display_mode(dim->width, dim->height, depth);
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pci/
H A Dnouveau_nvkm_subdev_pci_pcie.c114 nvkm_pcie_set_link(pci, pci->pcie.speed, pci->pcie.width);
120 nvkm_pcie_set_link(struct nvkm_pci *pci, enum nvkm_pcie_speed speed, u8 width) argument
155 pci->pcie.width = width;
163 nvkm_pcie_speeds[speed], width);
165 ret = pci->func->pcie.set_link(pci, speed, width);
/netbsd-current/external/gpl2/texinfo/dist/info/
H A Dwindow.c56 window_initialize_windows (int width, int height) argument
87 window_new_screen_size (width, height);
95 from whatever it was before (found in the_screen->height, ->width),
107 window_new_screen_size (int width, int height) argument
114 if (width == the_screen->width && height == the_screen->height)
120 if (width < 0)
121 width = 0;
161 /* The screen has changed height and width. */
164 the_screen->width
710 int width = 1; local
743 register int i, width, this_char_width; local
[all...]
/netbsd-current/sys/external/mit/xen-include-public/dist/xen/include/public/io/
H A Ddisplif.h200 * Values: <width, uint32_t>x<height, uint32_t>
442 * | width | 20
474 * width - uint32_t, width in pixels
503 uint32_t width; member in struct:xendispl_dbuf_create_req
591 * | width | 28
614 * width - uint32_t, width in pixels
622 uint32_t width; member in struct:xendispl_fb_attach_req
673 * | width | 2
704 uint32_t width; member in struct:xendispl_set_config_req
[all...]
/netbsd-current/external/lgpl3/gmp/dist/cxx/
H A Dosfuns.cc119 p->width = o.width();
122 o.width (0);
/netbsd-current/sys/external/bsd/drm2/dist/drm/
H A Ddrm_dumb_buffers.c71 if (!args->width || !args->height || !args->bpp)
78 if (cpp > U32_MAX / args->width)
80 stride = cpp * args->width;
/netbsd-current/sys/external/bsd/drm2/dist/drm/vboxvideo/
H A Dvboxvideo_guest.h37 u32 hot_x, u32 hot_y, u32 width, u32 height,
56 u32 pitch, u32 width, u32 height,
59 u32 width, u32 height);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dwide-int-print.cc114 int width = val.get_precision () - start; local
118 unsigned HOST_WIDE_INT uhwi = wi::extract_uhwi (val, i, width);
126 width = HOST_BITS_PER_WIDE_INT;
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dwide-int-print.cc114 int width = val.get_precision () - start; local
118 unsigned HOST_WIDE_INT uhwi = wi::extract_uhwi (val, i, width);
126 width = HOST_BITS_PER_WIDE_INT;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dtui-window-disabled.py54 width=self._win.width, height=self._win.height
86 w = self._win.width
/netbsd-current/external/bsd/elftosb/dist/common/
H A DIVTDataSource.h127 #define GEN_MASK(width) \
128 ((1UL << (width)) - 1)
130 #define GEN_FIELD(f, width, shift) \
131 (((f) & GEN_MASK(width)) << (shift))
202 #define HAB_VER_MAJ_WIDTH 4 /**< Major version field width */
204 #define HAB_VER_MIN_WIDTH 4 /**< Minor version field width */
/netbsd-current/lib/libc/citrus/modules/
H A Dcitrus_mapper_std_local.h37 _citrus_index_t width; member in struct:_citrus_mapper_std_linear_zone
/netbsd-current/sys/arch/powerpc/tools/chrpicon/
H A Dchrpicon.h47 int width; member in struct:chrpi_spec_s
/netbsd-current/sys/external/bsd/drm/dist/shared-core/
H A Ddrm_sarea.h62 unsigned int width; member in struct:drm_sarea_frame
/netbsd-current/sys/sys/
H A Dcommon_int_mwgwtypes.h36 #error Your compiler does not provide min/fast width type macros.
43 /* 7.18.1.2 Minimum-width integer types */
54 /* 7.18.1.3 Fastest minimum-width integer types */
64 /* 7.18.1.5 Greatest-width integer types */
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dwrite-catalog.h64 message_page_width_set (size_t width);
/netbsd-current/sys/dev/rasops/
H A Drasops1_putchar_width.h55 #define NAME(width) NAME1(width)
56 #define NAME1(width) rasops1_putchar ## width

Completed in 184 milliseconds

1234567891011>>