| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| stats.h | 4 /* OPTION(opt, var_name, default, set_value_to) */ 6 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) 16 #define OPTION(o, v, d, s) stats_print_option_num_##v [all...] |
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| stats.h | 4 /* OPTION(opt, var_name, default, set_value_to) */ 6 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) 16 #define OPTION(o, v, d, s) stats_print_option_num_##v [all...] |
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| stats.h | 4 /* OPTION(opt, var_name, default, set_value_to) */ 6 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) [all...] |
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| stats.h | 4 /* OPTION(opt, var_name, default, set_value_to) */ 6 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) [all...] |
| /src/external/bsd/flex/dist/tests/ |
| testwrapper-direct.sh | 8 while getopts :b:s: OPTION ; do 9 case $OPTION in
|
| testwrapper.sh | 16 while getopts :d:i:rt1 OPTION ; do 17 case $OPTION in
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| ObjdumpOptID.h | 5 OBJDUMP_INVALID = 0, // This is not an option ID. 6 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 10 #undef OPTION
|
| /src/usr.bin/find/ |
| option.c | 1 /* $NetBSD: option.c,v 1.29 2021/08/09 20:49:10 andvar Exp $ */ 38 static char sccsid[] = "from: @(#)option.c 8.2 (Berkeley) 4/16/94"; 40 __RCSID("$NetBSD: option.c,v 1.29 2021/08/09 20:49:10 andvar Exp $"); 56 static OPTION *option(char *); 59 static OPTION const options[] = { 161 OPTION *p; 169 if ((p = option(opt)) == NULL) 170 errx(1, "%s: unknown option", opt); 181 static OPTION * 182 option(char *name) function [all...] |
| /src/external/gpl2/groff/dist/contrib/gdiffmk/ |
| gdiffmk.sh | 9 # the Free Software Foundation; either version 2, or (at your option) 51 -B By default, the deleted texts marked by the \`-D' option end 52 with an added troff \`.br' command. This option prevents 54 -M MARK1 MARK2 Change the delimiting marks for the \`-D' option. 57 one that accepts the \`-Dname' option, such as GNU diff. 153 Exit 255 "Option \`$1' requires a value." 164 for OPTION 166 case "${OPTION}" in 168 ADDMARK=$( RequiresArgument "${OPTION}" $2 ) && 172 CHANGEMARK=$( RequiresArgument "${OPTION}" $2 ) & [all...] |
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-options.h | 10 (at your option) any later version. 25 /* ARGV option support. 31 For OPTION_HANDLER: arg#2 is the processor to apply to option to 32 (all if NULL); arg#3 is the option index; arg#4 is the option's 38 /* Declare option handlers with a macro so it's usable on k&r systems. */ 43 /* The long option information. */ 45 struct option opt; 47 /* The short option with the same meaning ('\0' if none). 70 If DOC is NULL, this option name is listed as a synonym for th [all...] |
| sim-watch.c | 10 (at your option) any later version. 47 /* Break an option number into its op/int-nr */ 50 int option) 53 watchpoint_type type = ((option - OPTION_WATCH_OP) 61 int option) 64 int interrupt_nr = ((option - OPTION_WATCH_OP) 339 sim_io_eprintf (sd, "Unknown watch option %d\n", opt); 363 static const OPTION watchpoint_options[] = 407 OPTION *int_options = NZALLOC (OPTION, 1 + (watch->nr_interrupts + 1) * nr_watchpoint_types) 416 OPTION *option = &int_options[nr]; local [all...] |
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-options.h | 10 (at your option) any later version. 25 /* ARGV option support. 31 For OPTION_HANDLER: arg#2 is the processor to apply to option to 32 (all if NULL); arg#3 is the option index; arg#4 is the option's 38 /* Declare option handlers with a macro so it's usable on k&r systems. */ 43 /* The long option information. */ 45 struct option opt; 47 /* The short option with the same meaning ('\0' if none). 70 If DOC is NULL, this option name is listed as a synonym for th [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| Options.h | 1 //===--- Options.h - Option info & table ------------------------*- C++ -*-===// 42 OPT_INVALID = 0, // This is not an option ID. 43 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 48 #undef OPTION
|
| /src/external/bsd/nvi/dist/common/ |
| options_f.c | 38 * PUBLIC: int f_altwerase __P((SCR *, OPTION *, const char *, u_long *)); 41 f_altwerase(SCR *sp, OPTION *op, const char *str, u_long *valp) 49 * PUBLIC: int f_columns __P((SCR *, OPTION *, const char *, u_long *)); 52 f_columns(SCR *sp, OPTION *op, const char *str, u_long *valp) 79 * PUBLIC: int f_lines __P((SCR *, OPTION *, const char *, u_long *)); 82 f_lines(SCR *sp, OPTION *op, const char *str, u_long *valp) 132 * PUBLIC: int f_lisp __P((SCR *, OPTION *, const char *, u_long *)); 135 f_lisp(SCR *sp, OPTION *op, const char *str, u_long *valp) 137 msgq(sp, M_ERR, "044|The lisp option is not implemented"); 142 * PUBLIC: int f_msgcat __P((SCR *, OPTION *, const char *, u_long *)) [all...] |
| common.h | 49 typedef struct _option OPTION;
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ |
| DriverOptions.cpp | 11 #include "llvm/Option/OptTable.h" 12 #include "llvm/Option/Option.h" 24 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 26 {PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, \ 29 #undef OPTION
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/ |
| llvm-symbolizer.cpp | 22 #include "llvm/Option/Arg.h" 23 #include "llvm/Option/ArgList.h" 24 #include "llvm/Option/Option.h" 43 OPT_INVALID = 0, // This is not an option ID. 44 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 48 #undef OPTION 56 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 60 METAVAR, OPT_##ID, opt::Option::KIND##Class, \ 64 #undef OPTION [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| LangOptions.cpp | 57 #define OPTION(NAME, TYPE, WIDTH, PREVIOUS) \ 64 #define OPTION(NAME, TYPE, WIDTH, PREVIOUS) \
|
| /src/usr.bin/rdist/ |
| gram.y | 68 %term OPTION 15 77 %type <intval> OPTION, options 184 | options OPTION = { 312 return(OPTION); 316 return(OPTION); 320 return(OPTION); 324 return(OPTION); 328 return(OPTION); 332 return(OPTION); 336 return(OPTION); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-dlltool/ |
| DlltoolDriver.cpp | 17 #include "llvm/Option/Arg.h" 18 #include "llvm/Option/ArgList.h" 19 #include "llvm/Option/Option.h" 32 #define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11, _12) OPT_##ID, 34 #undef OPTION 42 #define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12) \ 43 {X1, X2, X10, X11, OPT_##ID, llvm::opt::Option::KIND##Class, \ 46 #undef OPTION
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-mt/ |
| llvm-mt.cpp | 14 #include "llvm/Option/Arg.h" 15 #include "llvm/Option/ArgList.h" 16 #include "llvm/Option/Option.h" 37 OPT_INVALID = 0, // This is not an option ID. 38 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 42 #undef OPTION 50 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 54 METAVAR, OPT_##ID, opt::Option::KIND##Class, \ 58 #undef OPTION [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| opts.h | 1 /* Command line option handling. 8 Software Foundation; either version 3, or (at your option) any later 70 /* Text of the option, including initial '-'. */ 76 /* Warning to give when this option is used, or NULL. */ 78 /* Argument of alias target when positive option given, or NULL. */ 80 /* Argument of alias target when negative option given, or NULL. */ 84 /* Previous option that is an initial substring of this one, or 87 /* Option length, not including initial '-'. */ 89 /* Next option in a sequence marked with Negative, or -1 if none. 90 For a single option with both a negative and a positve for [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| opts.h | 1 /* Command line option handling. 8 Software Foundation; either version 3, or (at your option) any later 69 /* Text of the option, including initial '-'. */ 75 /* Warning to give when this option is used, or NULL. */ 77 /* Argument of alias target when positive option given, or NULL. */ 79 /* Argument of alias target when negative option given, or NULL. */ 83 /* Previous option that is an initial substring of this one, or 86 /* Option length, not including initial '-'. */ 88 /* Next option in a sequence marked with Negative, or -1 if none. 89 For a single option with both a negative and a positve for [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/ |
| llvm-cvtres.cpp | 18 #include "llvm/Option/Arg.h" 19 #include "llvm/Option/ArgList.h" 20 #include "llvm/Option/Option.h" 40 OPT_INVALID = 0, // This is not an option ID. 41 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 45 #undef OPTION 53 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ 57 METAVAR, OPT_##ID, opt::Option::KIND##Class, \ 61 #undef OPTION [all...] |
| /src/usr.bin/menuc/ |
| scan.l | 51 %option noinput 95 option { return OPTION; }
|