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

1234567891011>>

/netbsd-current/external/public-domain/xz/dist/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;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/aarch64/
H A Dalias-2.s4 /* <bfm> [Xd|xzr], [xzr|<Xr>], <imm>, <width> */
5 .macro bfm_inst op imm width
6 \op x0, xzr, #\imm, #\width
7 \op x0, x1, #\imm, #\width
8 \op xzr, x1, #\imm, #\width
9 \op xzr, xzr, #\imm, #\width
12 /* bfc [Xd|xzr], <imm>, <width> */
13 .macro bfc_inst imm width
14 bfc x0, #\imm, #\width
15 bfc xzr, #\imm, #\width
[all...]
/netbsd-current/sys/arch/atari/dev/
H A Dfont.h35 unsigned char width; member in struct:__anon8273
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dprint-utils.cc41 decimal2str (const char *sign, ULONGEST addr, int width) argument
54 width -= 9;
58 width += 9;
59 if (width < 0)
60 width = 0;
65 xsnprintf (str, PRINT_CELL_SIZE, "%s%0*lu", sign, width, temp[0]);
68 xsnprintf (str, PRINT_CELL_SIZE, "%s%0*lu%09lu", sign, width,
72 xsnprintf (str, PRINT_CELL_SIZE, "%s%0*lu%09lu%09lu", sign, width,
84 octal2str (ULONGEST addr, int width) argument
95 width
231 hex_string_custom(LONGEST num, int width) argument
253 int_string(LONGEST val, int radix, int is_signed, int width, int use_c_format) argument
[all...]
/netbsd-current/external/mit/ctwm/libexec/
H A Dctwm_font_size32 width=$(xwininfo -root | awk '/Width:/{ print $2; }')
52 if [ "$width" -gt 6088 -a "$height" -gt 3656 ]; then
54 elif [ "$width" -gt 3048 -a "$height" -gt 1832 ]; then
56 elif [ "$width" -gt 2248 -a "$height" -gt 1400 ]; then
58 elif [ "$width" -gt 640 -a "$height" -gt 480 ]; then
/netbsd-current/usr.bin/mkcsmapper/
H A Dldef.h32 u_int32_t width; member in struct:__anon13534
/netbsd-current/external/gpl2/groff/dist/src/include/
H A Dpaper.h26 double width; // in PS points member in struct:paper
/netbsd-current/sys/external/bsd/drm2/dist/include/drm/
H A Ddrm_utils.h17 int drm_get_panel_orientation_quirk(int width, int height);
/netbsd-current/external/gpl3/gdb/dist/gdb/target/
H A Dtarget.c65 target_read_string (CORE_ADDR addr, int len, int width, argument
86 buffer->reset ((gdb_byte *) xmalloc (fetchlen * width));
89 nfetch = partial_memory_read (addr, bufptr, fetchlen * width, &errcode)
90 / width;
91 addr += nfetch * width;
92 bufptr += nfetch * width;
115 buffer->reset ((gdb_byte *) xmalloc (nfetch * width));
118 (nfetch + bufsize) * width));
120 bufptr = buffer->get () + bufsize * width;
124 nfetch = partial_memory_read (addr, bufptr, nfetch * width,
[all...]
/netbsd-current/lib/libc/stdlib/
H A Dlsearch.c54 lsearch(const void *key, void *base, size_t *nelp, size_t width, argument
62 return(linear_base(key, base, nelp, width, compar, 1));
66 lfind(const void *key, const void *base, size_t *nelp, size_t width, argument
74 return(linear_base(key, __UNCONST(base), nelp, width, compar, 0));
78 linear_base(const void *key, void *base, size_t *nelp, size_t width, argument
87 end = (char *)base + *nelp * width;
88 for (element = (char *)base; element < end; element += width)
105 memcpy(end, key, width);
/netbsd-current/sys/dev/sun/
H A Dpfour_subr.c53 int width, height; local
83 width = 1152;
88 width = 1024;
93 width = 1280;
98 width = 1600;
103 width = 1440;
108 width = 640;
121 fb->fb_type.fb_width = width;
/netbsd-current/external/gpl2/groff/dist/src/libs/libgroff/
H A Dpaper.cpp29 // length and width in mm
34 int width = start_width; local
44 papersizes[offset + i].width = (double)width / 25.4;
48 length = width;
49 width = tmp / 2;
53 // length and width in inch
55 double length, double width )
61 papersizes[idx].width = width;
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dwatchpoint-reuse-slot.exp142 proc valid_addr_p {cmd offset width} {
159 if { $width != 2 && $width != 4 } {
164 if { [expr $width % 2] != 0 } {
169 if { [expr ($offset) % 8] == 0 && $width == 8 } {
174 } elseif { [expr ($offset) % 4] == 2 && $width == 2 } {
177 } elseif { [expr ($offset) % 4] == 1 && $width == 1 && $cmd != "hbreak" } {
193 proc watch_command {cmd base offset width hw_wp_p} {
200 set expr "*(buf.byte + $base + $offset)@$width"
211 set expr "*(buf.byte + $base + $offset)@$width"
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dwatchpoint-reuse-slot.exp151 proc valid_addr_p {cmd offset width} {
168 if { $width != 2 && $width != 4 } {
173 if { [expr $width % 2] != 0 } {
178 if { [expr ($offset) % 8] == 0 && $width == 8 } {
183 } elseif { [expr ($offset) % 4] == 2 && $width == 2 } {
186 } elseif { [expr ($offset) % 4] == 1 && $width == 1 && $cmd != "hbreak" } {
202 proc watch_command {cmd base offset width hw_wp_p} {
209 set expr "*(buf.byte + $base + $offset)@$width"
220 set expr "*(buf.byte + $base + $offset)@$width"
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dxerror.c41 static int width; local
51 width = 0;
55 width += mbswidth (program_name, 0) + 2;
58 width += mbswidth (prefix, 0);
67 for (i = width; i > 0; i--)
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
H A Dxerror.c41 static int width; local
51 width = 0;
55 width += mbswidth (program_name, 0) + 2;
58 width += mbswidth (prefix, 0);
67 for (i = width; i > 0; i--)
/netbsd-current/external/gpl2/gettext/dist/gnulib-local/lib/
H A Dxerror.c41 static int width; local
51 width = 0;
55 width += mbswidth (program_name, 0) + 2;
58 width += mbswidth (prefix, 0);
67 for (i = width; i > 0; i--)
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dprint-utils.cc41 decimal2str (const char *sign, ULONGEST addr, int width) argument
54 width -= 9;
58 width += 9;
59 if (width < 0)
60 width = 0;
65 xsnprintf (str, PRINT_CELL_SIZE, "%s%0*lu", sign, width, temp[0]);
68 xsnprintf (str, PRINT_CELL_SIZE, "%s%0*lu%09lu", sign, width,
72 xsnprintf (str, PRINT_CELL_SIZE, "%s%0*lu%09lu%09lu", sign, width,
83 octal2str (ULONGEST addr, int width) argument
94 width
237 hex_string_custom(LONGEST num, int width) argument
259 int_string(LONGEST val, int radix, int is_signed, int width, int use_c_format) argument
[all...]
/netbsd-current/sys/dev/hpc/
H A Dfontconv.c9 int width, height, ascent; variable
23 width = 8;
43 width_in_bytes = (width + 7) / 8;
47 fontname, width, height, code);
74 for (m = 0x80000000, j = 0; j < width; j++, m >>= 1) {
91 fontname, width, height);
96 fprintf(ofp, " %d,\t\t\t\t/* width */\n", width);
102 fontname, width, height);
115 width_in_bytes = (width
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
H A Dsvga_overlay.h141 uint32 *width, /* IN / OUT */
149 *width = (*width + 1) & ~1;
158 *size = (*width) * (*height);
161 pitches[0] = *width;
168 tmp = *width >> 1;
186 *size = *width * 2;
140 VMwareVideoGetAttributes(const SVGAOverlayFormat format, uint32 *width, uint32 *height, uint32 *size, uint32 *pitches, uint32 *offsets) argument
/netbsd-current/sys/arch/hpc/stand/hpcboot/
H A Dframebuffer.h36 int bpp, width, height, linebytes; member in struct:FrameBufferInfo::framebuffer_info
54 int width(void) { return _fb->width; } function in class:FrameBufferInfo
/netbsd-current/external/bsd/mdocml/dist/
H A Dtest-wchar.c27 int width; local
46 if ((width = wcwidth(L' ')) != 1) {
47 fprintf(stderr, "wcwidth(L' ') returned %d\n", width);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/tui/
H A Dtui-out.h35 void do_field_signed (int fldno, int width, ui_align align, const char *fldname,
37 void do_field_string (int fldno, int width, ui_align align, const char *fldname,
39 void do_field_fmt (int fldno, int width, ui_align align, const char *fldname,
/netbsd-current/external/gpl3/gdb/dist/gdb/tui/
H A Dtui-out.h35 void do_field_signed (int fldno, int width, ui_align align, const char *fldname,
37 void do_field_string (int fldno, int width, ui_align align, const char *fldname,
39 void do_field_fmt (int fldno, int width, ui_align align, const char *fldname,
/netbsd-current/external/mit/libuv/dist/docs/code/tty-gravity/
H A Dmain.c10 int width, height; variable
21 (unsigned long) (width-strlen(message))/2,
38 if (uv_tty_get_winsize(&tty, &width, &height)) {
44 fprintf(stderr, "Width %d, height %d\n", width, height);

Completed in 273 milliseconds

1234567891011>>