Searched refs:width (Results 1 - 25 of 603) sorted by path

1234567891011>>

/freebsd-10.0-release/bin/ls/
H A Dprint.c355 printdev(size_t width, dev_t dev) argument
358 (void)printf("%#*jx ", (u_int)width, (uintmax_t)dev);
596 printsize(size_t width, off_t bytes) argument
608 (void)printf("%*s ", (u_int)width, buf);
612 (void)printf(format, (u_int)width, bytes);
614 (void)printf("%*jd ", (u_int)width, bytes);
/freebsd-10.0-release/bin/ps/
H A Dprint.c90 (void)printf("%-*s", v->width, vent->header);
92 (void)printf("%*s", v->width, vent->header);
H A Dps.c647 linelen += printf(fmtstr, vent->var->width, str);
1144 if (v->width < len)
1145 v->width = len;
1159 if (v->width < i)
1160 v->width = i;
H A Dps.h35 #define UNLIMITED 0 /* unlimited terminal width */
84 short width; /* calculated width */ member in struct:var
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_main.c1727 * width for each property. For the 'NAME' (and 'SOURCE') columns, we
2405 /* Calculate/update width of TYPE field */
2414 /* Calculate/update width of NAME field */
2441 /* Calculate/update width of USED/QUOTA fields */
2468 size_t *width, us_node_t *node)
2547 (void) printf("%-*s", width[field], strval);
2549 (void) printf("%*s", width[field], strval);
2560 size_t *width, boolean_t rmnode, uu_avl_t *avl)
2574 width[field], col);
2577 width[fiel
2467 print_us_node(boolean_t scripted, boolean_t parsable, int *fields, int types, size_t *width, us_node_t *node) argument
2559 print_us(boolean_t scripted, boolean_t parsable, int *fields, int types, size_t *width, boolean_t rmnode, uu_avl_t *avl) argument
2890 int width; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c1202 * Given a vdev configuration, determine the maximum width needed for the device
2533 * The width must fall into the range [10,38]. The upper limit is the
2704 * before calculating the maximum name width, so that any
2710 * Iterate over all pools to determine the maximum width
2775 size_t width = 0; local
2778 width = pl->pl_width;
2781 * Reset the width to accommodate the verbose listing
2784 width = cb->cb_namewidth;
2808 (void) printf("%*s", width, header);
2810 (void) printf("%-*s", width, heade
2829 size_t width; local
2894 size_t width = zprop_width(prop, &fixed, ZFS_TYPE_POOL); local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c3526 uint64_t width = 40; local
3573 n = ztest_random(regions) * stride + ztest_random(width);
3574 s = 1 + ztest_random(2 * width - 1);
3580 n = ztest_random(regions) * stride + ztest_random(width);
3581 s = 1 + ztest_random(width - 1);
3793 uint64_t width = 9; local
3837 n = ztest_random(regions) * stride + ztest_random(width);
3838 s = 1 + ztest_random(width - 1);
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_aggregate.c1252 dt_aggregate_qsort(dtrace_hdl_t *dtp, void *base, size_t nel, size_t width, argument
1275 qsort(base, nel, width, compar);
H A Ddt_consume.c828 size_t nbytes, int width, int quiet, int forceraw)
882 return (dt_printf(dtp, fp, " %-*s", width, c));
897 return (dt_printf(dtp, fp, " %-*s", width, s));
827 dt_print_bytes(dtrace_hdl_t *dtp, FILE *fp, caddr_t addr, size_t nbytes, int width, int quiet, int forceraw) argument
H A Ddt_printf.c409 int width; local
419 * indentation to be the width. This is a slightly odd semantic, but
426 width = -pfd->pfd_dynwidth;
428 width = pfd->pfd_dynwidth ? pfd->pfd_dynwidth : pfd->pfd_width;
430 width = 0;
433 dtp->dt_options[DTRACEOPT_STACKINDENT] = width;
908 pfv->pfv_argc, n ? "precision" : "width");
1373 int width = pfd->pfd_width; local
1428 len, &width) == -1)
1430 pfd->pfd_dynwidth = width;
1896 int width = pfd->pfd_width; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c777 int width, fmt, i; local
791 cp = number(cp, &width);
793 expected("intrinsic/b", "; (post-width)", cp - 1);
815 cp = number(cp, &width);
817 intr->intr_nbits = width * 8;
823 tdp->t_size = width;
826 parse_debug(3, NULL, "intrinsic: size=%d", width);
/freebsd-10.0-release/contrib/amd/doc/
H A Dtexinfo.tex380 \def\ewtop{\vrule height\cornerthick depth0pt width\cornerlong}
382 {\hrule height\cornerthick depth\cornerlong width\cornerthick}}
383 \def\ewbot{\vrule height0pt depth\cornerthick width\cornerlong}
385 {\hrule height\cornerlong depth\cornerthick width\cornerthick}}
1192 \ifx\empty\imagewidth\else width \imagewidth \fi
2054 \vskip4pt \hrule height 2pt width \hsize
2072 \vskip4pt \hrule height 4pt width \hsize \vskip4pt
2504 % Contents of each column will wrap at width given in preamble. Width
2506 % or in percent of \hsize, the current width of text on page.
2547 % They will wrap at the width determine
[all...]
/freebsd-10.0-release/contrib/apr/strings/
H A Dapr_snprintf.c295 #define PAD(width, len, ch) \
299 width--; \
301 while (width > len)
747 * Try to avoid checking for flags, width or precision
769 * Check if a width was specified
1300 * unknown <char> could be preceded by width etc.
/freebsd-10.0-release/contrib/atf/atf-c++/detail/
H A Dui.cpp53 static size_t width = 0; local
59 width = atf::text::to_type< size_t >(cols);
64 width = ws.ws_col;
67 if (width >= 80)
68 width -= 5;
73 return width;
/freebsd-10.0-release/contrib/atf/atf-report/
H A Dtests-results.css87 border-width: 1pt;
95 border-width: 1pt;
101 border-width: 1pt;
131 border-width: 1pt;
134 width: 80%;
139 border-width: 1pt;
146 border-width: 1pt;
151 width: 1pt;
160 width: 1pt;
170 width
[all...]
/freebsd-10.0-release/contrib/binutils/bfd/
H A Delf-eh-frame.c138 /* Return 0 if either encoding is variable width, or not yet known to bfd. */
163 /* Read a width sized value from memory. */
166 read_value (bfd *abfd, bfd_byte *buf, int width, int is_signed) argument
170 switch (width)
198 /* Store a width sized value to memory. */
201 write_value (bfd *abfd, bfd_byte *buf, bfd_vma value, int width) argument
203 switch (width)
330 success. ENCODED_PTR_WIDTH gives the width of pointer entries. */
1374 unsigned int width; local
1382 width
1450 unsigned int cnt, width; local
[all...]
/freebsd-10.0-release/contrib/binutils/binutils/
H A Dobjdump.c2436 int width;
2473 width = 4;
2483 if (count > width)
2484 width = count;
2494 if (count > width)
2495 width = count;
2508 while (count < width)
2513 fputs (buf + count - width, stdout);
2630 static int width;
2632 if (width
2427 int width; local
2620 static int width; local
[all...]
H A Drcparse.y356 dialog.width = $7;
381 dialog.width = $7;
408 dialog.width = $7;
H A Dreadelf.c536 print_symbol (int width, const char *symbol)
540 else if (width < 0)
541 printf ("%-*.*s", width, width, symbol);
543 printf ("%-.*s", width, symbol);
2794 -W --wide Allow output width to exceed 80 characters\n\
533 print_symbol(int width, const char *symbol) argument
H A Dresbin.c465 d->width = windres_get_16 (wrbfd, data + off + 6, 2);
551 dc->width = windres_get_16 (wrbfd, data + off + 4, 2);
819 gc->width = windres_get_16 (wrbfd, data, 2);
874 gi->width = windres_get_8 (wrbfd, data, 1);
1420 windres_put_16 (wrbfd, bgci.width, gc->width);
1466 windres_put_16 (wrbfd, bd.width, dialog->width);
1478 windres_put_16 (wrbfd, bdx.width, dialog->width);
[all...]
H A Dresrc.c92 bfd_byte width; member in struct:icondir
739 icondirs[i].width = getc (e);
801 cg->width = icondirs[i].width;
848 rc_uint_type y, rc_uint_type width, rc_uint_type height,
861 n->width = width;
1140 icondirs[i].width = getc (e);
1200 cg->width = icondirs[i].width;
845 define_control(const rc_res_id iid, rc_uint_type id, rc_uint_type x, rc_uint_type y, rc_uint_type width, rc_uint_type height, const rc_res_id class, rc_uint_type style, rc_uint_type exstyle) argument
1576 define_toolbar(rc_res_id id, rc_res_res_info *resinfo, rc_uint_type width, rc_uint_type height, rc_toolbar_item *items) argument
[all...]
H A Dsize.c396 rprint_number (int width, bfd_size_type num)
405 printf ("%*s", width, buffer);
392 rprint_number(int width, bfd_size_type num) argument
H A Dwindint.h356 rc_uint_type width; member in struct:rc_group_cursor
371 bfd_byte width[2]; member in struct:bin_group_cursor_item
402 rc_uint_type width; member in struct:rc_dialog
428 bfd_byte width[2]; member in struct:bin_dialog
457 bfd_byte width[2]; member in struct:bin_dialogex
645 rc_uint_type width; member in struct:rc_dialog_control
664 bfd_byte width[2]; member in struct:bin_dialog_control
677 bfd_byte width[2]; member in struct:bin_dialogex_control
720 bfd_byte width; member in struct:rc_group_icon
745 bfd_byte width[ member in struct:bin_group_icon_item
[all...]
/freebsd-10.0-release/contrib/binutils/gas/config/
H A Dtc-arm.c2398 opcode_select (int width)
2400 switch (width)
2433 as_bad (_("invalid instruction size selected (%d)"), width);
6590 not the LSB and width. */
6609 not the LSB and width. */
8814 not the LSB and width. */
8834 not the LSB and width. */
10709 N_VFP = 0x400000, /* VFP mode: operand size must match register width. */
11154 have a key operand, use its width, else use the width o
2396 opcode_select(int width) argument
[all...]
H A Dtc-cr16.c150 unsigned long width; local
159 as_warn (_("using a bit field width of zero"));
167 as_bad (_("field width \"%s\" too complex for a bitfield"), hold);
173 if ((width = exp.X_add_number) >
176 as_warn (_("field width %lu too big to fit in %d bytes: truncated to %d bits"), width, nbytes, (BITS_PER_CHAR * nbytes));
177 width = BITS_PER_CHAR * nbytes;
181 if (width > bits_available)
204 value |= ((~(-1 << width) & exp.X_add_number)
207 if ((bits_available -= width)
[all...]

Completed in 305 milliseconds

1234567891011>>