| /freebsd-12-stable/contrib/dialog/ |
| D | buttons.c | 34 center_label(char *buffer, int longest, const char *label) in center_label() argument 40 if (len < longest) { in center_label() 41 left = (longest - len) / 2; in center_label() 42 right = (longest - len - left); in center_label() 238 int *longest, in dlg_button_sizes() argument 244 *longest = 0; in dlg_button_sizes() 248 *longest = 1; in dlg_button_sizes() 251 if (len > *longest) in dlg_button_sizes() 252 *longest = len; in dlg_button_sizes() 260 if (*longest < 6 - (*longest & 1)) in dlg_button_sizes() [all …]
|
| /freebsd-12-stable/usr.bin/systat/ |
| D | cmds.c | 157 int nmatches, longest; in lookup() local 159 longest = 0; in lookup() 167 if (q - name > longest) { in lookup() 168 longest = q - name; in lookup() 171 } else if (q - name == longest) in lookup()
|
| /freebsd-12-stable/lib/libdpv/ |
| D | dialog_util.c | 387 int longest = 0; in dialog_prompt_longestline() local 404 if (n > longest) in dialog_prompt_longestline() 405 longest = n; in dialog_prompt_longestline() 423 if (n > longest) in dialog_prompt_longestline() 424 longest = n; in dialog_prompt_longestline() 439 if (n > longest) in dialog_prompt_longestline() 440 longest = n; in dialog_prompt_longestline() 442 return (longest); in dialog_prompt_longestline()
|
| /freebsd-12-stable/usr.sbin/timed/timedc/ |
| D | timedc.c | 150 register int nmatches, longest; in getcmd() local 153 longest = 0; in getcmd() 162 if (q - name > longest) { in getcmd() 163 longest = q - name; in getcmd() 166 } else if (q - name == longest) in getcmd()
|
| /freebsd-12-stable/contrib/gcclibs/libcpp/ |
| D | symtab.c | 256 size_t total_bytes, longest; in ht_dump_statistics() local 267 total_bytes = longest = sum_of_squares = nids = 0; in ht_dump_statistics() 277 if (n > longest) in ht_dump_statistics() 278 longest = n; in ht_dump_statistics() 310 (unsigned long) longest); in ht_dump_statistics()
|
| /freebsd-12-stable/usr.sbin/lpr/lpc/ |
| D | lpc.c | 240 register int nmatches, longest; in getcmd() local 242 longest = 0; in getcmd() 250 if (q - name > longest) { in getcmd() 251 longest = q - name; in getcmd() 254 } else if (q - name == longest) in getcmd()
|
| /freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/ |
| D | main.c | 344 int nmatches, longest; in getcmd() local 346 longest = 0; in getcmd() 354 if (q - name > longest) { in getcmd() 355 longest = q - name; in getcmd() 358 } else if (q - name == longest) in getcmd()
|
| /freebsd-12-stable/sys/compat/linux/ |
| D | stats_timing.d | 59 @longest[probeprov, probefunc] = max(this->timediff); 87 printa(@longest);
|
| D | trace_futexes.d | 161 @longest[probeprov, probefunc] = max(this->timediff); 181 printa(@longest);
|
| /freebsd-12-stable/contrib/tzcode/zic/ |
| D | zdump.c | 151 static size_t longest; variable 304 longest = 0; 306 if (strlen(argv[i]) > longest) 307 longest = strlen(argv[i]); 317 (fakeenv[0] = (char *) malloc((size_t) (longest + 548 (void) printf("%-*s ", (int) longest, zone); in show()
|
| /freebsd-12-stable/usr.sbin/bsdconfig/share/ |
| D | strings.subr | 461 # Simple wrapper to an awk(1) script to print the length of the longest line of 466 BEGIN { longest = 0 } 473 longest = ( len > longest ? len : longest ) 479 longest = ( len > longest ? len : longest ) 482 END { print longest }
|
| D | dialog.subr | 910 # Always process the menu-item arguments to get the longest tag-length, 911 # longest item-length (both used to bump the width), and the number of 944 # The sum total between the longest tag-length and the 945 # longest item-length should be used to bump menu width 1003 # Always process the menu-item arguments to get the longest tag-length, 1004 # longest item-length, longest help-length (help-length only considered 1040 # The sum total between the longest tag-length and the 1041 # longest item-length should be used to bump menu width 1108 # Always process the menu-item arguments to get the longest tag-length, 1109 # longest item-length (both used to bump the width), and the number of [all …]
|
| /freebsd-12-stable/contrib/sendmail/src/ |
| D | alias.c | 672 long naliases, bytes, longest; local 688 naliases = bytes = longest = 0; 886 if (rhssize > longest) 887 longest = rhssize; 895 map->map_file, naliases, longest, bytes); 899 map->map_file, naliases, longest, bytes);
|
| /freebsd-12-stable/usr.bin/tsort/ |
| D | tsort.c | 103 static int debug, longest, quiet; variable 130 longest = 1; in main() 417 if (len > 0 && !longest) in find_cycle()
|
| /freebsd-12-stable/sys/contrib/zlib/doc/ |
| D | algorithm.txt | 25 the longest match is selected. 34 parameter of deflateInit). So deflate() does not always find the longest 68 input less than the length of longest code. It gets that many bits from the 77 be a first level table to cover all the way to the longest code. However, 118 longest symbol is? The reason is that if you do that, you end up spending 161 Table X is two bits long since the longest code starting with 110 is five bits 169 Table Y is three bits long since the longest code starting with 111 is six
|
| /freebsd-12-stable/contrib/tnftp/src/ |
| D | main.c | 756 int nmatches, longest; in getcmd() local 761 longest = 0; in getcmd() 769 if (q - name > longest) { in getcmd() 770 longest = q - name; in getcmd() 773 } else if (q - name == longest) in getcmd()
|
| /freebsd-12-stable/usr.bin/tftp/ |
| D | main.c | 789 int nmatches, longest; in getcmd() local 791 longest = 0; in getcmd() 799 if (q - name > longest) { in getcmd() 800 longest = q - name; in getcmd() 803 } else if (q - name == longest) in getcmd()
|
| /freebsd-12-stable/contrib/less/ |
| D | regexp.c | 215 register char *longest; local 275 longest = NULL; 279 longest = OPERAND(scan); 282 r->regmust = longest;
|
| D | line.c | 1420 int longest = 0; in rrshift() local 1428 if (end_column > longest) in rrshift() 1429 longest = end_column; in rrshift() 1432 if (longest < sc_width) in rrshift() 1434 return longest - sc_width; in rrshift()
|
| /freebsd-12-stable/crypto/heimdal/lib/roken/ |
| D | snprintf.c | 114 typedef long long longest; typedef 117 typedef long longest; typedef 448 longest arg; in xyzprintf()
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | valops.c | 300 LONGEST longest; in value_cast() local 334 longest = extract_unsigned_integer (VALUE_CONTENTS (arg2), in value_cast() 337 longest = value_as_long (arg2); in value_cast() 339 (LONGEST) (longest ? 1 : 0) : longest); in value_cast() 357 LONGEST longest = value_as_long (arg2); in value_cast() local 360 if (longest >= ((LONGEST) 1 << addr_bit) in value_cast() 361 || longest <= -((LONGEST) 1 << addr_bit)) in value_cast() 364 return value_from_longest (type, longest); in value_cast()
|
| /freebsd-12-stable/sys/netgraph/ |
| D | ng_pipe.c | 683 int longest = 0; in ngp_rcvdata() local 687 if (ngp_f1->packets > longest) { in ngp_rcvdata() 688 longest = ngp_f1->packets; in ngp_rcvdata()
|
| /freebsd-12-stable/crypto/openssl/ |
| D | Configure | 2608 my $longest = 0; 2611 $longest = length($what) if $longest < length($what); 2625 print " $what3", ' ' x ($longest - length($what3) + 1),
|
| /freebsd-12-stable/usr.sbin/route6d/ |
| D | route6d.c | 1989 struct riprt *longest; in rt_del() local 1992 longest = NULL; in rt_del() 1997 if (!longest in rt_del() 1998 || longest->rrt_info.rip6_plen < in rt_del() 2000 longest = rrt; in rt_del() 2004 rrt = longest; in rt_del()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/ |
| D | Editline.cpp | 947 auto longest = in DisplayCompletions() local 952 const size_t max_len = longest->GetCompletion().size(); in DisplayCompletions()
|