HomeSort by: relevance | last modified time | path
    Searched defs:longest (Results 1 - 13 of 13) sorted by relevancy

  /src/usr.sbin/timed/timedc/
timedc.c 148 int nmatches, longest; local in function:getcmd
152 longest = 0;
161 if (q - name > longest) {
162 longest = q - name;
165 } else if (q - name == longest)
  /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 in function:cnt
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/tools/compat/
snprintf.c 128 /* longest integer types */
132 typedef long long longest; typedef in typeref:typename:long long
135 typedef long longest; typedef in typeref:typename:long
417 longest arg;
  /src/usr.bin/tsort/
tsort.c 105 static int debug, longest, quiet, reverse; variable in typeref:typename:int
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/usr.sbin/lpr/lpc/
lpc.c 206 int nmatches, longest; local in function:getcmd
208 longest = 0;
216 if (q - name > longest) {
217 longest = q - name;
220 } else if (q - name == longest)
  /src/usr.bin/ftp/
main.c 779 ptrdiff_t longest; local in function:getcmd
784 longest = 0;
792 if (q - name > longest) {
793 longest = q - name;
796 } else if (q - name == longest)
  /src/lib/libcompat/regexp/
regexp.c 214 char *longest; local in function:__compat_regcomp
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/tftp/
main.c 693 int nmatches, longest; local in function:getcmd
695 longest = 0;
703 if (q - name > longest) {
704 longest = q - name;
707 } else if (q - name == longest)
  /src/usr.bin/midirecord/
midirecord.c 677 unsigned count = 1, u, longest = 0, c = 0; local in function:parse_ints
684 * the longest one.
690 if (c > longest)
691 longest = c;
697 num_buf = malloc(longest + 1);
  /src/lib/libc/time/
zdump.c 87 static size_t longest; variable in typeref:typename:size_t
580 longest = min(arglenmax, INT_MAX - 2);
841 (void) printf("%-*s ", (int) longest, zone);
  /src/usr.sbin/route6d/
route6d.c 1714 struct riprt *longest; local in function:rt_del
1717 longest = NULL;
1722 if (!longest
1723 || longest->rrt_info.rip6_plen <
1725 longest = rrt;
1729 rrt = longest;
  /src/common/lib/libc/misc/
ubsan.c 120 typedef __int128 longest; typedef in typeref:typename:__int128
123 typedef int64_t longest; typedef in typeref:typename:int64_t
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/usr.sbin/sysinst/
util.c 216 const char *longest; local in function:init_set_status
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);

Completed in 34 milliseconds