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

1234567891011>>

/freebsd-10-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-10-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-10-stable/crypto/openssl/util/
H A Dtab_num.pl4 $width=40;
12 $n=$width-$i;
/freebsd-10-stable/sys/dev/fb/
H A Dgfb.h36 int width; member in struct:gfb_font
/freebsd-10-stable/contrib/groff/src/include/
H A Dpaper.h24 double width; // in PS points member in struct:paper
/freebsd-10-stable/usr.bin/mkcsmapper/
H A Dldef.h35 u_int32_t width; member in struct:__anon11973
/freebsd-10-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-10-stable/lib/libc/stdlib/
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
47 for (endp = (uint8_t *)(ep + width * *nelp); ep < endp; ep += width) {
60 memcpy(endp, key, width);
/freebsd-10-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-10-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-10-stable/crypto/openssh/regress/unittests/utf8/
H A Dtests.c23 int len, width; local
25 width = 1;
27 len = snmprintf(buf, sizeof(buf), &width, "\377");
30 ASSERT_INT_EQ(width, 0);
35 one(const char *name, const char *mbs, int width, argument
47 wp = wantwidth == -2 ? NULL : &width;
51 ASSERT_INT_EQ(width, wantwidth);
/freebsd-10-stable/sys/dev/io/
H A Diodev.h38 u_int width; member in struct:iodev_pio_req
/freebsd-10-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
/freebsd-10-stable/sys/gnu/dts/arm/
H A Ds5pv210-torbreck.dts63 bus-width = <4>;
70 bus-width = <4>;
77 bus-width = <4>;
84 bus-width = <4>;
/freebsd-10-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_dma.h55 int bcm_dma_setup_src(int ch, int dreq, int inc_addr, int width);
56 int bcm_dma_setup_dst(int ch, int dreq, int inc_addr, int width);
/freebsd-10-stable/contrib/ncurses/form/
H A Dfty_alnum.c43 int width; member in struct:__anon3900
63 argp->width = va_arg(*ap, int);
142 int width = ((const thisARG *)argp)->width; local
144 bool result = (width < 0);
146 Check_CTYPE_Field(result, bp, width, Check_This_Character);
H A Dfty_alpha.c43 int width; member in struct:__anon3901
63 argp->width = va_arg(*ap, int);
142 int width = ((const thisARG *)argp)->width; local
144 bool result = (width < 0);
146 Check_CTYPE_Field(result, bp, width, Check_This_Character);

Completed in 101 milliseconds

1234567891011>>