Lines Matching refs:pos
501 size_t pos; in print_option_help() local
513 pos = fprintf(stderr, " "); in print_option_help()
515 pos += fprintf(stderr, "-%c", opts->short_name); in print_option_help()
517 pos += fprintf(stderr, " "); in print_option_help()
520 pos += fprintf(stderr, ", "); in print_option_help()
522 pos += fprintf(stderr, "--%s", opts->long_name); in print_option_help()
533 pos += fprintf(stderr, "[=<n>]"); in print_option_help()
535 pos += fprintf(stderr, "[<n>]"); in print_option_help()
537 pos += fprintf(stderr, " <n>"); in print_option_help()
547 pos += fprintf(stderr, "[=<%s>]", opts->argh); in print_option_help()
549 pos += fprintf(stderr, "[<%s>]", opts->argh); in print_option_help()
551 pos += fprintf(stderr, " <%s>", opts->argh); in print_option_help()
555 pos += fprintf(stderr, "[=...]"); in print_option_help()
557 pos += fprintf(stderr, "[...]"); in print_option_help()
559 pos += fprintf(stderr, " ..."); in print_option_help()
573 if (pos <= USAGE_OPTS_WIDTH) in print_option_help()
574 pad = USAGE_OPTS_WIDTH - pos; in print_option_help()