Home
last modified time | relevance | path

Searched refs:longest (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/dialog/
H A Dbuttons.c41 if (len < longest) { in center_label()
252 int *longest, in dlg_button_sizes() argument
258 *longest = 0; in dlg_button_sizes()
262 *longest = 1; in dlg_button_sizes()
265 if (len > *longest) in dlg_button_sizes()
266 *longest = len; in dlg_button_sizes()
274 if (*longest < 6 - (*longest & 1)) in dlg_button_sizes()
275 *longest = 6 - (*longest & 1); in dlg_button_sizes()
277 *length = *longest * n; in dlg_button_sizes()
287 int longest; in dlg_button_x_step() local
[all …]
/freebsd/usr.bin/systat/
H A Dcmds.c151 int nmatches, longest; in lookup() local
153 longest = 0; in lookup()
161 if (q - name > longest) { in lookup()
162 longest = q - name; in lookup()
165 } else if (q - name == longest) in lookup()
/freebsd/lib/libdpv/
H A Ddialog_util.c385 int longest = 0; in dialog_prompt_longestline() local
402 if (n > longest) in dialog_prompt_longestline()
403 longest = n; in dialog_prompt_longestline()
421 if (n > longest) in dialog_prompt_longestline()
422 longest = n; in dialog_prompt_longestline()
437 if (n > longest) in dialog_prompt_longestline()
438 longest = n; in dialog_prompt_longestline()
440 return (longest); in dialog_prompt_longestline()
/freebsd/usr.sbin/lpr/lpc/
H A Dlpc.c226 register int nmatches, longest; in getcmd() local
228 longest = 0; in getcmd()
236 if (q - name > longest) { in getcmd()
237 longest = q - name; in getcmd()
240 } else if (q - name == longest) in getcmd()
/freebsd/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c344 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/sys/compat/linux/
H A Dstats_timing.d57 @longest[probeprov, probefunc] = max(this->timediff);
85 printa(@longest);
H A Dtrace_futexes.d159 @longest[probeprov, probefunc] = max(this->timediff);
179 printa(@longest);
/freebsd/usr.sbin/bsdconfig/share/
H A Dstrings.subr460 # Simple wrapper to an awk(1) script to print the length of the longest line of
465 BEGIN { longest = 0 }
472 longest = ( len > longest ? len : longest )
478 longest = ( len > longest ? len : longest )
481 END { print longest }
H A Ddialog.subr917 # Always process the menu-item arguments to get the longest tag-length,
918 # longest item-length (both used to bump the width), and the number of
951 # The sum total between the longest tag-length and the
952 # longest item-length should be used to bump menu width
1011 # longest item-length, longest help-length (help-length only considered
1047 # The sum total between the longest tag-length and the
1048 # longest item-length should be used to bump menu width
1116 # longest item-length (both used to bump the width), and the number of
1152 # Sum total between longest tag-length, longest item-length,
1237 # longest item-length, longest help-length (help-length only considered
[all …]
/freebsd/crypto/openssl/
H A Dconfigdata.pm.in263 my $longest = 0;
266 $longest = length($what) if $longest < length($what);
277 print " $what", ' ' x ($longest - length($what) + 1),
/freebsd/contrib/sendmail/src/
H A Dalias.c720 long naliases, bytes, longest; local
736 naliases = bytes = longest = 0;
938 if (rhssize > longest)
939 longest = rhssize;
947 map->map_file, naliases, longest, bytes);
951 map->map_file, naliases, longest, bytes);
/freebsd/usr.bin/tsort/
H A Dtsort.c90 static int debug, longest, quiet; variable
117 longest = 1; in main()
406 if (len > 0 && !longest) in find_cycle()
/freebsd/sys/kern/
H A Dkern_ubsan.c124 typedef __int128 longest; typedef
127 typedef int64_t longest; typedef
259 …rializeNumberSigned(char *pBuffer, size_t zBUfferLength, struct CTypeDescriptor *pType, longest L);
265 static longest llliGetNumber(char *szLocation, struct CTypeDescriptor *pType, unsigned long ulNumbe…
1347 DeserializeNumberSigned(char *pBuffer, size_t zBUfferLength, struct CTypeDescriptor *pType, longest
1473 static longest
1477 longest L = 0;
1489 memcpy(&L, REINTERPRET_CAST(longest *, ulNumber), sizeof(longest));
1604 longest L = llliGetNumber(szLocation, pType, ulNumber);
/freebsd/sys/contrib/zlib/doc/
H A Dalgorithm.txt25 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/contrib/tnftp/src/
H A Dmain.c756 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/usr.bin/tftp/
H A Dmain.c784 ptrdiff_t longest; in getcmd() local
787 longest = 0; in getcmd()
795 if (q - name > longest) { in getcmd()
796 longest = q - name; in getcmd()
799 } else if (q - name == longest) in getcmd()
/freebsd/contrib/less/
H A Dregexp.c215 register char *longest; local
275 longest = NULL;
279 longest = OPERAND(scan);
282 r->regmust = longest;
H A Dline.c1524 int longest = 0; in rrshift() local
1532 if (end_column > longest) in rrshift()
1533 longest = end_column; in rrshift()
1536 if (longest < sc_width) in rrshift()
1538 return longest - sc_width; in rrshift()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp410 size_t longest = 0; in GetArgumentHelp() local
412 longest = in GetArgumentHelp()
413 std::max(longest, llvm::StringRef(element.string_value).size()); in GetArgumentHelp()
418 element.usage, longest); in GetArgumentHelp()
/freebsd/crypto/heimdal/lib/roken/
H A Dsnprintf.c114 typedef long long longest; typedef
117 typedef long longest; typedef
448 longest arg; in xyzprintf()
/freebsd/contrib/tzcode/
H A Dzdump.c86 static size_t longest; variable
591 longest = 0; in main()
594 if (longest < arglen) in main()
595 longest = min(arglen, INT_MAX); in main()
854 printf("%-*s ", (int)longest, zone); in show()
/freebsd/sys/netgraph/
H A Dng_pipe.c686 int longest = 0; in ngp_rcvdata() local
690 if (ngp_f1->packets > longest) { in ngp_rcvdata()
691 longest = ngp_f1->packets; in ngp_rcvdata()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/docs/
H A Dhtr.rst35 A “basic super block” is the longest sequence of blocks that always occur in the same order. (The c…
/freebsd/usr.sbin/route6d/
H A Droute6d.c1985 struct riprt *longest; in rt_del() local
1988 longest = NULL; in rt_del()
1993 if (!longest in rt_del()
1994 || longest->rrt_info.rip6_plen < in rt_del()
1996 longest = rrt; in rt_del()
2000 rrt = longest; in rt_del()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp955 auto longest = in DisplayCompletions() local
960 const size_t max_len = longest->GetCompletion().size(); in DisplayCompletions()

12