Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 25 of 53) sorted by relevance

123

/glibc-2.36/argp/
Dargp-help.c262 #define ovisible(opt) (! ((opt)->flags & OPTION_HIDDEN)) argument
265 #define oalias(opt) ((opt)->flags & OPTION_ALIAS) argument
268 #define odoc(opt) ((opt)->flags & OPTION_DOC) argument
271 #define oend(opt) __option_is_end (opt) argument
274 #define oshort(opt) __option_is_short (opt) argument
360 const struct argp_option *opt; member
476 entry->opt = o; in make_hol()
555 int (*func)(const struct argp_option *opt, in hol_entry_short_iterate() argument
562 const struct argp_option *opt, *real = entry->opt; in hol_entry_short_iterate() local
565 for (opt = real, nopts = entry->num; nopts > 0 && !val; opt++, nopts--) in hol_entry_short_iterate()
[all …]
Dargp-parse.c323 const struct argp_option *opt; in convert_options() local
326 for (opt = real; !__option_is_end (opt); opt++) in convert_options()
328 if (! (opt->flags & OPTION_ALIAS)) in convert_options()
330 real = opt; in convert_options()
335 if (__option_is_short (opt)) in convert_options()
338 *cvt->short_end++ = opt->key; in convert_options()
348 if (opt->name in convert_options()
349 && find_long_option (cvt->parser->long_opts, opt->name) < 0) in convert_options()
352 cvt->long_end->name = opt->name; in convert_options()
367 ((opt->key ? opt->key : real->key) & USER_MASK) in convert_options()
[all …]
/glibc-2.36/inet/
Dinet6_opt.c118 struct ip6_opt *opt = (struct ip6_opt *) ((uint8_t *) extbuf + offset); in inet6_opt_append() local
120 opt->ip6o_type = type; in inet6_opt_append()
121 opt->ip6o_len = len; in inet6_opt_append()
123 *databufp = opt + 1; in inet6_opt_append()
196 struct ip6_opt *opt = (struct ip6_opt *) ((uint8_t *) extbuf + offset); in inet6_opt_next() local
198 if (opt->ip6o_type == IP6OPT_PAD1) in inet6_opt_next()
201 else if (opt->ip6o_type == IP6OPT_PADN) in inet6_opt_next()
202 offset += sizeof (struct ip6_opt) + opt->ip6o_len; in inet6_opt_next()
206 offset += sizeof (struct ip6_opt) + opt->ip6o_len; in inet6_opt_next()
210 *typep = opt->ip6o_type; in inet6_opt_next()
[all …]
/glibc-2.36/locale/
Dcategories.def220 DEFINE_ELEMENT (ERA, "era", opt, stringlist, 0, 100)
221 DEFINE_ELEMENT (ERA_YEAR, "era_year", opt, string)
222 DEFINE_ELEMENT (ERA_D_FMT, "era_d_fmt", opt, string)
223 DEFINE_ELEMENT (ALT_DIGITS, "alt_digits", opt, stringlist, 100, 100)
224 DEFINE_ELEMENT (ERA_D_T_FMT, "era_d_t_fmt", opt, string)
225 DEFINE_ELEMENT (ERA_T_FMT, "era_t_fmt", opt, string)
226 DEFINE_ELEMENT (_NL_TIME_ERA_NUM_ENTRIES, "time-era-num-entries", opt, word)
227 DEFINE_ELEMENT (_NL_TIME_ERA_ENTRIES, "time-era-entries", opt, string)
237 DEFINE_ELEMENT (_NL_WERA_YEAR, "wide-era_year", opt, wstring)
238 DEFINE_ELEMENT (_NL_WERA_D_FMT, "wide-era_d_fmt", opt, wstring)
[all …]
/glibc-2.36/io/
Dftwtest.c69 int opt; in main() local
74 while ((opt = getopt_long_only (argc, argv, "", options, NULL)) != -1) in main()
76 if (opt == 't') in main()
78 else if (opt == 's') in main()
Dfts.c108 #define CLR(opt) (sp->fts_options &= ~(opt)) argument
109 #define ISSET(opt) (sp->fts_options & (opt)) argument
110 #define SET(opt) (sp->fts_options |= (opt)) argument
/glibc-2.36/misc/
Dtst-mntent2.c19 #define TEST(opt, found) \ in do_test() argument
20 if ((!!hasmntopt (&mef, (opt))) != (found)) \ in do_test()
22 printf ("Option %s was %sfound\n", (opt), (found) ? "not " : ""); \ in do_test()
Dmntent_r.c268 __hasmntopt (const struct mntent *mnt, const char *opt) in weak_alias()
270 const size_t optlen = strlen (opt); in weak_alias()
273 while ((p = strstr (rest, opt)) != NULL) in weak_alias()
/glibc-2.36/manual/examples/
Dsubopt.c50 int opt; in main() local
52 while ((opt = getopt (argc, argv, "at:o:")) != -1) in main()
53 switch (opt) in main()
/glibc-2.36/nptl/
Dcond-perf.c48 int opt; in main() local
54 while ((opt = getopt (argc, argv, "n:r:k")) != -1) in main()
55 switch (opt) in main()
/glibc-2.36/ChangeLog.old/
DChangeLog.162079 * sysdeps/ieee754/ldbl-opt/Makefile (sysdep-CFLAGS): Avoid adding
2128 ieee754/ldbl-opt.
2453 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: ... here. New file.
2454 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h (long_double_symbol_1): For
2552 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h [__ASSEMBLER__]: Don't
2575 * sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c: Restore
2666 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NLDBL_DECL): Don't try
2668 * sysdeps/ieee754/ldbl-opt/nldbl-vsyslog.c (vsyslog): Restore
2670 * sysdeps/ieee754/ldbl-opt/nldbl-asprintf.c (__asprintf): Likewise.
2671 * sysdeps/ieee754/ldbl-opt/nldbl-fprintf.c (fprintf): Likewise.
[all …]
/glibc-2.36/support/
Dsupport_test_main.c288 int opt; in support_test_main() local
307 while ((opt = getopt_long (argc, argv, config->optstring, options, NULL)) in support_test_main()
309 switch (opt) in support_test_main()
325 config->cmdline_function (opt); in support_test_main()
/glibc-2.36/timezone/
Dtzselect.ksh148 while getopts c:n:t:-: opt
150 case $opt$OPTARG in
162 say >&2 "$0: -$opt$OPTARG: unknown option; try '$0 --help'"; exit 1 ;;
/glibc-2.36/sysdeps/mach/hurd/i386/
Dintr-msg.h126 #define MSG_EXAMINE(state, msgid, rcvname, send_name, opt, tmout) \ argument
133 *(opt) = args->option; \
/glibc-2.36/string/
DMakefile185 tst-xbzero-opt \
219 CFLAGS-tst-xbzero-opt.c += -O3
228 LDFLAGS-tst-xbzero-opt = -z now
/glibc-2.36/iconv/
DMakefile57 tst-iconv-opt \
105 $(objpfx)tst-iconv-opt.out: $(gen-locales)
/glibc-2.36/posix/
Dfnmatch_loop.c34 static int EXT (INT opt, const CHAR *pattern, const CHAR *string,
993 EXT (INT opt, const CHAR *pattern, const CHAR *string, const CHAR *string_end, in EXT() argument
1046 size_t slen = opt == L_('?') || opt == L_('@') in EXT()
1068 switch (opt) in EXT()
/glibc-2.36/sysdeps/unix/sysv/linux/s390/fpu/
DImplies1 # Override ldbl-opt with s390 specific routines.
/glibc-2.36/sysdeps/unix/sysv/linux/alpha/fpu/
DImplies1 # Override ldbl-opt with alpha specific routines.
/glibc-2.36/sysdeps/unix/sysv/linux/alpha/alphaev6/fpu/
DImplies1 # Override ldbl-opt with alpha specific routines.
/glibc-2.36/sysdeps/unix/sysv/linux/alpha/alphaev67/fpu/
DImplies1 # Override ldbl-opt with alpha specific routines.
/glibc-2.36/sysdeps/unix/sysv/linux/sparc/sparc32/
DImplies3 ieee754/ldbl-opt
/glibc-2.36/sysdeps/unix/sysv/linux/sparc/sparc32/fpu/
DImplies1 # We must list this here to move it ahead of the ldbl-opt code.
/glibc-2.36/sysdeps/unix/sysv/linux/s390/
DImplies5 ieee754/ldbl-opt
/glibc-2.36/sysdeps/powerpc/powerpc64/be/
DImplies-after3 ieee754/ldbl-opt

123