Searched refs:width (Results 251 - 275 of 921) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/money_put/put/char/
H A D1.cc88 // test io.width() > length
91 oss.width(20);
97 oss.width(20);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_ios/cons/char/
H A D1.cc67 VERIFY( ios_00.width() == 0 );
78 VERIFY( ios_01.width() == 0 );
/netbsd-6-1-5-RELEASE/dist/nvi/motif_l/
H A Dm_func.c120 int y, rows, len, height, width;
134 width = __vi_screen->ch_width * __vi_screen->cols;
141 width, height,
160 int y, rows, height, width;
182 width = __vi_screen->ch_width * __vi_screen->cols;
190 width, height,
119 int y, rows, len, height, width; local
159 int y, rows, height, width; local
H A Dm_ruler.c93 *w = 2*ruler_border + over.width;
246 Dimension height, width;
251 XmNwidth, &width,
255 XmNmaxWidth, width,
256 XmNminWidth, width,
241 Dimension height, width; local
/netbsd-6-1-5-RELEASE/external/mit/xorg/lib/libxcb/files/
H A Dshm.h173 uint16_t width; /**< */ member in struct:xcb_shm_get_image_request_t
206 uint16_t width; /**< */ member in struct:xcb_shm_create_pixmap_request_t
561 ** @param uint16_t width
576 uint16_t width /**< */,
603 ** @param uint16_t width
618 uint16_t width /**< */,
675 ** @param uint16_t width
688 uint16_t width /**< */,
710 ** @param uint16_t width
723 uint16_t width /**< */,
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/atari/dev/
H A Dite_cc.c71 u_short width; /* the bitmap width */ member in struct:ite_priv
73 u_short ft_x; /* the font width */
260 printf(": width %d height %d", sc->g_display.gd_dwidth,
341 if (ip->font.width != 8)
358 wsz.width = ite_default_width;
383 vs.width = winsz->width;
394 ip->cols = view->display.width / ip->font.width;
716 scrollbmap(bmap_t *bm, u_short x, u_short y, u_short width, u_short height, short dx, short dy) argument
[all...]
H A Dview.c198 if (vs->width != vu->size.width || vs->height != vu->size.height ||
205 ns.width = vs->width;
223 vu->size.width = new->display.width;
310 size.width = vu->size.width = view_default_width;
319 vu->size.width = vu->view->display.width;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amiga/dev/
H A Dgrfabs_reg.h43 u_long width; member in struct:dimension
51 u_long width; member in struct:box
268 (r)->right = (b)->x + (b)->width -1; \
275 (b)->width = (r)->right - (r)->left +1; \
279 #define INIT_BOX(b,xx,yy,ww,hh) do{(b)->x = xx; (b)->y = yy; (b)->width = ww; (b)->height = hh;}while (0)
282 #define INIT_DIM(d,w,h) do {(d)->width = w; (d)->height = h;} while (0)
H A Dview.c192 if (vs->width != vu->size.width || vs->height != vu->size.height ||
199 ns.width = vs->width;
210 vu->size.width = new->display.width;
251 size.width = vu->size.width = view_default_width;
261 vu->size.width = vu->view->display.width;
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/videomode/
H A Dpickmode.c45 pick_mode_by_dotclock(int width, int height, int dotclock) argument
50 DPRINTF("%s: looking for %d x %d at up to %d kHz\n", __func__, width,
54 if ((this->hdisplay != width) || (this->vdisplay != height) ||
70 pick_mode_by_ref(int width, int height, int refresh) argument
75 DPRINTF("%s: looking for %d x %d at up to %d Hz\n", __func__, width,
82 if ((this->hdisplay != width) || (this->vdisplay != height))
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dscreen-write.c119 size += utf8data.width;
178 size + utf8data.width > (size_t) maxlen) {
185 size += utf8data.width;
248 size + utf8data.width > (size_t) maxlen) {
255 size += utf8data.width;
394 utf8data.width = gu->width;
998 u_int width, xx; local
1006 /* Find character width. */
1008 width
1159 screen_write_overwrite(struct screen_write_ctx *ctx, u_int width) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gprof/
H A Dbasic_blocks.c321 annotate_with_count (char *buf, unsigned int width, int line_num, PTR arg)
336 for (i = 0; i < width; i++)
338 buf[width] = '\0';
424 for (c = 0; c < width; c++)
426 buf[width] = '\0';
442 if (len >= width)
444 strncpy (buf, tmpbuf, width);
445 buf[width] = '\0';
451 strcpy (buf + width - len, tmpbuf);
452 for (c = 0; c < width
320 annotate_with_count(char *buf, unsigned int width, int line_num, PTR arg) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/info/
H A Ddisplay.c30 static DISPLAY_LINE **make_display (int width, int height);
45 display_initialize_display (int width, int height) argument
48 the_display = make_display (width, height);
133 int pl_ignore = 0; /* How many chars use zero width on screen. */
155 allocated_win_width = win->width + 1;
180 replen = win->width - pl_index + pl_ignore;
243 /* If this character can be printed without passing the width of
245 if (replen + pl_index < win->width + pl_ignore)
276 for (i = 0; pl_index < (win->width + pl_ignore - 1);)
333 if ((pl_index < win->width
614 make_display(int width, int height) argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/devices/xditview/
H A Ddevice.c48 int width; member in struct:charinfo
320 width if non-null. */
333 *widthp = scale_round(p->width, ps, f->dev->unitwidth);
347 *widthp = scale_round(p->width, ps, f->dev->unitwidth);
371 struct charinfo *add_char(DeviceFont *f, const char *name, int width, int code) argument
384 ci->width = width;
408 int width; local
426 last_charinfo->width, last_charinfo->code);
430 if (sscanf(p, "%d", &width) !
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/rasops/
H A Drasops1.c91 u_int32_t height, width; local
112 width = font->fontwidth;
131 if ((col + width) <= 32) {
132 rmask = rasops_pmask[col][width];
194 rmask = ~rasops_rmask[(col + width) & 31];
197 width = bg & ~rmask;
202 tmp2 = (rp[1] & rmask) | width;
213 width = 32 - col;
225 | (MBE((u_int)fb << width) & ~rmask);
245 | (MBE(fb << width)
[all...]
H A Drasops4.c104 int height, width, fs, rs, fb, bg, fg, lmask, rmask; local
119 width = font->fontwidth << 1;
121 col *= width;
141 if ((col + width) <= 32) {
142 rmask = rasops_pmask[col][width];
168 rmask = ~rasops_rmask[(col + width) & 31];
172 width = bg & ~rmask;
176 rp[1] = (rp[1] & rmask) | width;
180 width = 32 - col;
191 | (MBE((u_int)fb << width)
[all...]
H A Drasops8.c115 int width, height, cnt, fs, fb; local
139 width = font->fontwidth;
147 memset(rp, c, width);
149 memset(hrp, c, width);
168 for (cnt = width; cnt; cnt--) {
185 while (width--) {
196 int width, height, fs; local
223 width = font->fontwidth;
230 memset(rp, bg, width);
232 memset(hrp, bg, width);
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/tc/
H A Dsfbplus.c443 wsd_fbip->width = ri->ri_width;
1054 int scanspan, height, width, align, x, y; local
1069 width = ri->ri_font->fontwidth + align;
1071 rmask = SFBSTIPPLEALL1 >> (-width & SFBSTIPPLEBITMASK);
1108 int scanspan, startx, height, width, align, w, y; local
1121 width = w + align;
1123 rmask = SFBSTIPPLEALL1 >> (-width & SFBSTIPPLEBITMASK);
1129 if (width <= SFBSTIPPLEBITS) {
1142 width -= 2 * SFBSTIPPLEBITS;
1143 while (width >
1170 int scanspan, offset, srcy, height, width, align, w; local
1230 int scanspan, offset, srcy, height, width, w, align; local
1297 int scanspan, starty, height, width, align, w; local
[all...]
/netbsd-6-1-5-RELEASE/distrib/utils/more/
H A Dcommand.c605 int indx, width; local
613 for (width = indx = 0; indx < ac;) {
618 if (width + len + 1 >= sc_width) {
619 if (!width) {
627 width = 0;
631 if (width)
638 width += len;
/netbsd-6-1-5-RELEASE/sys/arch/ofppc/ofppc/
H A Dmachdep.c117 uint32_t width, height, mode, fbaddr; local
144 * Get screen width/height and switch to framebuffer mode.
147 OF_interpret("screen-width", 0, 1, &width);
148 if (width == 0)
149 width = 800;
157 if (modew[i] == width && modeh[i] == height) {
164 width = 800;
173 sprintf(buf, "%x to screen-width", width);
[all...]
/netbsd-6-1-5-RELEASE/sbin/route/
H A Dshow.c219 #define WID_DST(af) 18 /* width of destination column */
220 #define WID_GW(af) 18 /* width of gateway column */
222 /* width of destination/gateway column */
346 p_sockaddr(struct sockaddr *sa, struct sockaddr *nm, int flags, int width) argument
368 if (strchr(cp, ':') != NULL && (int)strlen(cp) > width)
369 width = strlen(cp);
411 if (width < 0 )
415 printf("%-*s ", width, cp);
417 printf("%-*.*s ", width, width, c
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/roff/troff/
H A Dnode.h69 virtual hunits width();
147 hunits width; member in struct:breakpoint
187 hunits width();
207 hunits width; member in struct:width_list
333 hunits width();
384 hunits width();
401 hunits width();
465 hunits width();
492 hunits width();
512 hunits width();
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/common/
H A Ddv-cfi.c157 unsigned width, dev_size, status; member in struct:cfi
203 /* Depending on the bus width, addresses might be bit shifted. This
209 switch (cfi->width)
369 if (cfi->width != nr_bytes)
371 HW_TRACE ((me, "write 0x%08lx length %u does not match flash width %u",
372 (unsigned long) addr, nr_bytes, cfi->width));
455 if (cfi->state != CFI_STATE_READ && cfi->width != nr_bytes)
457 HW_TRACE ((me, "read 0x%08lx length %u does not match flash width %u",
458 (unsigned long) addr, nr_bytes, cfi->width));
558 .../width <
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/evbppc/explora/dev/
H A Dfb_elb.c219 wdf->width = ri->ri_width;
415 s3_init(struct fb_dev *fb, int *width, int *height) argument
444 *width = (w+1) << 3;
450 int width, int height, int mask)
459 src_x += width-1;
460 dest_x += width-1;
480 bus_space_write_2(iot, ioh, S3_MAJ_AXIS_PCNT, width-1);
488 s3_fill(struct fb_dev *fb, int x, int y, int width, int height, argument
504 bus_space_write_2(iot, ioh, S3_MAJ_AXIS_PCNT, width-1);
449 s3_copy(struct fb_dev *fb, int src_x, int src_y, int dest_x, int dest_y, int width, int height, int mask) argument
/netbsd-6-1-5-RELEASE/lib/libc/stdlib/
H A Dstrfmon.c119 int width; /* field width */ local
163 width = -1; /* no width specified */
202 GET_NUMBER(width);
204 * required width ?
207 if ((size_t)(d + width) >= maxsize)
374 if (dst - tmpptr < width) {
376 while (dst - tmpptr < width)
380 memmove(tmpptr + width
[all...]

Completed in 574 milliseconds

<<11121314151617181920>>