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

1234567891011>>

/freebsd-10.0-release/contrib/ncurses/form/
H A Dform.priv.h197 #define Check_CTYPE_Field(result, buffer, width, ccheck) \
222 result = (n + 1 >= width); \
234 #define Check_CTYPE_Field(result, buffer, width, ccheck) \
246 result = ((*buffer || (l < width)) ? FALSE : TRUE); \
/freebsd-10.0-release/contrib/ntp/include/
H A Dntp_select.h14 extern int select P((int width, fd_set *pReadFds, fd_set *pWriteFds,
/freebsd-10.0-release/contrib/ofed/management/infiniband-diags/scripts/
H A Dibqueryerrors.pl71 my $width = "";
77 if ($line =~ /^LinkWidthActive:\.+(.*)/) { $width = $1; }
84 $hr->{loc_ext_port}, $width,
92 $lid, $port, $width, $speed);
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-tlb.c191 int width = 13; local
206 width, (hi & ~0x1fffUL), hi & 0xff);
209 width,
215 width,
/freebsd-10.0-release/usr.bin/ministat/
H A Dministat.c262 int width; member in struct:plot
275 SetupPlot(int width, int separate, int num_datasets) argument
280 pl->width = width;
301 pl->dx = pl->span / (pl->width - 1.0);
336 pl->bar[bar] = malloc(pl->width);
337 memset(pl->bar[bar], 0, pl->width);
356 pl->data = realloc(pl->data, pl->width * m);
357 memset(pl->data + pl->height * pl->width, 0,
358 (m - pl->height) * pl->width);
[all...]
/freebsd-10.0-release/usr.bin/unexpand/
H A Dunexpand.c118 int dcol, doneline, limit, n, ocol, width; local
181 if ((width = wcwidth(ch)) > 0)
182 ocol += width, dcol += width;
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DAPSInt.h28 /// APSInt ctor - Create an APSInt with the specified width, default to
71 APSInt trunc(uint32_t width) const {
72 return APSInt(APInt::trunc(width), IsUnsigned);
75 APSInt extend(uint32_t width) const {
77 return APSInt(zext(width), IsUnsigned);
79 return APSInt(sext(width), IsUnsigned);
82 APSInt extOrTrunc(uint32_t width) const {
84 return APSInt(zextOrTrunc(width), IsUnsigned);
86 return APSInt(sextOrTrunc(width), IsUnsigned);
253 /// with the given bit width an
[all...]
/freebsd-10.0-release/contrib/mdocml/
H A Dterm.h48 int width; /* width in fixed chars */ member in struct:termp_tbl
93 size_t (*width)(const struct termp *, int); member in struct:termp
/freebsd-10.0-release/contrib/ofed/management/infiniband-diags/src/
H A Dibportstate.c157 validate_width(int width, int peerwidth, int lwa) argument
159 if ((width & 0x8) && (peerwidth & 0x8)) {
161 IBWARN("Peer ports operating at active width %d rather than 8 (12x)", lwa);
163 if ((width & 0x4) && (peerwidth & 0x4)) {
165 IBWARN("Peer ports operating at active width %d rather than 4 (8x)", lwa);
167 if ((width & 0x2) && (peerwidth & 0x2)) {
169 IBWARN("Peer ports operating at active width %d rather than 2 (4x)", lwa);
171 if ((width & 0x1) && (peerwidth & 0x1)) {
173 IBWARN("Peer ports operating at active width %d rather than 1 (1x)", lwa);
238 int width, peerwidt local
[all...]
/freebsd-10.0-release/lib/libc/stdio/
H A Dxprintf_int.c392 else if (pi->pad == '0' && pi->width > l && !pi->left)
393 zext = pi->width - l;
411 if (pi->width > (pe - p) && !pi->left) {
412 l = pi->width - (pe - p);
421 if (!pi->left && pi->width > l)
422 ret += __printf_pad(io, pi->width - l, 0);
432 if (pi->width > ret && pi->left)
433 ret += __printf_pad(io, pi->width - ret, 0);
/freebsd-10.0-release/sys/boot/fdt/dts/
H A Dberipad-de4.dts236 sri-cambridge,width = <1>;
244 sri-cambridge,width = <4>;
252 sri-cambridge,width = <4>;
260 sri-cambridge,width = <4>;
H A Ddb88f5182.dts87 bank-width = <2>;
88 device-width = <1>;
103 bank-width = <2>;
104 device-width = <1>;
H A Ddb88f5281.dts87 bank-width = <2>;
88 device-width = <1>;
103 bank-width = <2>;
104 device-width = <1>;
/freebsd-10.0-release/sys/boot/i386/libi386/
H A Dlibi386.h107 int biospci_write_config(uint32_t locator, int offset, int width, uint32_t val);
108 int biospci_read_config(uint32_t locator, int offset, int width, uint32_t *val);
/freebsd-10.0-release/usr.sbin/ppp/
H A Dncpaddr.h38 int width; member in struct:ncprange::__anon11716::__anon11717
43 int width; member in struct:ncprange::__anon11716::__anon11718
/freebsd-10.0-release/share/examples/ppp/
H A Dchap-auth35 set pwidth 12; # Prompt field width
36 set vwidth 20; # Value field width
37 set fxpad 7; # Value field width
38 set fypad 3; # Value field width
51 text .$n.prompt -width $pwidth -height 1 -relief flat;
61 text .$n.value -width $vwidth -height 1;
86 entry .k.value -show "*" -width $vwidth;
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dvalprint.c1083 val_print_string (CORE_ADDR addr, int len, int width, struct ui_file *stream)
1125 buffer = (char *) xmalloc (len * width);
1129 nfetch = partial_memory_read (addr, bufptr, len * width, &errcode)
1130 / width;
1131 addr += nfetch * width;
1132 bufptr += nfetch * width;
1143 buffer = (char *) xmalloc (nfetch * width);
1147 buffer = (char *) xrealloc (buffer, (nfetch + bufsize) * width);
1151 bufptr = buffer + bufsize * width;
1155 nfetch = partial_memory_read (addr, bufptr, nfetch * width,
1082 val_print_string(CORE_ADDR addr, int len, int width, struct ui_file *stream) argument
[all...]
/freebsd-10.0-release/contrib/groff/src/devices/xditview/
H A Ddevice.c46 int width; member in struct:charinfo
318 width if non-null. */
331 *widthp = scale_round(p->width, ps, f->dev->unitwidth);
345 *widthp = scale_round(p->width, ps, f->dev->unitwidth);
369 struct charinfo *add_char(DeviceFont *f, const char *name, int width, int code) argument
382 ci->width = width;
406 int width; local
424 last_charinfo->width, last_charinfo->code);
428 if (sscanf(p, "%d", &width) !
[all...]
/freebsd-10.0-release/contrib/ncurses/menu/
H A Dm_global.c248 | Return Values : the width
287 * Calculate the actual width of a menu entry for wide-characters.
293 int width = 0; local
311 if (check > width)
312 width = check;
317 width = (name ? menu->namelen : menu->desclen);
322 width,
324 return width;
334 | Description : Calculate the length of an item and the width of the
360 menu->width
[all...]
/freebsd-10.0-release/contrib/texinfo/info/
H A Ddisplay.c28 static DISPLAY_LINE **make_display (int width, int height);
43 display_initialize_display (int width, int height) argument
46 the_display = make_display (width, height);
131 int pl_ignore = 0; /* How many chars use zero width on screen. */
153 allocated_win_width = win->width + 1;
178 replen = win->width - pl_index + pl_ignore;
241 /* If this character can be printed without passing the width of
243 if (replen + pl_index < win->width + pl_ignore)
274 for (i = 0; pl_index < (win->width + pl_ignore - 1);)
331 if ((pl_index < win->width
612 make_display(int width, int height) argument
[all...]
/freebsd-10.0-release/sys/mips/rmi/
H A Dxlr_pci.c244 u_int reg, int width)
248 if ((width == 2) && (reg & 1))
250 else if ((width == 4) && (reg & 3))
255 if (width == 1)
257 else if (width == 2)
265 u_int reg, u_int32_t val, int width)
270 if ((width == 2) && (reg & 1))
272 else if ((width == 4) && (reg & 3))
275 if (width == 1) {
279 } else if (width
243 xlr_pcib_read_config(device_t dev, u_int b, u_int s, u_int f, u_int reg, int width) argument
264 xlr_pcib_write_config(device_t dev, u_int b, u_int s, u_int f, u_int reg, u_int32_t val, int width) argument
[all...]
/freebsd-10.0-release/sys/arm/ti/am335x/
H A Dam335x_lcd_syscons.c72 unsigned int width; member in struct:video_adapter_softc
346 sc->xmargin = (sc->width - (vi->vi_width * vi->vi_cwidth)) / 2;
378 va_sc->width = 0;
391 va_sc->width = (int)fdt32_to_cpu(cell);
398 if (va_sc->width == 0)
399 va_sc->width = FB_WIDTH;
432 vi->vi_width = sc->width/8;
436 * Clamp width/height to syscons maximums
443 sc->xmargin = (sc->width - (vi->vi_width * vi->vi_cwidth)) / 2;
475 am335x_syscons_save_font(video_adapter_t *adp, int page, int size, int width, argument
482 am335x_syscons_load_font(video_adapter_t *adp, int page, int size, int width, u_char *data, int c, int count) argument
749 am335x_syscons_putm(video_adapter_t *adp, int x, int y, uint8_t *pixel_image, uint32_t pixel_mask, int size, int width) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c541 int columns, width = 0, lines; local
547 if (len > width)
548 width = len;
550 width = (width + 8) &~ 7;
551 columns = 80 / width;
570 while (w < width) {
/freebsd-10.0-release/contrib/gdtoa/
H A Dprintf.c0690 len, prec, prec1, psign, rv, sign, width;
720 alt=dot=lead0=left=len=prec=psign=sign=width=0;
760 width = k;
791 width = k;
852 if ((width -= c) > 0) {
854 width -= prec;
856 width--;
858 width--;
869 while(--width >= 0)
873 if (width >
[all...]
/freebsd-10.0-release/sys/kern/
H A Dsubr_prf.c638 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
658 width = 0;
686 width = va_arg(ap, int);
687 if (width < 0) {
689 width = -width;
711 width = n;
742 if (!width)
743 width = 16;
744 while(width
[all...]

Completed in 156 milliseconds

1234567891011>>