| /freebsd-11-stable/contrib/dialog/ |
| HD | 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-11-stable/usr.bin/systat/ |
| HD | cmds.c | 155 int nmatches, longest; in lookup() local 157 longest = 0; in lookup() 165 if (q - name > longest) { in lookup() 166 longest = q - name; in lookup() 169 } else if (q - name == longest) in lookup()
|
| /freebsd-11-stable/lib/libdpv/ |
| HD | 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-11-stable/usr.sbin/timed/timedc/ |
| HD | timedc.c | 145 register int nmatches, longest; in getcmd() local 148 longest = 0; in getcmd() 157 if (q - name > longest) { in getcmd() 158 longest = q - name; in getcmd() 161 } else if (q - name == longest) in getcmd()
|
| /freebsd-11-stable/contrib/gcclibs/libcpp/ |
| HD | 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-11-stable/usr.sbin/lpr/lpc/ |
| HD | lpc.c | 238 register int nmatches, longest; in getcmd() local 240 longest = 0; in getcmd() 248 if (q - name > longest) { in getcmd() 249 longest = q - name; in getcmd() 252 } else if (q - name == longest) in getcmd()
|
| /freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/ |
| HD | 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-11-stable/sys/compat/linux/ |
| HD | stats_timing.d | 59 @longest[probeprov, probefunc] = max(this->timediff); 87 printa(@longest);
|
| HD | trace_futexes.d | 161 @longest[probeprov, probefunc] = max(this->timediff); 181 printa(@longest);
|
| /freebsd-11-stable/contrib/tzcode/zic/ |
| HD | 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-11-stable/usr.sbin/bsdconfig/share/ |
| HD | 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 }
|
| HD | 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-11-stable/contrib/sendmail/src/ |
| HD | alias.c | 648 long naliases, bytes, longest; local 658 naliases = bytes = longest = 0; 839 if (rhssize > longest) 840 longest = rhssize; 848 map->map_file, naliases, longest, bytes); 852 map->map_file, naliases, longest, bytes);
|
| /freebsd-11-stable/sys/contrib/zlib/doc/ |
| HD | 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-11-stable/usr.bin/tsort/ |
| HD | tsort.c | 101 static int debug, longest, quiet; variable 128 longest = 1; in main() 415 if (len > 0 && !longest) in find_cycle()
|
| /freebsd-11-stable/contrib/tnftp/src/ |
| HD | main.c | 746 int nmatches, longest; in getcmd() local 751 longest = 0; in getcmd() 759 if (q - name > longest) { in getcmd() 760 longest = q - name; in getcmd() 763 } else if (q - name == longest) in getcmd()
|
| /freebsd-11-stable/usr.bin/tftp/ |
| HD | main.c | 776 int nmatches, longest; in getcmd() local 778 longest = 0; in getcmd() 786 if (q - name > longest) { in getcmd() 787 longest = q - name; in getcmd() 790 } else if (q - name == longest) in getcmd()
|
| /freebsd-11-stable/contrib/less/ |
| HD | regexp.c | 215 register char *longest; local 275 longest = NULL; 279 longest = OPERAND(scan); 282 r->regmust = longest;
|
| HD | 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-11-stable/crypto/heimdal/lib/roken/ |
| HD | snprintf.c | 114 typedef long long longest; typedef 117 typedef long longest; typedef 448 longest arg; in xyzprintf()
|
| /freebsd-11-stable/contrib/gdb/gdb/ |
| HD | 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-11-stable/sys/netgraph/ |
| HD | ng_pipe.c | 681 int longest = 0; in ngp_rcvdata() local 685 if (ngp_f1->packets > longest) { in ngp_rcvdata() 686 longest = ngp_f1->packets; in ngp_rcvdata()
|
| /freebsd-11-stable/usr.sbin/route6d/ |
| HD | route6d.c | 1969 struct riprt *longest; in rt_del() local 1972 longest = NULL; in rt_del() 1977 if (!longest in rt_del() 1978 || longest->rrt_info.rip6_plen < in rt_del() 1980 longest = rrt; in rt_del() 1984 rrt = longest; in rt_del()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/ |
| HD | Editline.cpp | 936 auto longest = in DisplayCompletions() local 941 const size_t max_len = longest->GetCompletion().size(); in DisplayCompletions()
|
| /freebsd-11-stable/contrib/byacc/ |
| HD | README.BTYACC | 330 We solved this problem by memorizing the longest path in 333 longest path. Effectively we say: if we have an error,
|