HelenOS sources
width 270 common/printf/printf_core.c static errno_t _format_char(const char c, size_t width, uint32_t flags,
width 275 common/printf/printf_core.c if (width <= bytes)
width 280 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 282 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 295 common/printf/printf_core.c static errno_t _format_uchar(const char32_t ch, size_t width, uint32_t flags,
width 314 common/printf/printf_core.c if (width <= bytes)
width 319 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 321 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 335 common/printf/printf_core.c static errno_t _format_cstr(const char *str, size_t width, int precision,
width 345 common/printf/printf_core.c if (width <= bytes)
width 350 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 352 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 366 common/printf/printf_core.c static errno_t _format_wstr(char32_t *str, size_t width, int precision,
width 370 common/printf/printf_core.c return _format_cstr(_nullstr, width, precision, flags, ps, written_bytes);
width 379 common/printf/printf_core.c if (width <= bytes)
width 384 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 386 common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 420 common/printf/printf_core.c static errno_t _format_number(uint64_t num, size_t width, int precision, int base,
width 477 common/printf/printf_core.c if (width > real_size)
width 478 common/printf/printf_core.c TRY(_write_spaces(width - real_size, ps, written_bytes));
width 502 common/printf/printf_core.c if (width > real_size)
width 503 common/printf/printf_core.c TRY(_write_zeros(width - real_size, ps, written_bytes));
width 521 common/printf/printf_core.c if (width > real_size)
width 522 common/printf/printf_core.c TRY(_write_spaces(width - real_size, ps, written_bytes));
width 570 common/printf/printf_core.c static errno_t _format_special(ieee_double_t val, int width, uint32_t flags,
width 586 common/printf/printf_core.c int padding_len = max(0, width - ((sign ? 1 : 0) + str_len));
width 659 common/printf/printf_core.c static errno_t _format_double_str_fixed(double_str_t *val_str, int precision, int width,
width 692 common/printf/printf_core.c int padding_len = max(0, width - num_len);
width 752 common/printf/printf_core.c static errno_t _format_double_fixed(double g, int precision, int width,
width 766 common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 803 common/printf/printf_core.c return _format_double_str_fixed(&val_str, precision, width, flags, ps, written_bytes);
width 835 common/printf/printf_core.c int width, uint32_t flags, printf_spec_t *ps, size_t *written_bytes)
width 864 common/printf/printf_core.c int padding_len = max(0, width - num_len);
width 919 common/printf/printf_core.c static errno_t _format_double_scientific(double g, int precision, int width,
width 928 common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 965 common/printf/printf_core.c return _format_double_str_scient(&val_str, precision, width, flags, ps, written_bytes);
width 983 common/printf/printf_core.c static errno_t _format_double_generic(double g, int precision, int width,
width 989 common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 1009 common/printf/printf_core.c return _format_double_fixed(g, precision, width,
width 1013 common/printf/printf_core.c return _format_double_scientific(g, precision, width,
width 1038 common/printf/printf_core.c return _format_double_str_fixed(&val_str, precision, width, flags, ps, written_bytes);
width 1042 common/printf/printf_core.c return _format_double_str_scient(&val_str, precision, width, flags, ps, written_bytes);
width 1064 common/printf/printf_core.c static errno_t _format_double(double g, char spec, int precision, int width,
width 1073 common/printf/printf_core.c return _format_double_fixed(g, precision, width, flags, ps, written_chars);
width 1080 common/printf/printf_core.c return _format_double_scientific(g, precision, width, flags, ps, written_chars);
width 1086 common/printf/printf_core.c return _format_double_generic(g, precision, width, flags, ps, written_chars);
width 1320 common/printf/printf_core.c int width = -1;
width 1323 common/printf/printf_core.c width = va_arg(ap, int);
width 1325 common/printf/printf_core.c if (width < 0) {
width 1327 common/printf/printf_core.c width = (width == INT_MIN) ? INT_MAX : -width;
width 1331 common/printf/printf_core.c width = _read_num(fmt, &nxt);
width 1359 common/printf/printf_core.c rc = _format_wstr(va_arg(ap, char32_t *), width, precision, flags, ps, &counter);
width 1361 common/printf/printf_core.c rc = _format_cstr(va_arg(ap, char *), width, precision, flags, ps, &counter);
width 1366 common/printf/printf_core.c rc = _format_uchar(va_arg(ap, wint_t), width, flags, ps, &counter);
width 1368 common/printf/printf_core.c rc = _format_char(va_arg(ap, int), width, flags, ps, &counter);
width 1382 common/printf/printf_core.c width, flags, ps, &counter);
width 1384 common/printf/printf_core.c rc = _format_cstr("<float unsupported>", width, -1, 0, ps, &counter);
width 1462 common/printf/printf_core.c rc = _format_number(number, width, precision, base, flags, ps, &counter);
width 797 common/str.c size_t width = 0;
width 802 common/str.c width += chr_width(ch);
width 804 common/str.c return width;
width 176 kernel/arch/arm32/src/mach/raspberrypi/raspberrypi.c uint32_t width, height;
width 179 kernel/arch/arm32/src/mach/raspberrypi/raspberrypi.c if (!bcm2835_mbox_get_fb_size(&width, &height)) {
width 181 kernel/arch/arm32/src/mach/raspberrypi/raspberrypi.c width = 640;
width 184 kernel/arch/arm32/src/mach/raspberrypi/raspberrypi.c if (bcm2835_fb_init(&prop, width, height)) {
width 83 kernel/arch/ia64/include/arch/mm/tlb.h extern void dtr_purge(uintptr_t page, size_t width);
width 400 kernel/arch/ia64/src/mm/tlb.c void dtr_purge(uintptr_t page, size_t width)
width 405 kernel/arch/ia64/src/mm/tlb.c [width] "r" (width << 2)
width 134 kernel/genarch/include/genarch/drivers/bcm2835/mbox.h uint32_t width;
width 141 kernel/genarch/include/genarch/drivers/bcm2835/mbox.h ioport32_t width;
width 154 kernel/genarch/include/genarch/drivers/bcm2835/mbox.h extern bool bcm2835_fb_init(fb_properties_t *prop, uint32_t width, uint32_t heigth);
width 130 kernel/genarch/include/genarch/multiboot/multiboot2.h uint32_t width;
width 88 kernel/genarch/src/drivers/bcm2835/mbox.c bool bcm2835_fb_init(fb_properties_t *prop, uint32_t width, uint32_t height)
width 97 kernel/genarch/src/drivers/bcm2835/mbox.c fb_desc->width = width;
width 99 kernel/genarch/src/drivers/bcm2835/mbox.c fb_desc->virt_width = fb_desc->width;
width 117 kernel/genarch/src/drivers/bcm2835/mbox.c prop->x = fb_desc->width;
width 154 kernel/genarch/src/drivers/bcm2835/mbox.c *w = msg->body.width;
width 88 kernel/genarch/src/multiboot/multiboot2.c bfb_width = fbinfo->width;
width 270 kernel/generic/common/printf/printf_core.c static errno_t _format_char(const char c, size_t width, uint32_t flags,
width 275 kernel/generic/common/printf/printf_core.c if (width <= bytes)
width 280 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 282 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 295 kernel/generic/common/printf/printf_core.c static errno_t _format_uchar(const char32_t ch, size_t width, uint32_t flags,
width 314 kernel/generic/common/printf/printf_core.c if (width <= bytes)
width 319 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 321 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 335 kernel/generic/common/printf/printf_core.c static errno_t _format_cstr(const char *str, size_t width, int precision,
width 345 kernel/generic/common/printf/printf_core.c if (width <= bytes)
width 350 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 352 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 366 kernel/generic/common/printf/printf_core.c static errno_t _format_wstr(char32_t *str, size_t width, int precision,
width 370 kernel/generic/common/printf/printf_core.c return _format_cstr(_nullstr, width, precision, flags, ps, written_bytes);
width 379 kernel/generic/common/printf/printf_core.c if (width <= bytes)
width 384 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 386 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 420 kernel/generic/common/printf/printf_core.c static errno_t _format_number(uint64_t num, size_t width, int precision, int base,
width 477 kernel/generic/common/printf/printf_core.c if (width > real_size)
width 478 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - real_size, ps, written_bytes));
width 502 kernel/generic/common/printf/printf_core.c if (width > real_size)
width 503 kernel/generic/common/printf/printf_core.c TRY(_write_zeros(width - real_size, ps, written_bytes));
width 521 kernel/generic/common/printf/printf_core.c if (width > real_size)
width 522 kernel/generic/common/printf/printf_core.c TRY(_write_spaces(width - real_size, ps, written_bytes));
width 570 kernel/generic/common/printf/printf_core.c static errno_t _format_special(ieee_double_t val, int width, uint32_t flags,
width 586 kernel/generic/common/printf/printf_core.c int padding_len = max(0, width - ((sign ? 1 : 0) + str_len));
width 659 kernel/generic/common/printf/printf_core.c static errno_t _format_double_str_fixed(double_str_t *val_str, int precision, int width,
width 692 kernel/generic/common/printf/printf_core.c int padding_len = max(0, width - num_len);
width 752 kernel/generic/common/printf/printf_core.c static errno_t _format_double_fixed(double g, int precision, int width,
width 766 kernel/generic/common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 803 kernel/generic/common/printf/printf_core.c return _format_double_str_fixed(&val_str, precision, width, flags, ps, written_bytes);
width 835 kernel/generic/common/printf/printf_core.c int width, uint32_t flags, printf_spec_t *ps, size_t *written_bytes)
width 864 kernel/generic/common/printf/printf_core.c int padding_len = max(0, width - num_len);
width 919 kernel/generic/common/printf/printf_core.c static errno_t _format_double_scientific(double g, int precision, int width,
width 928 kernel/generic/common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 965 kernel/generic/common/printf/printf_core.c return _format_double_str_scient(&val_str, precision, width, flags, ps, written_bytes);
width 983 kernel/generic/common/printf/printf_core.c static errno_t _format_double_generic(double g, int precision, int width,
width 989 kernel/generic/common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 1009 kernel/generic/common/printf/printf_core.c return _format_double_fixed(g, precision, width,
width 1013 kernel/generic/common/printf/printf_core.c return _format_double_scientific(g, precision, width,
width 1038 kernel/generic/common/printf/printf_core.c return _format_double_str_fixed(&val_str, precision, width, flags, ps, written_bytes);
width 1042 kernel/generic/common/printf/printf_core.c return _format_double_str_scient(&val_str, precision, width, flags, ps, written_bytes);
width 1064 kernel/generic/common/printf/printf_core.c static errno_t _format_double(double g, char spec, int precision, int width,
width 1073 kernel/generic/common/printf/printf_core.c return _format_double_fixed(g, precision, width, flags, ps, written_chars);
width 1080 kernel/generic/common/printf/printf_core.c return _format_double_scientific(g, precision, width, flags, ps, written_chars);
width 1086 kernel/generic/common/printf/printf_core.c return _format_double_generic(g, precision, width, flags, ps, written_chars);
width 1320 kernel/generic/common/printf/printf_core.c int width = -1;
width 1323 kernel/generic/common/printf/printf_core.c width = va_arg(ap, int);
width 1325 kernel/generic/common/printf/printf_core.c if (width < 0) {
width 1327 kernel/generic/common/printf/printf_core.c width = (width == INT_MIN) ? INT_MAX : -width;
width 1331 kernel/generic/common/printf/printf_core.c width = _read_num(fmt, &nxt);
width 1359 kernel/generic/common/printf/printf_core.c rc = _format_wstr(va_arg(ap, char32_t *), width, precision, flags, ps, &counter);
width 1361 kernel/generic/common/printf/printf_core.c rc = _format_cstr(va_arg(ap, char *), width, precision, flags, ps, &counter);
width 1366 kernel/generic/common/printf/printf_core.c rc = _format_uchar(va_arg(ap, wint_t), width, flags, ps, &counter);
width 1368 kernel/generic/common/printf/printf_core.c rc = _format_char(va_arg(ap, int), width, flags, ps, &counter);
width 1382 kernel/generic/common/printf/printf_core.c width, flags, ps, &counter);
width 1384 kernel/generic/common/printf/printf_core.c rc = _format_cstr("<float unsupported>", width, -1, 0, ps, &counter);
width 1462 kernel/generic/common/printf/printf_core.c rc = _format_number(number, width, precision, base, flags, ps, &counter);
width 797 kernel/generic/common/str.c size_t width = 0;
width 802 kernel/generic/common/str.c width += chr_width(ch);
width 804 kernel/generic/common/str.c return width;
width 44 kernel/generic/include/debug/line.h unsigned width;
width 305 kernel/generic/src/debug/line.c unsigned width;
width 307 kernel/generic/src/debug/line.c FIELD(unit_length, PRId64, read_initial_length(&data, data_end, &width));
width 308 kernel/generic/src/debug/line.c FIELD(width, "d", width);
width 329 kernel/generic/src/debug/line.c FIELD(header_length, PRIu64, read_uint(&data, data_end, width));
width 377 kernel/generic/src/debug/line.c hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end, width);
width 381 kernel/generic/src/debug/line.c hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end, width);
width 396 kernel/generic/src/debug/line.c hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end, width);
width 400 kernel/generic/src/debug/line.c hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end, width);
width 404 kernel/generic/src/debug/line.c static bool has_usable_name(const uint8_t *format, const uint8_t *format_end, unsigned width)
width 420 kernel/generic/src/debug/line.c if (!skip_data(form, &dummy, NULL, width)) {
width 470 kernel/generic/src/debug/line.c if (!has_usable_name(hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end, hdr->width))
width 494 kernel/generic/src/debug/line.c uint64_t offset = read_uint(&fns, fns_end, hdr->width);
width 519 kernel/generic/src/debug/line.c skip_data(form, &fns, fns_end, hdr->width);
width 564 kernel/generic/src/debug/line.c if (!has_usable_name(hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end, hdr->width))
width 588 kernel/generic/src/debug/line.c uint64_t offset = read_uint(&fns, fns_end, hdr->width);
width 596 kernel/generic/src/debug/line.c skip_data(form, &fns, fns_end, hdr->width);
width 36 kernel/generic/src/debug/util.c const uint8_t *data_end, unsigned width)
width 51 kernel/generic/src/debug/util.c safe_increment(data, data_end, width);
width 139 kernel/generic/src/debug/util.c unsigned width)
width 152 kernel/generic/src/debug/util.c print_formed_data(scs, form, &data, data_end, width);
width 174 kernel/generic/src/debug/util.c const uint8_t *data_end, unsigned width)
width 186 kernel/generic/src/debug/util.c offset = read_uint(data, data_end, width);
width 194 kernel/generic/src/debug/util.c offset = read_uint(data, data_end, width);
width 202 kernel/generic/src/debug/util.c if (width == 4)
width 203 kernel/generic/src/debug/util.c DEBUGF("0x%08" PRIx64, read_uint(data, data_end, width));
width 205 kernel/generic/src/debug/util.c DEBUGF("0x%016" PRIx64, read_uint(data, data_end, width));
width 191 kernel/generic/src/debug/util.h static inline uint64_t read_initial_length(const uint8_t **data, const uint8_t *data_end, unsigned *width)
width 195 kernel/generic/src/debug/util.h *width = 8;
width 198 kernel/generic/src/debug/util.h *width = 4;
width 248 kernel/generic/src/debug/util.h const uint8_t *format, const uint8_t *format_end, unsigned width)
width 255 kernel/generic/src/debug/util.h skip_data(form, data, data_end, width);
width 261 kernel/generic/src/debug/util.h unsigned width)
width 264 kernel/generic/src/debug/util.h skip_formatted_entry(data, data_end, format, format_end, width);
width 100 uspace/app/bdsh/cmds/modules/ls/ls.c int width = 13;
width 104 uspace/app/bdsh/cmds/modules/ls/ls.c printf("%-40s\t%*llu\n", de->name, width, (long long) de->s.size);
width 126 uspace/app/bdsh/cmds/modules/ls/ls.c printf("%-40s\t%*s %2s\n", de->name, width - 3, rptr, sep + 1);
width 129 uspace/app/bdsh/cmds/modules/ls/ls.c printf("%-40s\t%*s\n", de->name, width, "<dir>");
width 713 uspace/app/fontedit/fontedit.c w = fedit->width;
width 866 uspace/app/fontedit/fontedit.c fedit->width = vw;
width 54 uspace/app/fontedit/fontedit.h int width;
width 386 uspace/app/gfxdemo/gfxdemo.c pixelmap.width = w;
width 421 uspace/app/gfxdemo/gfxdemo.c pixelmap.width = w;
width 456 uspace/app/gfxdemo/gfxdemo.c pixelmap.width = w;
width 899 uspace/app/gfxdemo/gfxdemo.c fmt.width = rect.p1.x - rect.p0.x;
width 337 uspace/app/terminal/terminal.c pixelmap.width = term->w;
width 349 uspace/app/terminal/terminal.c sysarg_t pixels = pixelmap.height * pixelmap.width;
width 353 uspace/app/terminal/terminal.c term_update_region(term, 0, 0, pixelmap.width, pixelmap.height);
width 769 uspace/app/terminal/terminal.c int width = rect.p1.x - rect.p0.x;
width 787 uspace/app/terminal/terminal.c params.rect.p1.x = width;
width 803 uspace/app/terminal/terminal.c term->w = width;
width 1002 uspace/app/terminal/terminal.c gfx_coord_t width, gfx_coord_t height,
width 1034 uspace/app/terminal/terminal.c gfx_rect_t rect = { { 0, 0 }, { width, height } };
width 1054 uspace/app/terminal/terminal.c errno_t terminal_create(const char *display_spec, sysarg_t width,
width 1082 uspace/app/terminal/terminal.c rc = term_init_window(term, display_spec, width, height,
width 359 uspace/app/top/screen.c int width = table->columns[i].width;
width 363 uspace/app/top/screen.c if (width == 0) {
width 367 uspace/app/top/screen.c width = cols - col - 1;
width 369 uspace/app/top/screen.c printf("[%-*.*s]", width - 2, width - 2, name);
width 388 uspace/app/top/screen.c int width = table->columns[column_index].width;
width 398 uspace/app/top/screen.c if (width == 0) {
width 400 uspace/app/top/screen.c width = cols - col - 1;
width 405 uspace/app/top/screen.c printf("%*s", width, "");
width 408 uspace/app/top/screen.c printf("%*" PRIu64, width, field->uint);
width 412 uspace/app/top/screen.c width -= 3;
width 414 uspace/app/top/screen.c printf("%*" PRIu64 "%s", width, val, psuffix);
width 418 uspace/app/top/screen.c width -= 1;
width 420 uspace/app/top/screen.c printf("%*" PRIu64 "%c", width, val, suffix);
width 423 uspace/app/top/screen.c width -= 5; /* nnn.% */
width 424 uspace/app/top/screen.c if (width > 2) {
width 425 uspace/app/top/screen.c printf("%*s", width - 2, "");
width 426 uspace/app/top/screen.c width = 2;
width 428 uspace/app/top/screen.c print_percent(field->fixed, width);
width 431 uspace/app/top/screen.c printf("%-*.*s", width, width, field->string);
width 103 uspace/app/top/top.h int width;
width 1467 uspace/app/uidemo/uidemo.c pixelmap.width = w;
width 361 uspace/dist/src/c/demos/top/screen.c int width = table->columns[i].width;
width 365 uspace/dist/src/c/demos/top/screen.c if (width == 0) {
width 369 uspace/dist/src/c/demos/top/screen.c width = cols - col - 1;
width 371 uspace/dist/src/c/demos/top/screen.c printf("[%-*.*s]", width - 2, width - 2, name);
width 390 uspace/dist/src/c/demos/top/screen.c int width = table->columns[column_index].width;
width 400 uspace/dist/src/c/demos/top/screen.c if (width == 0) {
width 402 uspace/dist/src/c/demos/top/screen.c width = cols - col - 1;
width 407 uspace/dist/src/c/demos/top/screen.c printf("%*s", width, "");
width 410 uspace/dist/src/c/demos/top/screen.c printf("%*" PRIu64, width, field->uint);
width 414 uspace/dist/src/c/demos/top/screen.c width -= 3;
width 416 uspace/dist/src/c/demos/top/screen.c printf("%*" PRIu64 "%s", width, val, psuffix);
width 420 uspace/dist/src/c/demos/top/screen.c width -= 1;
width 422 uspace/dist/src/c/demos/top/screen.c printf("%*" PRIu64 "%c", width, val, suffix);
width 425 uspace/dist/src/c/demos/top/screen.c width -= 5; /* nnn.% */
width 426 uspace/dist/src/c/demos/top/screen.c if (width > 2) {
width 427 uspace/dist/src/c/demos/top/screen.c printf("%*s", width - 2, "");
width 428 uspace/dist/src/c/demos/top/screen.c width = 2;
width 430 uspace/dist/src/c/demos/top/screen.c print_percent(field->fixed, width);
width 433 uspace/dist/src/c/demos/top/screen.c printf("%-*.*s", width, width, field->string);
width 103 uspace/dist/src/c/demos/top/top.h int width;
width 286 uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c dispc->active_fb.width = x;
width 302 uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c (((y) * ((d)->active_fb.width + (d)->active_fb.pitch) + (x)) \
width 321 uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c info->rect.p1.x = dispc->active_fb.width;
width 499 uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c pbm.width = bmdim.x;
width 57 uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.h unsigned width;
width 316 uspace/drv/fb/kfb/port.c pbm.width = bmdim.x;
width 492 uspace/drv/fb/kfb/port.c sysarg_t width;
width 493 uspace/drv/fb/kfb/port.c rc = sysinfo_get_value("fb.width", &width);
width 516 uspace/drv/fb/kfb/port.c kfb->rect.p1.x = width;
width 270 uspace/lib/c/common/printf/printf_core.c static errno_t _format_char(const char c, size_t width, uint32_t flags,
width 275 uspace/lib/c/common/printf/printf_core.c if (width <= bytes)
width 280 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 282 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 295 uspace/lib/c/common/printf/printf_core.c static errno_t _format_uchar(const char32_t ch, size_t width, uint32_t flags,
width 314 uspace/lib/c/common/printf/printf_core.c if (width <= bytes)
width 319 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 321 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 335 uspace/lib/c/common/printf/printf_core.c static errno_t _format_cstr(const char *str, size_t width, int precision,
width 345 uspace/lib/c/common/printf/printf_core.c if (width <= bytes)
width 350 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 352 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 366 uspace/lib/c/common/printf/printf_core.c static errno_t _format_wstr(char32_t *str, size_t width, int precision,
width 370 uspace/lib/c/common/printf/printf_core.c return _format_cstr(_nullstr, width, precision, flags, ps, written_bytes);
width 379 uspace/lib/c/common/printf/printf_core.c if (width <= bytes)
width 384 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 386 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - bytes, ps, written_bytes));
width 420 uspace/lib/c/common/printf/printf_core.c static errno_t _format_number(uint64_t num, size_t width, int precision, int base,
width 477 uspace/lib/c/common/printf/printf_core.c if (width > real_size)
width 478 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - real_size, ps, written_bytes));
width 502 uspace/lib/c/common/printf/printf_core.c if (width > real_size)
width 503 uspace/lib/c/common/printf/printf_core.c TRY(_write_zeros(width - real_size, ps, written_bytes));
width 521 uspace/lib/c/common/printf/printf_core.c if (width > real_size)
width 522 uspace/lib/c/common/printf/printf_core.c TRY(_write_spaces(width - real_size, ps, written_bytes));
width 570 uspace/lib/c/common/printf/printf_core.c static errno_t _format_special(ieee_double_t val, int width, uint32_t flags,
width 586 uspace/lib/c/common/printf/printf_core.c int padding_len = max(0, width - ((sign ? 1 : 0) + str_len));
width 659 uspace/lib/c/common/printf/printf_core.c static errno_t _format_double_str_fixed(double_str_t *val_str, int precision, int width,
width 692 uspace/lib/c/common/printf/printf_core.c int padding_len = max(0, width - num_len);
width 752 uspace/lib/c/common/printf/printf_core.c static errno_t _format_double_fixed(double g, int precision, int width,
width 766 uspace/lib/c/common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 803 uspace/lib/c/common/printf/printf_core.c return _format_double_str_fixed(&val_str, precision, width, flags, ps, written_bytes);
width 835 uspace/lib/c/common/printf/printf_core.c int width, uint32_t flags, printf_spec_t *ps, size_t *written_bytes)
width 864 uspace/lib/c/common/printf/printf_core.c int padding_len = max(0, width - num_len);
width 919 uspace/lib/c/common/printf/printf_core.c static errno_t _format_double_scientific(double g, int precision, int width,
width 928 uspace/lib/c/common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 965 uspace/lib/c/common/printf/printf_core.c return _format_double_str_scient(&val_str, precision, width, flags, ps, written_bytes);
width 983 uspace/lib/c/common/printf/printf_core.c static errno_t _format_double_generic(double g, int precision, int width,
width 989 uspace/lib/c/common/printf/printf_core.c return _format_special(val, width, flags, ps, written_bytes);
width 1009 uspace/lib/c/common/printf/printf_core.c return _format_double_fixed(g, precision, width,
width 1013 uspace/lib/c/common/printf/printf_core.c return _format_double_scientific(g, precision, width,
width 1038 uspace/lib/c/common/printf/printf_core.c return _format_double_str_fixed(&val_str, precision, width, flags, ps, written_bytes);
width 1042 uspace/lib/c/common/printf/printf_core.c return _format_double_str_scient(&val_str, precision, width, flags, ps, written_bytes);
width 1064 uspace/lib/c/common/printf/printf_core.c static errno_t _format_double(double g, char spec, int precision, int width,
width 1073 uspace/lib/c/common/printf/printf_core.c return _format_double_fixed(g, precision, width, flags, ps, written_chars);
width 1080 uspace/lib/c/common/printf/printf_core.c return _format_double_scientific(g, precision, width, flags, ps, written_chars);
width 1086 uspace/lib/c/common/printf/printf_core.c return _format_double_generic(g, precision, width, flags, ps, written_chars);
width 1320 uspace/lib/c/common/printf/printf_core.c int width = -1;
width 1323 uspace/lib/c/common/printf/printf_core.c width = va_arg(ap, int);
width 1325 uspace/lib/c/common/printf/printf_core.c if (width < 0) {
width 1327 uspace/lib/c/common/printf/printf_core.c width = (width == INT_MIN) ? INT_MAX : -width;
width 1331 uspace/lib/c/common/printf/printf_core.c width = _read_num(fmt, &nxt);
width 1359 uspace/lib/c/common/printf/printf_core.c rc = _format_wstr(va_arg(ap, char32_t *), width, precision, flags, ps, &counter);
width 1361 uspace/lib/c/common/printf/printf_core.c rc = _format_cstr(va_arg(ap, char *), width, precision, flags, ps, &counter);
width 1366 uspace/lib/c/common/printf/printf_core.c rc = _format_uchar(va_arg(ap, wint_t), width, flags, ps, &counter);
width 1368 uspace/lib/c/common/printf/printf_core.c rc = _format_char(va_arg(ap, int), width, flags, ps, &counter);
width 1382 uspace/lib/c/common/printf/printf_core.c width, flags, ps, &counter);
width 1384 uspace/lib/c/common/printf/printf_core.c rc = _format_cstr("<float unsupported>", width, -1, 0, ps, &counter);
width 1462 uspace/lib/c/common/printf/printf_core.c rc = _format_number(number, width, precision, base, flags, ps, &counter);
width 797 uspace/lib/c/common/str.c size_t width = 0;
width 802 uspace/lib/c/common/str.c width += chr_width(ch);
width 804 uspace/lib/c/common/str.c return width;
width 111 uspace/lib/c/generic/io/table.c column->width = 0;
width 412 uspace/lib/c/generic/io/table.c rc = fprintf(f, "%*s", -(int)column->width, cell->text);
width 436 uspace/lib/c/generic/io/table.c for (i = 0; i < column->width; i++) {
width 484 uspace/lib/c/generic/io/table.c size_t width;
width 520 uspace/lib/c/generic/io/table.c width = str_width(table->wcell->text);
width 521 uspace/lib/c/generic/io/table.c if (width > table->wcolumn->width)
width 522 uspace/lib/c/generic/io/table.c table->wcolumn->width = width;
width 110 uspace/lib/c/generic/stdio/scanf.c size_t width;
width 185 uspace/lib/c/generic/stdio/scanf.c spec->width = 0;
width 210 uspace/lib/c/generic/stdio/scanf.c spec->width = 0;
width 212 uspace/lib/c/generic/stdio/scanf.c spec->width *= 10;
width 213 uspace/lib/c/generic/stdio/scanf.c spec->width += digit_value(**fmt);
width 496 uspace/lib/c/generic/stdio/scanf.c static errno_t __fstrtoimax(FILE *f, int *numchar, int base, size_t width,
width 519 uspace/lib/c/generic/stdio/scanf.c --width;
width 524 uspace/lib/c/generic/stdio/scanf.c if (!isdigit(c) || width < 1) {
width 535 uspace/lib/c/generic/stdio/scanf.c --width;
width 537 uspace/lib/c/generic/stdio/scanf.c if (width > 0 && (c == 'x' || c == 'X')) {
width 538 uspace/lib/c/generic/stdio/scanf.c --width;
width 542 uspace/lib/c/generic/stdio/scanf.c if (width > 0 && isxdigit(c)) {
width 550 uspace/lib/c/generic/stdio/scanf.c if (width == 0) {
width 569 uspace/lib/c/generic/stdio/scanf.c --width;
width 570 uspace/lib/c/generic/stdio/scanf.c } while (width > 0 && isxdigit(c));
width 588 uspace/lib/c/generic/stdio/scanf.c static errno_t __fstrtoumax(FILE *f, int *numchar, int base, size_t width,
width 604 uspace/lib/c/generic/stdio/scanf.c if (!isdigit(c) || width < 1) {
width 615 uspace/lib/c/generic/stdio/scanf.c --width;
width 617 uspace/lib/c/generic/stdio/scanf.c if (width > 0 && (c == 'x' || c == 'X')) {
width 618 uspace/lib/c/generic/stdio/scanf.c --width;
width 622 uspace/lib/c/generic/stdio/scanf.c if (width > 0 && isxdigit(c)) {
width 630 uspace/lib/c/generic/stdio/scanf.c if (width == 0) {
width 649 uspace/lib/c/generic/stdio/scanf.c --width;
width 650 uspace/lib/c/generic/stdio/scanf.c } while (width > 0 && isxdigit(c));
width 667 uspace/lib/c/generic/stdio/scanf.c errno_t __fstrtold(FILE *f, int *numchar, size_t width,
width 696 uspace/lib/c/generic/stdio/scanf.c --width;
width 701 uspace/lib/c/generic/stdio/scanf.c if (!isdigit(c) || width < 1) {
width 722 uspace/lib/c/generic/stdio/scanf.c --width;
width 724 uspace/lib/c/generic/stdio/scanf.c if (width > 0 && (c == 'x' || c == 'X')) {
width 725 uspace/lib/c/generic/stdio/scanf.c --width;
width 728 uspace/lib/c/generic/stdio/scanf.c if (width > 0 && isxdigit(c)) {
width 754 uspace/lib/c/generic/stdio/scanf.c --width;
width 755 uspace/lib/c/generic/stdio/scanf.c } while (width > 0 && isxdigit(c));
width 760 uspace/lib/c/generic/stdio/scanf.c if (c == '.' && width > 1) {
width 765 uspace/lib/c/generic/stdio/scanf.c --width;
width 768 uspace/lib/c/generic/stdio/scanf.c while (width > 0 && isxdigit(c)) {
width 775 uspace/lib/c/generic/stdio/scanf.c --width;
width 783 uspace/lib/c/generic/stdio/scanf.c if ((width > 1 && base == 10 && (c == 'e' || c == 'E')) ||
width 784 uspace/lib/c/generic/stdio/scanf.c (width > 1 && base == 16 && (c == 'p' || c == 'P'))) {
width 789 uspace/lib/c/generic/stdio/scanf.c --width;
width 791 uspace/lib/c/generic/stdio/scanf.c if (width > 1 && (c == '+' || c == '-')) {
width 803 uspace/lib/c/generic/stdio/scanf.c --width;
width 808 uspace/lib/c/generic/stdio/scanf.c while (width > 0 && isdigit(c)) {
width 815 uspace/lib/c/generic/stdio/scanf.c --width;
width 843 uspace/lib/c/generic/stdio/scanf.c static errno_t __fgetchars(FILE *f, int *numchar, size_t width,
width 851 uspace/lib/c/generic/stdio/scanf.c for (cnt = 0; cnt < width; cnt++) {
width 870 uspace/lib/c/generic/stdio/scanf.c static errno_t __fgetstr(FILE *f, int *numchar, size_t width, strbuf_t *strbuf,
width 886 uspace/lib/c/generic/stdio/scanf.c for (cnt = 0; cnt < width; cnt++) {
width 976 uspace/lib/c/generic/stdio/scanf.c static errno_t __fgetscanstr(FILE *f, int *numchar, size_t width,
width 986 uspace/lib/c/generic/stdio/scanf.c for (cnt = 0; cnt < width; cnt++) {
width 1045 uspace/lib/c/generic/stdio/scanf.c size_t width;
width 1054 uspace/lib/c/generic/stdio/scanf.c width = cvtspec.have_width ? cvtspec.width : SIZE_MAX;
width 1073 uspace/lib/c/generic/stdio/scanf.c rc = __fstrtoimax(f, numchar, 10, width, &ival);
width 1079 uspace/lib/c/generic/stdio/scanf.c rc = __fstrtoumax(f, numchar, 10, width, &uval);
width 1085 uspace/lib/c/generic/stdio/scanf.c rc = __fstrtoumax(f, numchar, 8, width, &uval);
width 1091 uspace/lib/c/generic/stdio/scanf.c rc = __fstrtoumax(f, numchar, 16, width, &uval);
width 1097 uspace/lib/c/generic/stdio/scanf.c rc = __fstrtold(f, numchar, width, &fval);
width 1103 uspace/lib/c/generic/stdio/scanf.c rc = __fstrtoimax(f, numchar, 0, width, &ival);
width 1109 uspace/lib/c/generic/stdio/scanf.c rc = __fstrtoumax(f, numchar, 0, width, &uval);
width 1119 uspace/lib/c/generic/stdio/scanf.c width = cvtspec.have_width ? cvtspec.width : 1;
width 1120 uspace/lib/c/generic/stdio/scanf.c rc = __fgetchars(f, numchar, width, &strbuf, &nread);
width 1138 uspace/lib/c/generic/stdio/scanf.c width = cvtspec.have_width ? cvtspec.width : SIZE_MAX;
width 1139 uspace/lib/c/generic/stdio/scanf.c rc = __fgetstr(f, numchar, width, &strbuf, &nread);
width 1157 uspace/lib/c/generic/stdio/scanf.c width = cvtspec.have_width ? cvtspec.width : SIZE_MAX;
width 1158 uspace/lib/c/generic/stdio/scanf.c rc = __fgetscanstr(f, numchar, width, cvtspec.scanset,
width 46 uspace/lib/c/include/io/pixelmap.h sysarg_t width;
width 56 uspace/lib/c/include/io/pixelmap.h if (x < pixelmap->width && y < pixelmap->height) {
width 57 uspace/lib/c/include/io/pixelmap.h size_t offset = y * pixelmap->width + x;
width 77 uspace/lib/c/include/io/table.h size_t width;
width 58 uspace/lib/c/include/macros.h #define _padd(width, line, n) uint ## width ## _t _paddname(line) [n]
width 428 uspace/lib/congfx/src/console.c pixelmap.width = cbm->rect.p1.x - cbm->rect.p0.x;
width 52 uspace/lib/cpp/include/__bits/io/iomanip.hpp aux::manip_wrapper<aux::setw_t> setw(int width);
width 153 uspace/lib/cpp/include/__bits/io/iomanip_objs.hpp int width;
width 147 uspace/lib/cpp/include/__bits/io/ios.hpp streamsize width() const;
width 148 uspace/lib/cpp/include/__bits/io/ios.hpp streamsize width(streamsize wide);
width 463 uspace/lib/cpp/include/__bits/io/ios.hpp width(0);
width 837 uspace/lib/cpp/include/__bits/io/istream.hpp if (is.width() > 0)
width 838 uspace/lib/cpp/include/__bits/io/istream.hpp n = static_cast<size_t>(is.width());
width 521 uspace/lib/cpp/include/__bits/io/ostream.hpp if (os.width() > 0)
width 525 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 532 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 539 uspace/lib/cpp/include/__bits/io/ostream.hpp os.width(0);
width 553 uspace/lib/cpp/include/__bits/io/ostream.hpp if (os.width() > 0)
width 557 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 564 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 571 uspace/lib/cpp/include/__bits/io/ostream.hpp os.width(0);
width 584 uspace/lib/cpp/include/__bits/io/ostream.hpp if (os.width() > 0)
width 588 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 595 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 602 uspace/lib/cpp/include/__bits/io/ostream.hpp os.width(0);
width 616 uspace/lib/cpp/include/__bits/io/ostream.hpp if (os.width() > 0)
width 620 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 627 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 634 uspace/lib/cpp/include/__bits/io/ostream.hpp os.width(0);
width 648 uspace/lib/cpp/include/__bits/io/ostream.hpp if (os.width() > 0)
width 652 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 659 uspace/lib/cpp/include/__bits/io/ostream.hpp for (decltype(os.width()) i = 0; i < os.width(); ++i)
width 666 uspace/lib/cpp/include/__bits/io/ostream.hpp os.width(0);
width 678 uspace/lib/cpp/include/__bits/io/ostream.hpp if (os.width() > 0 && static_cast<size_t>(os.width()) > len)
width 680 uspace/lib/cpp/include/__bits/io/ostream.hpp size_t to_pad = (static_cast<size_t>(os.width()) - len);
width 703 uspace/lib/cpp/include/__bits/io/ostream.hpp os.width(0);
width 255 uspace/lib/cpp/include/__bits/locale/num_put.hpp size_t width = static_cast<size_t>(base.width());
width 257 uspace/lib/cpp/include/__bits/locale/num_put.hpp if (base.width() > 0 && size < width)
width 258 uspace/lib/cpp/include/__bits/locale/num_put.hpp to_fill = width - size;
width 287 uspace/lib/cpp/include/__bits/locale/num_put.hpp base.width(0);
width 52 uspace/lib/cpp/include/__bits/string/string_io.hpp auto max_size = is.width();
width 93 uspace/lib/cpp/include/__bits/string/string_io.hpp auto width = os.width();
width 97 uspace/lib/cpp/include/__bits/string/string_io.hpp if (width > 0)
width 98 uspace/lib/cpp/include/__bits/string/string_io.hpp to_pad = (static_cast<size_t>(width) - size);
width 119 uspace/lib/cpp/include/__bits/string/string_io.hpp os.width(0);
width 83 uspace/lib/cpp/src/iomanip.cpp : width{w}
width 88 uspace/lib/cpp/src/iomanip.cpp str.width(width);
width 116 uspace/lib/cpp/src/iomanip.cpp aux::manip_wrapper<aux::setw_t> setw(int width)
width 118 uspace/lib/cpp/src/iomanip.cpp return aux::manip_wrapper<aux::setw_t>{width};
width 38 uspace/lib/fmtutil/fmtutil.c size_t width;
width 69 uspace/lib/fmtutil/fmtutil.c errno_t rc = print_aligned_w(wstr, pm->width, last, pm->alignment);
width 74 uspace/lib/fmtutil/fmtutil.c errno_t print_wrapped(const char *str, size_t width, align_mode_t mode)
width 79 uspace/lib/fmtutil/fmtutil.c pm.width = width;
width 84 uspace/lib/fmtutil/fmtutil.c errno_t rc = wrap(wstr, width, print_line, &pm);
width 89 uspace/lib/fmtutil/fmtutil.c errno_t print_aligned_w(const char32_t *wstr, size_t width, bool last,
width 95 uspace/lib/fmtutil/fmtutil.c for (i = 0; i < width; i++) {
width 102 uspace/lib/fmtutil/fmtutil.c for (i = 0; i < width; i++) {
width 103 uspace/lib/fmtutil/fmtutil.c if (i < width - len)
width 106 uspace/lib/fmtutil/fmtutil.c putuchar(wstr[i - (width - len)]);
width 109 uspace/lib/fmtutil/fmtutil.c size_t padding = (width - len) / 2;
width 110 uspace/lib/fmtutil/fmtutil.c for (i = 0; i < width; i++) {
width 132 uspace/lib/fmtutil/fmtutil.c size_t excess_spaces = width - word_chars - (words - 1);
width 159 uspace/lib/fmtutil/fmtutil.c while (done_chars < width) {
width 169 uspace/lib/fmtutil/fmtutil.c errno_t print_aligned(const char *str, size_t width, bool last, align_mode_t mode)
width 175 uspace/lib/fmtutil/fmtutil.c errno_t rc = print_aligned_w(wstr, width, last, mode);
width 180 uspace/lib/fmtutil/fmtutil.c errno_t wrap(char32_t *wstr, size_t width, line_consumer_fn consumer, void *data)
width 212 uspace/lib/fmtutil/fmtutil.c if (pos - line_start > width) {
width 220 uspace/lib/fmtutil/fmtutil.c if (pos - word_start > width) {
width 221 uspace/lib/fmtutil/fmtutil.c consumer(wstr + word_start, width, last, data);
width 222 uspace/lib/fmtutil/fmtutil.c pos = line_start = last_word_end = word_start + width;
width 76 uspace/lib/gfxfont/include/types/gfx/text.h gfx_coord_t width;
width 106 uspace/lib/gfxfont/private/tpf_file.h uint32_t width;
width 596 uspace/lib/gfxfont/src/font.c errno_t gfx_font_bitmap_pack(gfx_coord_t width, gfx_coord_t height,
width 608 uspace/lib/gfxfont/src/font.c bytes_line = (width + 7) / 8;
width 619 uspace/lib/gfxfont/src/font.c for (x = 0; x < width; x++) {
width 650 uspace/lib/gfxfont/src/font.c errno_t gfx_font_bitmap_unpack(gfx_coord_t width, gfx_coord_t height,
width 660 uspace/lib/gfxfont/src/font.c bytes_line = (width + 7) / 8;
width 670 uspace/lib/gfxfont/src/font.c for (x = 0; x < width; x++) {
width 696 uspace/lib/gfxfont/src/font.c uint32_t width;
width 713 uspace/lib/gfxfont/src/font.c width = uint32_t_le2host(thdr.width);
width 723 uspace/lib/gfxfont/src/font.c bytes_line = (width + 7) / 8;
width 735 uspace/lib/gfxfont/src/font.c params.rect.p1.x = width;
width 761 uspace/lib/gfxfont/src/font.c rc = gfx_font_bitmap_unpack(width, height, data, size, alloc.pixels);
width 802 uspace/lib/gfxfont/src/font.c thdr.width = host2uint32_t_le(font->rect.p1.x);
width 319 uspace/lib/gfxfont/src/glyph.c smap.width = glyph->font->rect.p1.x;
width 323 uspace/lib/gfxfont/src/glyph.c dmap.width = dbrect->p1.x;
width 87 uspace/lib/gfxfont/src/glyph_bmp.c pmap.width = font->rect.p1.x;
width 142 uspace/lib/gfxfont/src/glyph_bmp.c pmap.width = font->rect.p1.x;
width 73 uspace/lib/gfxfont/src/text.c gfx_coord_t width;
width 79 uspace/lib/gfxfont/src/text.c width = 0;
width 91 uspace/lib/gfxfont/src/text.c width += gmetrics.advance;
width 94 uspace/lib/gfxfont/src/text.c return width;
width 111 uspace/lib/gfxfont/src/text.c gfx_coord_t width;
width 122 uspace/lib/gfxfont/src/text.c width = str_width(str);
width 123 uspace/lib/gfxfont/src/text.c if (fmt->abbreviate && width > fmt->width) {
width 125 uspace/lib/gfxfont/src/text.c width = fmt->width;
width 126 uspace/lib/gfxfont/src/text.c if (width > 3)
width 127 uspace/lib/gfxfont/src/text.c rmargin = width - 3;
width 129 uspace/lib/gfxfont/src/text.c rmargin = width;
width 132 uspace/lib/gfxfont/src/text.c rmargin = width;
width 145 uspace/lib/gfxfont/src/text.c params.rect.p1.x = width;
width 163 uspace/lib/gfxfont/src/text.c pmap.width = params.rect.p1.x;
width 205 uspace/lib/gfxfont/src/text.c gfx_coord_t width;
width 212 uspace/lib/gfxfont/src/text.c width = gfx_text_width(fmt->font, str);
width 213 uspace/lib/gfxfont/src/text.c if (fmt->abbreviate && width > fmt->width)
width 214 uspace/lib/gfxfont/src/text.c width = fmt->width;
width 218 uspace/lib/gfxfont/src/text.c spos->x -= width / 2;
width 221 uspace/lib/gfxfont/src/text.c spos->x -= width;
width 265 uspace/lib/gfxfont/src/text.c gfx_coord_t width;
width 280 uspace/lib/gfxfont/src/text.c width = gfx_text_width(fmt->font, str);
width 282 uspace/lib/gfxfont/src/text.c if (fmt->abbreviate && width > fmt->width) {
width 285 uspace/lib/gfxfont/src/text.c rmargin = spos.x + fmt->width - gfx_text_width(fmt->font, "...");
width 288 uspace/lib/gfxfont/src/text.c rmargin = spos.x + width;
width 452 uspace/lib/gfxfont/src/text.c tfmt.width = fmt->width - (cpos->x - spos.x);
width 468 uspace/lib/gfxfont/src/text.c gfx_coord_t width;
width 471 uspace/lib/gfxfont/src/text.c width = gfx_text_width(fmt->font, str);
width 472 uspace/lib/gfxfont/src/text.c if (fmt->abbreviate && width > fmt->width)
width 473 uspace/lib/gfxfont/src/text.c width = fmt->width;
width 477 uspace/lib/gfxfont/src/text.c rect->p1.x = spos.x + width;
width 470 uspace/lib/gfxfont/test/font.c gfx_coord_t width, height;
width 477 uspace/lib/gfxfont/test/font.c width = 10;
width 480 uspace/lib/gfxfont/test/font.c pixels = calloc(width * height, sizeof(uint32_t));
width 484 uspace/lib/gfxfont/test/font.c pixels[i * width + i] = PIXEL(255, 255, 255, 255);
width 486 uspace/lib/gfxfont/test/font.c rc = gfx_font_bitmap_pack(width, height, pixels, &data, &size);
width 508 uspace/lib/gfxfont/test/font.c gfx_coord_t width, height;
width 514 uspace/lib/gfxfont/test/font.c width = 10;
width 527 uspace/lib/gfxfont/test/font.c pixels = calloc(width * height, sizeof(uint32_t));
width 530 uspace/lib/gfxfont/test/font.c rc = gfx_font_bitmap_unpack(width, height, data, sizeof(data),
width 538 uspace/lib/gfxfont/test/font.c PCUT_ASSERT_INT_EQUALS(epix, pixels[j * width + i]);
width 518 uspace/lib/gfxfont/test/glyph.c pmap.width = params.rect.p1.x;
width 52 uspace/lib/gfxfont/test/text.c gfx_coord_t width;
width 67 uspace/lib/gfxfont/test/text.c width = gfx_text_width(font, "Hello world!");
width 68 uspace/lib/gfxfont/test/text.c PCUT_ASSERT_INT_EQUALS(0, width);
width 57 uspace/lib/gfximage/src/tga.c uint16_t width;
width 90 uspace/lib/gfximage/src/tga.c uint16_t width;
width 151 uspace/lib/gfximage/src/tga.c tga->width = uint16_t_le2host(head->width);
width 158 uspace/lib/gfximage/src/tga.c uint64_t length = (uint64_t) tga->width * tga->height * tga->img_bpp;
width 233 uspace/lib/gfximage/src/tga.c sysarg_t twidth = tga.startx + tga.width;
width 250 uspace/lib/gfximage/src/tga.c pixelmap.width = twidth;
width 264 uspace/lib/gfximage/src/tga.c ((y - tga.starty) * tga.width + (x - tga.startx)) * 3;
width 276 uspace/lib/gfximage/src/tga.c (y - tga.starty) * tga.width + (x - tga.startx);
width 138 uspace/lib/memgfx/src/memgc.c pixelmap.width = mgc->rect.p1.x;
width 407 uspace/lib/memgfx/src/memgc.c smap.width = mbm->rect.p1.x - mbm->rect.p0.x;
width 414 uspace/lib/memgfx/src/memgc.c dmap.width = mbm->mgc->rect.p1.x;
width 158 uspace/lib/memgfx/test/memgfx.c pixelmap.width = rect.p1.x - rect.p0.x;
width 235 uspace/lib/memgfx/test/memgfx.c bpmap.width = params.rect.p1.x - params.rect.p0.x;
width 247 uspace/lib/memgfx/test/memgfx.c dpmap.width = rect.p1.x - rect.p0.x;
width 46 uspace/lib/posix/include/libc/io/pixelmap.h sysarg_t width;
width 56 uspace/lib/posix/include/libc/io/pixelmap.h if (x < pixelmap->width && y < pixelmap->height) {
width 57 uspace/lib/posix/include/libc/io/pixelmap.h size_t offset = y * pixelmap->width + x;
width 77 uspace/lib/posix/include/libc/io/table.h size_t width;
width 58 uspace/lib/posix/include/libc/macros.h #define _padd(width, line, n) uint ## width ## _t _paddname(line) [n]
width 120 uspace/lib/termui/include/termui.h void termui_put_glyph(termui_t *termui, uint32_t glyph, int width);
width 288 uspace/lib/termui/src/termui.c void termui_put_glyph(termui_t *termui, uint32_t glyph_idx, int width)
width 300 uspace/lib/termui/src/termui.c if (termui->col + width > termui->cols) {
width 316 uspace/lib/termui/src/termui.c for (int i = 1; i < width; i++) {
width 325 uspace/lib/termui/src/termui.c _update_active_cells(termui, termui->col - width, termui->row, width + 1);
width 329 uspace/lib/termui/src/termui.c _update_active_cells(termui, termui->col - width, termui->row, width);
width 97 uspace/lib/ui/include/types/ui/paint.h gfx_coord_t width;
width 258 uspace/lib/ui/src/entry.c gfx_coord_t width;
width 265 uspace/lib/ui/src/entry.c width = gfx_text_width(res->font, entry->text);
width 268 uspace/lib/ui/src/entry.c return width;
width 1067 uspace/lib/ui/src/entry.c gfx_coord_t width;
width 1105 uspace/lib/ui/src/entry.c width = gfx_text_width(res->font, entry->text);
width 1107 uspace/lib/ui/src/entry.c if (width < geom.text_rect.p1.x - geom.text_rect.p0.x &&
width 1117 uspace/lib/ui/src/entry.c } else if (geom.text_pos.x + width < geom.text_rect.p1.x &&
width 1121 uspace/lib/ui/src/entry.c geom.text_pos.x - width;
width 499 uspace/lib/ui/src/list.c gfx_coord_t width;
width 508 uspace/lib/ui/src/list.c width = 1;
width 510 uspace/lib/ui/src/list.c width = 23;
width 514 uspace/lib/ui/src/list.c irect->p1.x = rect.p1.x - width;
width 527 uspace/lib/ui/src/list.c gfx_coord_t width;
width 536 uspace/lib/ui/src/list.c width = 1;
width 538 uspace/lib/ui/src/list.c width = 23;
width 541 uspace/lib/ui/src/list.c srect->p0.x = rect.p1.x - width;
width 184 uspace/lib/ui/src/menubar.c gfx_coord_t width;
width 219 uspace/lib/ui/src/menubar.c width = ui_text_width(res->font, caption) + 2 * hpad;
width 224 uspace/lib/ui/src/menubar.c rect.p1.x = rect.p0.x + width;
width 249 uspace/lib/ui/src/menubar.c pos.x += width;
width 550 uspace/lib/ui/src/menubar.c gfx_coord_t width;
width 572 uspace/lib/ui/src/menubar.c width = ui_text_width(res->font, caption) + 2 * hpad;
width 575 uspace/lib/ui/src/menubar.c rect.p1.x = rect.p0.x + width;
width 590 uspace/lib/ui/src/menubar.c pos.x += width;
width 611 uspace/lib/ui/src/menubar.c gfx_coord_t width;
width 627 uspace/lib/ui/src/menubar.c width = ui_text_width(res->font, caption) + 2 * hpad;
width 630 uspace/lib/ui/src/menubar.c rect.p1.x = rect.p0.x + width;
width 638 uspace/lib/ui/src/menubar.c pos.x += width;
width 299 uspace/lib/ui/src/menuentry.c gfx_coord_t width;
width 314 uspace/lib/ui/src/menuentry.c width = caption_w + 2 * hpad;
width 318 uspace/lib/ui/src/menuentry.c width += menu_entry_column_pad_text;
width 320 uspace/lib/ui/src/menuentry.c width += menu_entry_column_pad;
width 322 uspace/lib/ui/src/menuentry.c width += shortcut_w;
width 325 uspace/lib/ui/src/menuentry.c return width;
width 622 uspace/lib/ui/src/menuentry.c gfx_coord_t width;
width 635 uspace/lib/ui/src/menuentry.c width = ui_menu_entry_calc_width(mentry->menu,
width 639 uspace/lib/ui/src/menuentry.c geom->outer_rect.p1.x = geom->outer_rect.p0.x + width;
width 973 uspace/lib/ui/src/paint.c tfmt.width = fmt->width;
width 396 uspace/lib/ui/src/pbutton.c fmt.width = irect.p1.x - irect.p0.x - 2 * ui_pb_pad_x;
width 475 uspace/lib/ui/src/pbutton.c fmt.width = rect.p1.x - rect.p0.x - 2 * ui_pb_pad_x_text;
width 476 uspace/lib/ui/src/pbutton.c if (fmt.width < 1)
width 477 uspace/lib/ui/src/pbutton.c fmt.width = 1;
width 489 uspace/lib/ui/src/wdecor.c fmt.width = geom.caption_rect.p1.x -
width 303 uspace/lib/ui/test/menuentry.c gfx_coord_t width;
width 333 uspace/lib/ui/test/menuentry.c width = ui_menu_entry_calc_width(menu, caption_w, shortcut_w);
width 334 uspace/lib/ui/test/menuentry.c PCUT_ASSERT_INT_EQUALS(4 + 11 + 8 + 10 + 4, width);
width 131 uspace/srv/hid/display/cursor.c pixelmap.width = dims.x;
width 118 uspace/srv/hid/display/window.c wnd->pixelmap.width = dims.x;
width 869 uspace/srv/hid/display/window.c npixelmap.width = dims.x;
width 305 uspace/srv/hid/output/port/ddev.c ddev->pixelmap.width = dims.x;
width 108 uspace/srv/hid/rfb/main.c old_rect.p1.x = rfb->damage_rect.x + rfb->damage_rect.width;
width 116 uspace/srv/hid/rfb/main.c rfb->damage_rect.width = new_rect.p1.x - new_rect.p0.x;
width 135 uspace/srv/hid/rfb/main.c info->rect.p1.x = rfb->width;
width 337 uspace/srv/hid/rfb/main.c pbm.width = bmdim.x;
width 426 uspace/srv/hid/rfb/main.c rfbgc->rect.p1.x = rfb->width;
width 457 uspace/srv/hid/rfb/main.c unsigned long width = strtoul(argv[2], &endptr, 0);
width 481 uspace/srv/hid/rfb/main.c rfb_init(&rfb, width, height, rfb_name);
width 123 uspace/srv/hid/rfb/rfb.c dst->width = host2uint16_t_be(src->width);
width 139 uspace/srv/hid/rfb/rfb.c dst->width = uint16_t_be2host(src->width);
width 153 uspace/srv/hid/rfb/rfb.c dst->width = host2uint16_t_be(src->width);
width 175 uspace/srv/hid/rfb/rfb.c errno_t rfb_init(rfb_t *rfb, uint16_t width, uint16_t height, const char *name)
width 195 uspace/srv/hid/rfb/rfb.c return rfb_set_size(rfb, width, height);
width 198 uspace/srv/hid/rfb/rfb.c errno_t rfb_set_size(rfb_t *rfb, uint16_t width, uint16_t height)
width 200 uspace/srv/hid/rfb/rfb.c size_t new_size = width * height * sizeof(pixel_t);
width 207 uspace/srv/hid/rfb/rfb.c rfb->framebuffer.width = width;
width 209 uspace/srv/hid/rfb/rfb.c rfb->width = width;
width 343 uspace/srv/hid/rfb/rfb.c size_t size = (rect->width * rect->height * pixel_size);
width 349 uspace/srv/hid/rfb/rfb.c for (uint16_t x = 0; x < rect->width; x++) {
width 418 uspace/srv/hid/rfb/rfb.c size_t size = tile->width * tile->height * cpixel->size;
width 423 uspace/srv/hid/rfb/rfb.c for (uint16_t x = tile->x; x < tile->x + tile->width; x++) {
width 438 uspace/srv/hid/rfb/rfb.c for (uint16_t x = tile->x; x < tile->x + tile->width; x++) {
width 458 uspace/srv/hid/rfb/rfb.c for (uint16_t x = 0; x < rect->width; x += 16) {
width 462 uspace/srv/hid/rfb/rfb.c .width = (x + 16 <= rect->width ? 16 : rect->width - x),
width 496 uspace/srv/hid/rfb/rfb.c rfb->damage_rect.width = rfb->width;
width 665 uspace/srv/hid/rfb/rfb.c server_init->width = rfb->width;
width 72 uspace/srv/hid/rfb/rfb.h uint16_t width;
width 96 uspace/srv/hid/rfb/rfb.h uint16_t width;
width 124 uspace/srv/hid/rfb/rfb.h uint16_t width;
width 150 uspace/srv/hid/rfb/rfb.h uint16_t width;
HelenOS homepage, sources at GitHub