Searched refs:longest (Results 1 - 23 of 23) sorted by relevance

/freebsd-current/sys/compat/linux/
H A Dstats_timing.d38 * - graph of longest running (CPU-time!) function in total
40 * - graph of longest held (CPU-time!) locks
57 @longest[probeprov, probefunc] = max(this->timediff);
85 printa(@longest);
H A Dtrace_futexes.d159 @longest[probeprov, probefunc] = max(this->timediff);
179 printa(@longest);
/freebsd-current/contrib/dialog/
H A Dbuttons.c35 center_label(char *buffer, int longest, const char *label) argument
41 if (len < longest) {
42 int left = (longest - len) / 2;
43 right = (longest - len - left);
247 * columns in *length, and the longest button's columns in *longest
252 int *longest,
258 *longest = 0;
262 *longest = 1;
265 if (len > *longest)
250 dlg_button_sizes(const char **labels, int vertical, int *longest, int *length) argument
287 int longest; local
350 int longest; local
[all...]
/freebsd-current/usr.bin/systat/
H A Dcmds.c151 int nmatches, longest; local
153 longest = 0;
161 if (q - name > longest) {
162 longest = q - name;
165 } else if (q - name == longest)
/freebsd-current/lib/libdpv/
H A Ddialog_util.c375 * Returns the length in bytes of the longest line in buffer pointed to by
385 int longest = 0; local
402 if (n > longest)
403 longest = n;
421 if (n > longest)
422 longest = n;
437 if (n > longest)
438 longest = n;
440 return (longest);
/freebsd-current/usr.sbin/lpr/lpc/
H A Dlpc.c226 register int nmatches, longest; local
228 longest = 0;
236 if (q - name > longest) {
237 longest = q - name;
240 } else if (q - name == longest)
/freebsd-current/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c344 int nmatches, longest; local
346 longest = 0;
354 if (q - name > longest) {
355 longest = q - name;
358 } else if (q - name == longest)
/freebsd-current/contrib/sendmail/src/
H A Dalias.c699 ** aliases, longest alias, etc.
720 long naliases, bytes, longest; local
736 naliases = bytes = longest = 0;
938 if (rhssize > longest)
939 longest = rhssize;
946 message("%s: %ld aliases, longest %ld bytes, %ld bytes total",
947 map->map_file, naliases, longest, bytes);
950 "%s: %ld aliases, longest %ld bytes, %ld bytes total",
951 map->map_file, naliases, longest, bytes);
/freebsd-current/usr.bin/tsort/
H A Dtsort.c90 static int debug, longest, quiet; variable
117 longest = 1;
316 * as scratch space, the other to save the longest
367 /* look for the longest? cycle from node from to node to. */
406 if (len > 0 && !longest)
/freebsd-current/crypto/heimdal/lib/roken/
H A Dsnprintf.c110 /* longest integer types */
114 typedef long long longest; typedef
117 typedef long longest; typedef
448 longest arg;
/freebsd-current/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-current/contrib/tnftp/src/
H A Dmain.c756 int nmatches, longest; local
761 longest = 0;
769 if (q - name > longest) {
770 longest = q - name;
773 } else if (q - name == longest)
/freebsd-current/sys/kern/
H A Dkern_ubsan.c124 typedef __int128 longest; typedef
127 typedef int64_t longest; typedef
259 static void DeserializeNumberSigned(char *pBuffer, size_t zBUfferLength, struct CTypeDescriptor *pType, longest L);
265 static longest llliGetNumber(char *szLocation, struct CTypeDescriptor *pType, unsigned long ulNumber);
1347 DeserializeNumberSigned(char *pBuffer, size_t zBUfferLength, struct CTypeDescriptor *pType, longest L)
1473 static longest
1477 longest L = 0;
1489 memcpy(&L, REINTERPRET_CAST(longest *, ulNumber), sizeof(longest));
1604 longest
[all...]
/freebsd-current/contrib/less/
H A Dregexp.c215 register char *longest; local
268 * longest literal string that must appear and make it the
275 longest = NULL;
279 longest = OPERAND(scan);
282 r->regmust = longest;
H A Dline.c233 linebuf.print = 6; /* big enough for longest UTF-8 sequence */
1517 * Find the shift necessary to show the end of the longest displayed line.
1524 int longest = 0; local
1532 if (end_column > longest)
1533 longest = end_column;
1536 if (longest < sc_width)
1538 return longest - sc_width;
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp410 size_t longest = 0; local
412 longest =
413 std::max(longest, llvm::StringRef(element.string_value).size());
418 element.usage, longest);
/freebsd-current/usr.bin/tftp/
H A Dmain.c784 ptrdiff_t longest; local
787 longest = 0;
795 if (q - name > longest) {
796 longest = q - name;
799 } else if (q - name == longest)
/freebsd-current/contrib/tzcode/
H A Dzdump.c86 static size_t longest; variable
591 longest = 0;
594 if (longest < arglen)
595 longest = min(arglen, INT_MAX);
854 printf("%-*s ", (int)longest, zone);
/freebsd-current/sys/netgraph/
H A Dng_pipe.c686 int longest = 0; local
688 /* Find the longest queue */
690 if (ngp_f1->packets > longest) {
691 longest = ngp_f1->packets;
/freebsd-current/usr.sbin/route6d/
H A Droute6d.c1985 struct riprt *longest; local
1988 longest = NULL;
1993 if (!longest
1994 || longest->rrt_info.rip6_plen <
1996 longest = rrt;
2000 rrt = longest;
/freebsd-current/share/mk/
H A Dgendirdeps.mk286 # sort longest first
/freebsd-current/contrib/bmake/mk/
H A Dgendirdeps.mk286 # sort longest first
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp955 auto longest = local
960 const size_t max_len = longest->GetCompletion().size();

Completed in 343 milliseconds