Searched refs:width (Results 1 - 25 of 677) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/dialog/samples/
H A Dmsgbox36 width=35
7 while test $width != 61
9 $DIALOG --title "MESSAGE BOX (width $width)" --clear --no-collapse "$@" \
19 you press the ENTER key." 15 $width
21 width=`expr $width + 1`
H A Dmsgbox4-eucjp6 width=35
7 while test $width != 61
9 $DIALOG --title "MESSAGE BOX (width $width)" --clear --no-collapse "$@" \
14 (2) whether the width of characters are evaluated properly, and
23 you press the ENTER key." 22 $width
24 width=`expr $width + 1`
H A Dmsgbox57 width=35
8 while test $width != 61
10 $DIALOG --title "MESSAGE BOX (width $width)" --clear --no-collapse "$@" \
20 you press the ENTER key." 10 $width
22 width=`expr $width + 1`
H A Dmsgbox67 width=35
8 while test $width != 61
10 $DIALOG --title "MESSAGE BOX (width $width)" --clear "$@" \
14 " 10 $width
16 width=`expr $width + 1`
H A Dmsgbox6a7 width=35
8 while test $width != 61
10 $DIALOG --title "MESSAGE BOX (width $width)" --clear "$@" \
14 " 10 $width
16 width=`expr $width + 1`
H A Dmsgbox4-8bit8 width=30
9 while test $width != 61
11 $DIALOG --title "MESSAGE BOX (width $width)" --no-collapse --colors "$@" \
19 you press the ENTER key." 22 $width
29 width=`expr $width + 1`
H A Dmsgbox4-utf88 width=30
9 while test $width != 61
11 $DIALOG --title "MESSAGE BOX (width $width)" --no-collapse "$@" \
16 (2) whether the width of characters are evaluated properly, and
25 you press the ENTER key." 22 $width
35 width=`expr $width + 1`
/freebsd-11-stable/contrib/xz/src/common/
H A Dtuklib_mbstr_fw.c4 /// \brief Get the field width for printf() e.g. to align table columns
20 const size_t width = tuklib_mbstr_width(str, &len); local
21 if (width == (size_t)-1)
24 if (width > (size_t)columns_min)
27 if (width < (size_t)columns_min)
28 len += (size_t)columns_min - width;
/freebsd-11-stable/crypto/openssl/util/
H A Dtab_num.pl4 $width=40;
12 $n=$width-$i;
/freebsd-11-stable/sys/dev/fb/
H A Dgfb.h36 int width; member in struct:gfb_font
/freebsd-11-stable/usr.bin/systat/
H A Dsysput.c44 sysputspaces(WINDOW *wd, int row, int col, int width) argument
48 mvwaddstr(wd, row, col, str40 + sizeof(str40) - width - 1);
52 sysputstrs(WINDOW *wd, int row, int col, int width) argument
56 mvwaddstr(wnd, row, col, str40 + sizeof(str40) - width - 1);
60 sysputuint64(WINDOW *wd, int row, int col, int width, uint64_t val, int flags) argument
62 char unit, *ptr, *start, wrtbuf[width + width + 1];
72 len = humanize_number(&wrtbuf[width], width + 1, val, "",
76 else if (len < width)
88 sysputwuint64(WINDOW *wd, int row, int col, int width, uint64_t val, int flags) argument
110 sysputpage(WINDOW *wd, int row, int col, int width, uint64_t pages, int flags) argument
[all...]
/freebsd-11-stable/lib/libc/stdlib/
H A Dqsort_r.c14 qsort_b(void *base, size_t nel, size_t width, qsort_block compar) argument
16 qsort_r(base, nel, width, compar,
H A Dlsearch.c22 void *lsearch(const void *key, void *base, size_t *nelp, size_t width, argument
26 return (lwork(key, base, nelp, width, compar, 1));
29 void *lfind(const void *key, const void *base, size_t *nelp, size_t width, argument
33 return (lwork(key, base, nelp, width, compar, 0));
37 lwork(const void *key, const void *base, size_t *nelp, size_t width, argument
43 for (endp = (uint8_t *)(ep + width * *nelp); ep < endp; ep += width) {
56 memcpy(endp, key, width);
/freebsd-11-stable/usr.sbin/bhyve/
H A Dbhyvegc.h38 int width; member in struct:bhyvegc_image
43 struct bhyvegc *bhyvegc_init(int width, int height, void *fbaddr);
45 void bhyvegc_resize(struct bhyvegc *gc, int width, int height);
H A Dbhyvegc.c46 bhyvegc_init(int width, int height, void *fbaddr) argument
54 gc_image->width = width;
60 gc_image->data = calloc(width * height, sizeof (uint32_t));
79 bhyvegc_resize(struct bhyvegc *gc, int width, int height) argument
85 gc_image->width = width;
88 gc_image->data = reallocarray(gc_image->data, width * height,
91 memset(gc_image->data, 0, width * height *
/freebsd-11-stable/contrib/groff/src/include/
H A Dpaper.h24 double width; // in PS points member in struct:paper
/freebsd-11-stable/usr.bin/mkcsmapper/
H A Dldef.h37 u_int32_t width; member in struct:__anon8641
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dpaper.cpp27 // length and width in mm
32 int width = start_width; local
42 papersizes[offset + i].width = (double)width / 25.4;
46 length = width;
47 width = tmp / 2;
51 // length and width in inch
53 double length, double width )
59 papersizes[idx].width = width;
[all...]
/freebsd-11-stable/contrib/dialog/
H A Dyesno.c34 dialog_yesno(const char *title, const char *cprompt, int height, int width) argument
60 int req_wide = width;
66 dlg_auto_size(title, prompt, &height, &width, 2, min_width);
67 dlg_print_size(height, width);
68 dlg_ctl_size(height, width);
70 x = dlg_box_x_ordinate(width);
75 dlg_move_window(dialog, height, width, y, x);
79 dialog = dlg_new_window(height, width, y, x);
84 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
94 buttons, button, FALSE, width);
[all...]
H A Dpause.c51 int width,
65 int old_width = width;
92 width = old_width;
96 dlg_auto_size(title, prompt, &height, &width,
99 dlg_button_layout(buttons, &width);
101 dlg_auto_size(title, prompt, &height, &width,
106 dlg_print_size(height, width);
107 dlg_ctl_size(height, width);
110 x = dlg_box_x_ordinate(width);
113 dialog = dlg_new_window(height, width,
48 dialog_pause(const char *title, const char *cprompt, int height, int width, int seconds) argument
[all...]
H A Dmsgbox.c35 dialog_msgbox(const char *title, const char *cprompt, int height, int width, argument
70 req_wide = width;
77 dlg_auto_size(title, prompt, &height, &width,
80 dlg_print_size(height, width);
81 dlg_ctl_size(height, width);
83 x = dlg_box_x_ordinate(width);
88 dlg_move_window(dialog, height, width, y, x);
92 dialog = dlg_new_window(height, width, y, x);
100 dlg_draw_box2(dialog, 0, 0, height, width, dialog_attr, border_attr, border2_attr);
107 mouse_mkbutton(height - 2, width /
[all...]
/freebsd-11-stable/usr.bin/fold/
H A Dfold.c71 int rval, width; local
75 width = -1;
86 if ((width = atoi(optarg)) <= 0) {
87 errx(1, "illegal width value");
92 /* Accept a width as eg. -30. Note that a width
98 /* The width is a number with multiple digits:
100 width = width * 10 + (ch - '0');
103 /* Set the width, unles
155 fold(int width) argument
[all...]
/freebsd-11-stable/crypto/openssh/regress/unittests/utf8/
H A Dtests.c22 int len, width; local
24 width = 1;
26 len = snmprintf(buf, sizeof(buf), &width, "\377");
29 ASSERT_INT_EQ(width, 0);
34 one(int utf8, const char *name, const char *mbs, int width, argument
46 wp = wantwidth == -2 ? NULL : &width;
50 ASSERT_INT_EQ(width, wantwidth);
/freebsd-11-stable/contrib/mdocml/
H A Dtest-wchar.c31 int width; local
50 if ((width = wcwidth(L' ')) != 1) {
51 fprintf(stderr, "wcwidth(L' ') returned %d\n", width);
/freebsd-11-stable/sys/dev/nand/
H A Dnfc_at91.h42 uint32_t width; /* 8 or 16 bits (specify in bits) */ member in struct:at91_nand_params

Completed in 134 milliseconds

1234567891011>>