HomeSort by: relevance | last modified time | path
    Searched refs:longest (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/usr.bin/wc/
wc.c 46 /* wc line, word, char count and optionally longest line. */
181 wc_count_t charct, linect, wordct, longest; local
189 linect = wordct = charct = longest = 0;
276 if (linelen > longest)
277 longest = linelen;
311 print_counts(linect, wordct, charct, longest, file);
320 if (dolongest && longest > tlongest)
321 tlongest = longest;
331 wc_count_t longest, const char *name)
341 (void)printf(WCFMT, (WCCAST)longest);
    [all...]
  /src/usr.sbin/timed/timedc/
timedc.c 148 int nmatches, longest; local
152 longest = 0;
161 if (q - name > longest) {
162 longest = q - name;
165 } else if (q - name == longest)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
store.c 36 typedef long long longest; typedef
38 longest
39 add_longest (register longest u, register longest v)
99 wack_longest (register longest u, register longest v)
101 register longest l = u, r = v;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
store.c 36 typedef long long longest; typedef
38 longest
39 add_longest (register longest u, register longest v)
99 wack_longest (register longest u, register longest v)
101 register longest l = u, r = v;
  /src/usr.sbin/lpr/lpc/
lpc.c 206 int nmatches, longest; local
208 longest = 0;
216 if (q - name > longest) {
217 longest = q - name;
220 } else if (q - name == longest)
  /src/external/gpl3/gcc/dist/libcpp/
symtab.cc 277 size_t total_bytes, longest, deleted = 0; local
288 total_bytes = longest = sum_of_squares = nids = 0;
300 if (n > longest)
301 longest = n;
343 fprintf (stderr, "%-32s%lu\n", "longest entry:",
344 (unsigned long) longest);
  /src/external/gpl3/gcc.old/dist/libcpp/
symtab.cc 277 size_t total_bytes, longest, deleted = 0; local
288 total_bytes = longest = sum_of_squares = nids = 0;
300 if (n > longest)
301 longest = n;
343 fprintf (stderr, "%-32s%lu\n", "longest entry:",
344 (unsigned long) longest);
  /src/usr.bin/tsort/
tsort.c 105 static int debug, longest, quiet, reverse; variable
133 longest = 1;
327 * as scratch space, the other to save the longest
376 /* look for the longest? cycle from node from to node to. */
414 if (len > 0 && !longest)
  /src/external/zlib/pigz/dist/zopfli/
blocksplitter.c 204 size_t longest = 0; local
210 if (!done[start] && end - start > longest) {
214 longest = end - start;
  /src/crypto/external/apache2/openssl/dist/
configdata.pm.in 263 my $longest = 0;
266 $longest = length($what) if $longest < length($what);
277 print " $what", ' ' x ($longest - length($what) + 1),
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
snprintf.c 112 /* longest integer types */
116 typedef long long longest; typedef
119 typedef long longest; typedef
  /src/crypto/external/bsd/openssl/dist/
configdata.pm.in 263 my $longest = 0;
266 $longest = length($what) if $longest < length($what);
277 print " $what", ' ' x ($longest - length($what) + 1),
  /src/usr.bin/ftp/
main.c 774 ptrdiff_t longest; local
779 longest = 0;
787 if (q - name > longest) {
788 longest = q - name;
791 } else if (q - name == longest)
  /src/usr.bin/tftp/
main.c 693 int nmatches, longest; local
695 longest = 0;
703 if (q - name > longest) {
704 longest = q - name;
707 } else if (q - name == longest)
  /src/tools/compat/
snprintf.c 128 /* longest integer types */
132 typedef long long longest; typedef
135 typedef long longest; typedef
417 longest arg;
  /src/external/bsd/iscsi/dist/src/lib/
snprintf.c 130 /* longest integer types */
134 typedef long long longest; typedef
137 typedef long longest; typedef
419 longest arg;
  /src/lib/libcompat/regexp/
regexp.c 214 char *longest; local
271 * longest literal string that must appear and make it the
278 longest = NULL;
282 longest = OPERAND(scan);
285 r->regmust = longest;
  /src/usr.bin/midirecord/
midirecord.c 677 unsigned count = 1, u, longest = 0, c = 0; local
684 * the longest one.
690 if (c > longest)
691 longest = c;
697 num_buf = malloc(longest + 1);
  /src/external/bsd/less/dist/
regexp.c 217 register char *longest; local
270 * longest literal string that must appear and make it the
277 longest = NULL;
281 longest = OPERAND(scan);
284 r->regmust = longest;
line.c 235 linebuf.print = 6; /* big enough for longest UTF-8 sequence */
1519 * Find the shift necessary to show the end of the longest displayed line.
1526 int longest = 0; local
1534 if (end_column > longest)
1535 longest = end_column;
1538 if (longest < sc_width)
1540 return longest - sc_width;
  /src/common/lib/libc/misc/
ubsan.c 120 typedef __int128 longest; typedef
123 typedef int64_t longest; typedef
262 static void DeserializeNumberSigned(char *pBuffer, size_t zBUfferLength, struct CTypeDescriptor *pType, longest L);
268 static longest llliGetNumber(char *szLocation, struct CTypeDescriptor *pType, unsigned long ulNumber);
1432 DeserializeNumberSigned(char *pBuffer, size_t zBUfferLength, struct CTypeDescriptor *pType, longest L)
1569 static longest
1573 longest L = 0;
1586 memcpy(&L, REINTERPRET_CAST(longest *, ulNumber), sizeof(longest));
1709 longest L = llliGetNumber(szLocation, pType, ulNumber)
    [all...]
  /src/lib/libc/time/
zdump.c 80 static size_t longest; variable
573 longest = min(arglenmax, INT_MAX - 2);
834 (void) printf("%-*s ", (int) longest, zone);
  /src/usr.sbin/sysinst/
util.c 216 const char *longest; local
243 /* Find longest and use it to determine width of selection menu */
244 len = strlen(msg_no); longest = msg_no;
245 i = strlen(msg_yes); if (i > len) {len = i; longest = msg_yes; }
246 i = strlen(msg_all); if (i > len) {len = i; longest = msg_all; }
247 i = strlen(msg_some); if (i > len) {len = i; longest = msg_some; }
248 i = strlen(msg_none); if (i > len) {len = i; longest = msg_none; }
249 select_menu_width = snprintf(NULL, 0, "%-40s %s", "", longest);
  /src/external/gpl3/gdb/dist/gdb/
valops.c 56 LONGEST, int *, struct type *);
243 LONGEST top;
473 LONGEST low_bound, high_bound, new_length;
568 gdb_mpz longest; local
577 longest = extract_unsigned_integer (arg2->contents (),
580 longest = value_as_mpz (arg2);
582 longest = bool (longest);
584 return value_from_mpz (to_type, longest);
601 gdb_mpz longest = value_as_mpz (arg2) local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
valops.c 57 LONGEST, int *, struct type *);
244 LONGEST top;
474 LONGEST low_bound, high_bound, new_length;
569 gdb_mpz longest; local
578 longest = extract_unsigned_integer (arg2->contents (),
581 longest = value_as_mpz (arg2);
583 longest = bool (longest);
585 return value_from_mpz (to_type, longest);
602 gdb_mpz longest = value_as_mpz (arg2) local
    [all...]

Completed in 72 milliseconds

1 2