Home
last modified time | relevance | path

Searched refs:OPTION (Results 1 – 25 of 96) sorted by relevance

1234

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DFPOptions.def11 #ifndef OPTION
15 // OPTION(name, type, width, previousName)
17 OPTION(RoundingMath, bool, 1, FPContractMode)
21 OPTION(AllowFPReassociate, bool, 1, AllowFEnvAccess)
22 OPTION(NoHonorNaNs, bool, 1, AllowFPReassociate)
23 OPTION(NoHonorInfs, bool, 1, NoHonorNaNs)
24 OPTION(NoSignedZero, bool, 1, NoHonorInfs)
25 OPTION(AllowReciprocal, bool, 1, NoSignedZero)
26 OPTION(AllowApproxFunc, bool, 1, AllowReciprocal)
30 OPTION(MathErrno, bool, 1, BFloat16ExcessPrecision)
[all …]
/freebsd-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dstats.h6 OPTION('J', json, false, true) \
7 OPTION('g', general, true, false) \
8 OPTION('m', merged, config_stats, false) \
9 OPTION('d', destroyed, config_stats, false) \
10 OPTION('a', unmerged, config_stats, false) \
11 OPTION('b', bins, true, false) \
12 OPTION('l', large, true, false) \
13 OPTION('x', mutex, true, false) \
14 OPTION('e', extents, true, false)
17 #define OPTION(o, v, d, s) stats_print_option_num_##v, macro
[all …]
/freebsd-14.2/contrib/nvi/common/
H A Doptions_f.c31 f_altwerase(SCR *sp, OPTION *op, char *str, u_long *valp) in f_altwerase()
42 f_columns(SCR *sp, OPTION *op, char *str, u_long *valp) in f_columns()
72 f_lines(SCR *sp, OPTION *op, char *str, u_long *valp) in f_lines()
125 f_lisp(SCR *sp, OPTION *op, char *str, u_long *valp) in f_lisp()
135 f_msgcat(SCR *sp, OPTION *op, char *str, u_long *valp) in f_msgcat()
145 f_print(SCR *sp, OPTION *op, char *str, u_long *valp) in f_print()
170 f_readonly(SCR *sp, OPTION *op, char *str, u_long *valp) in f_readonly()
225 f_w300(SCR *sp, OPTION *op, char *str, u_long *valp) in f_w300()
242 f_w1200(SCR *sp, OPTION *op, char *str, u_long *valp) in f_w1200()
259 f_w9600(SCR *sp, OPTION *op, char *str, u_long *valp) in f_w9600()
[all …]
/freebsd-14.2/bin/sh/tests/builtins/
H A Dgetopts1.04 getopts "ab:" OPTION
5 printf '%s\n' "${OPTION}"
12 # of 'getopts' and do not produce the "a" in $OPTION.
15 getopts "ab:" OPTION
16 printf '%s\n' "${OPTION}"
17 getopts "ab:" OPTION 3>&2 2>&1 >&3 3>&-
18 printf '%s\n' "${OPTION}"
23 getopts "ab:" OPTION
24 printf '%s\n' "${OPTION}"
/freebsd-14.2/usr.bin/find/
H A Doption.c56 static OPTION const options[] = {
184 OPTION *p; in find_create()
199 OPTION *
202 OPTION tmp; in lookup_option()
205 return ((OPTION *)bsearch(&tmp, options, in lookup_option()
206 sizeof(options)/sizeof(OPTION), sizeof(OPTION), typecompare)); in lookup_option()
212 return (strcmp(((const OPTION *)a)->name, ((const OPTION *)b)->name)); in typecompare()
H A Dfunction.c65 static PLAN *palloc(OPTION *);
68 static char *nextarg(OPTION *, char ***);
88 palloc(OPTION *option) in palloc()
221 nextarg(OPTION *option, char ***argvp) in nextarg()
272 c_Xmin(OPTION *option, char ***argvp) in c_Xmin()
321 c_Xtime(OPTION *option, char ***argvp) in c_Xtime()
524 c_depth(OPTION *option, char ***argvp) in c_depth()
696 c_exec(OPTION *option, char ***argvp) in c_exec()
1051 c_inum(OPTION *option, char ***argvp) in c_inum()
1175 c_name(OPTION *option, char ***argvp) in c_name()
[all …]
/freebsd-14.2/sys/dev/usb/serial/
H A Du3g.c386 U3G_DEV(OPTION, E6500, 0),
387 U3G_DEV(OPTION, E6501, 0),
388 U3G_DEV(OPTION, E6601, 0),
389 U3G_DEV(OPTION, E6721, 0),
390 U3G_DEV(OPTION, E6741, 0),
391 U3G_DEV(OPTION, E6761, 0),
392 U3G_DEV(OPTION, E6800, 0),
393 U3G_DEV(OPTION, E7021, 0),
394 U3G_DEV(OPTION, E7041, 0),
395 U3G_DEV(OPTION, E7061, 0),
[all …]
/freebsd-14.2/usr.bin/vi/
H A Dextern.h395 int f_columns(SCR *, OPTION *, char *, u_long *);
396 int f_lines(SCR *, OPTION *, char *, u_long *);
397 int f_lisp(SCR *, OPTION *, char *, u_long *);
398 int f_msgcat(SCR *, OPTION *, char *, u_long *);
399 int f_print(SCR *, OPTION *, char *, u_long *);
400 int f_readonly(SCR *, OPTION *, char *, u_long *);
402 int f_reformat(SCR *, OPTION *, char *, u_long *);
404 int f_w300(SCR *, OPTION *, char *, u_long *);
405 int f_w1200(SCR *, OPTION *, char *, u_long *);
406 int f_w9600(SCR *, OPTION *, char *, u_long *);
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DObjdumpOptID.h8 #define OPTION(...) LLVM_MAKE_OPT_ID_WITH_ID_PREFIX(OBJDUMP_, __VA_ARGS__), macro
10 #undef OPTION
/freebsd-14.2/contrib/file/m4/
H A Dltoptions.m417 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
38 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
43 # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
45 # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
56 # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
95 # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
[all …]
/freebsd-14.2/contrib/ntp/sntp/m4/
H A Dltoptions.m417 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
38 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
43 # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
45 # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
56 # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
95 # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
[all …]
/freebsd-14.2/contrib/openpam/m4/
H A Dltoptions.m417 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
38 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
43 # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
45 # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
56 # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
95 # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
[all …]
/freebsd-14.2/contrib/ntp/sntp/libevent/m4/
H A Dltoptions.m417 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
38 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
43 # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
45 # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
56 # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
95 # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
[all …]
/freebsd-14.2/contrib/libevent/m4/
H A Dltoptions.m417 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
38 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
43 # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
45 # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
56 # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
95 # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
[all …]
/freebsd-14.2/contrib/ldns/m4/
H A Dltoptions.m417 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
38 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
43 # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
45 # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
56 # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
95 # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
[all …]
/freebsd-14.2/contrib/openbsm/m4/
H A Dltoptions.m417 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
38 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
43 # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
45 # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
56 # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
95 # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp36 #define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__), macro
38 #undef OPTION
50 #define OPTION(...) LLVM_CONSTRUCT_OPT_INFO(__VA_ARGS__), macro
52 #undef OPTION
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFDirectiveParser.h29 #define OPTION(...) LLVM_MAKE_OPT_ID_WITH_ID_PREFIX(COFF_OPT_, __VA_ARGS__), macro
31 #undef OPTION
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp29 #define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__), macro
31 #undef OPTION
43 #define OPTION(...) LLVM_CONSTRUCT_OPT_INFO(__VA_ARGS__), macro
45 #undef OPTION
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.h46 #define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__), macro
49 #undef OPTION
/freebsd-14.2/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp36 #define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__), macro
38 #undef OPTION
50 #define OPTION(...) LLVM_CONSTRUCT_OPT_INFO(__VA_ARGS__), macro
52 #undef OPTION
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DDriver.h28 #define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__), macro
30 #undef OPTION
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DDriverOptions.cpp39 #define OPTION(...) LLVM_CONSTRUCT_OPT_INFO(__VA_ARGS__), macro
41 #undef OPTION
/freebsd-14.2/contrib/libxo/
H A Dlibxo-config.in20 Usage: libxo-config [OPTION]
22 Known values for OPTION are:
/freebsd-14.2/sys/dev/usb/net/
H A Duhso.c254 UHSO_DEV(OPTION, GTMAX72, UHSO_STATIC_IFACE),
258 UHSO_DEV(OPTION, GTHSDPA, UHSO_STATIC_IFACE),
264 UHSO_DEV(OPTION, GE40X, UHSO_AUTO_IFACE),
265 UHSO_DEV(OPTION, GE40X_1, UHSO_AUTO_IFACE),
266 UHSO_DEV(OPTION, GE40X_2, UHSO_AUTO_IFACE),
267 UHSO_DEV(OPTION, GE40X_3, UHSO_AUTO_IFACE),
269 UHSO_DEV(OPTION, ICON401, UHSO_AUTO_IFACE),
271 UHSO_DEV(OPTION, GMT382, UHSO_AUTO_IFACE),
273 UHSO_DEV(OPTION, GTM661W, UHSO_AUTO_IFACE),
283 UHSO_DEV(OPTION, ICON505, UHSO_AUTO_IFACE),
[all …]

1234