/freebsd/contrib/kyua/utils/cmdline/ |
H A D | ui.cpp | 172 const optional< std::size_t > max_width = screen_width(); in out_wrap() local 173 if (max_width) { in out_wrap() 175 message, max_width.get()); in out_wrap() 198 const optional< std::size_t > max_width = screen_width(); in out_tag_wrap() local 199 if (max_width && max_width.get() > tag.length()) { in out_tag_wrap() 201 message, max_width.get() - tag.length()); in out_tag_wrap() 229 const optional< std::size_t > max_width = screen_width(); in out_table() local 230 if (max_width) in out_table() 231 formatter.set_table_width(max_width.get() - prefix.length()); in out_table()
|
/freebsd/crypto/openssh/ |
H A D | utf8.c | 116 int total_width, max_width, print; in vasnmprintf() local 137 max_width = wp == NULL ? INT_MAX : *wp; in vasnmprintf() 165 total_width > max_width - width)) in vasnmprintf() 187 total_width > max_width - 4)) in vasnmprintf()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RegisterFlags.cpp | 188 std::string RegisterFlags::AsTable(uint32_t max_width) const { in AsTable() 214 if (current_width && ((current_width + column_width + 1) >= max_width)) { in AsTable() 247 size_t current_width, uint32_t max_width, in DumpEnumerators() argument 274 if ((current_width + enumerator_string.size() > max_width) && in DumpEnumerators() 288 std::string RegisterFlags::DumpEnums(uint32_t max_width) const { in DumpEnums() 313 DumpEnumerators(strm, indent, current_width, max_width, enumerators); in DumpEnums()
|
/freebsd/usr.sbin/bsdconfig/ |
H A D | bsdconfig | 125 local max_width="${max_size#*[$IFS]}" 126 f_dprintf "max_width=[%s]" "$max_width" 135 while [ $x -lt $max_width ]; do
|
/freebsd/sbin/geom/core/ |
H A D | geom.c | 695 int max_width, width; in compute_tree_width_geom() local 697 max_width = width = indent + strlen(gp->lg_name); in compute_tree_width_geom() 708 if (width > max_width) in compute_tree_width_geom() 709 max_width = width; in compute_tree_width_geom() 715 return (max_width); in compute_tree_width_geom() 723 int max_width, width; in compute_tree_width() local 725 max_width = width = 0; in compute_tree_width() 732 if (width > max_width) in compute_tree_width() 733 max_width = width; in compute_tree_width() 737 return (max_width); in compute_tree_width()
|
/freebsd/crypto/heimdal/lib/asn1/ |
H A D | gen.c | 585 int max_width = 0; in define_asn1() local 594 if(strlen(m->name) > max_width) in define_asn1() 595 max_width = strlen(m->name); in define_asn1() 597 max_width += 3; in define_asn1() 598 if(max_width < 16) max_width = 16; in define_asn1() 600 int width = max_width; in define_asn1()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | RegisterFlags.h | 146 std::string DumpEnums(uint32_t max_width) const; 175 std::string AsTable(uint32_t max_width) const;
|
/freebsd/contrib/ee/ |
H A D | ee.c | 308 void paint_menu(struct menu_entries menu_list[], int max_width, int max_height, int list_size, int … 3342 int max_width, max_height; in menu_op() local 3361 max_width = 0; in menu_op() 3364 if ((length = strlen(menu_list[counter].item_string)) > max_width) in menu_op() 3365 max_width = length; in menu_op() 3367 max_width += 3; in menu_op() 3368 max_width = max(max_width, strlen(menu_cancel_msg)); in menu_op() 3369 max_width = max(max_width, max(strlen(more_above_str), strlen(more_below_str))); in menu_op() 3370 max_width += 6; in menu_op() 3377 if (max_width > COLS) in menu_op() [all …]
|
/freebsd/sys/contrib/dev/mediatek/mt76/mt7996/ |
H A D | mac.h | 12 u32 max_width; /* us */ member
|
/freebsd/sys/contrib/dev/mediatek/mt76/mt7915/ |
H A D | mac.h | 42 u32 max_width; /* us */ member
|
/freebsd/stand/efi/loader/ |
H A D | framebuffer.c | 755 int height, max_height, max_width, width; in gop_autoresize() local 758 efi_get_max_resolution(&max_width, &max_height); in gop_autoresize() 768 if ((max_width != 0 && width > max_width) || in gop_autoresize()
|
/freebsd/contrib/kyua/utils/text/ |
H A D | table.cpp | 120 const text::widths_vector::value_type max_width = std::max( in refill_widths() local 132 widths[refill_column] = max_width - width; in refill_widths()
|
/freebsd/contrib/ofed/infiniband-diags/src/ |
H A D | ibdiag_common.c | 784 uint32_t max_width = get_max_width(mad_get_field(port->info, 0, in get_max_msg() local 788 if ((max_width & mad_get_field(port->info, 0, in get_max_msg() 794 buf, 64, &max_width)); in get_max_msg()
|
/freebsd/sys/dev/drm2/ |
H A D | drm_fb_helper.c | 1335 width = dev->mode_config.max_width; in drm_setup_crtcs() 1420 dev->mode_config.max_width, in drm_fb_helper_initial_config() 1451 u32 max_width, max_height, bpp_sel; in drm_fb_helper_hotplug_event() local 1473 max_width = fb_helper->fb->width; in drm_fb_helper_hotplug_event() 1477 drm_fb_helper_probe_connector_modes(fb_helper, max_width, in drm_fb_helper_hotplug_event()
|
H A D | drm_mode.h | 107 __u32 min_width, max_width; member
|
H A D | drm_crtc.h | 452 int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, uint32_t max_height); 786 int max_width, max_height; member
|
H A D | drm_crtc.c | 1250 card_res->max_width = dev->mode_config.max_width; in drm_mode_getresources() 1490 dev->mode_config.max_width, in drm_mode_getconnector() 2148 if ((config->min_width > r.width) || (r.width > config->max_width)) in drm_mode_addfb() 2327 if ((config->min_width > r->width) || (r->width > config->max_width)) { in drm_mode_addfb2() 2329 r->width, config->min_width, config->max_width); in drm_mode_addfb2()
|
/freebsd/cddl/usr.sbin/dwatch/ |
H A D | dwatch | 481 local max_width="${max_size#*[$IFS]}" 487 while [ $x -lt $max_width ]; do
|
/freebsd/sys/contrib/dev/mediatek/mt76/mt7615/ |
H A D | mac.h | 289 u32 max_width; /* us */ member
|
/freebsd/usr.sbin/bsdinstall/scripts/ |
H A D | auto | 113 local max_width=$(( $width - 3 - $plen ))
|
/freebsd/sys/arm/nvidia/drm2/ |
H A D | tegra_host1x.c | 200 drm_dev->mode_config.max_width = 4096; in host1x_drm_load()
|
/freebsd/contrib/dialog/ |
H A D | util.c | 1284 int max_width = max_x; in auto_size_preformatted() local 1307 while (car < ar && max_x < max_width) { in auto_size_preformatted()
|
/freebsd/sys/contrib/v4l/ |
H A D | videodev2.h | 415 __u32 max_width; /* Maximum frame width [pixel] */ member
|
/freebsd/sys/dev/ntb/ntb_hw/ |
H A D | ntb_hw_amd.c | 275 enum ntb_width max_width) in amd_ntb_link_enable() argument
|
/freebsd/sys/dev/atkbdc/ |
H A D | psm.c | 207 int max_width; member 556 SYNAPTICS_SYSCTL_MAX_WIDTH = SYN_OFFSET(max_width), 3745 (sc->synhw.capPalmDetect && f->w <= sc->syninfo.max_width) || 5896 sc->syninfo.max_width = 10; 7195 sc->syninfo.max_width = 7;
|