Searched refs:longest (Results 1 – 4 of 4) sorted by relevance
130 static void pretty_print_string_list(struct cmdnames *cmds, int longest) in pretty_print_string_list() argument133 int space = longest + 1; /* min 1 SP between words */ in pretty_print_string_list()258 unsigned int i, longest = 0; in list_commands() local261 if (longest < main_cmds->names[i]->len) in list_commands()262 longest = main_cmds->names[i]->len; in list_commands()264 if (longest < other_cmds->names[i]->len) in list_commands()265 longest = other_cmds->names[i]->len; in list_commands()273 pretty_print_string_list(main_cmds, longest); in list_commands()283 pretty_print_string_list(other_cmds, longest); in list_commands()
304 unsigned int i, longest = 0; in list_common_cmds_help() local307 if (longest < strlen(common_cmds[i].name)) in list_common_cmds_help()308 longest = strlen(common_cmds[i].name); in list_common_cmds_help()313 printf(" %-*s ", longest, common_cmds[i].name); in list_common_cmds_help()
1780 longest = 01782 if len(define[0]) > longest:1783 longest = len(define[0])1784 longest = ((longest + 8) // 8) * 81787 line += '\t' * ((longest - len(define[0]) + 7) // 8)1795 longest = max([len(x[0]) for x in members])1796 longest += 1 # because we prepend a .1797 longest = ((longest + 8) // 8) * 81800 line += '\t' * ((longest - len(one[0]) - 1 + 7) // 8)
353 int *longest) in parse_aliases() argument355 *longest = -1; in parse_aliases()360 if (n > *longest && !strncasecmp(str, names[i][j], n)) in parse_aliases()361 *longest = n; in parse_aliases()363 if (*longest > 0) in parse_aliases()
Completed in 22 milliseconds