/netbsd-src/usr.bin/make/unit-tests/ |
H A D | directive-include-guard.mk | 18 # variable or the guard target is defined, the file is skipped completely, as 19 # including it would not have any effect, not even on the special variable 20 # '.MAKE.MAKEFILES', as that variable skips duplicate pathnames. 30 # This is the canonical form of a variable-based multiple-inclusion guard. 31 CASES+= variable-ifndef 32 LINES.variable-ifndef= \ 36 # expect: Parse_PushInput: file variable-ifndef.tmp, line 1 37 # expect: Skipping 'variable-ifndef.tmp' because 'VARIABLE_IFNDEF' is defined 42 CASES+= variable-ifndef-reuse 43 LINES.variable [all...] |
H A D | export-variants.mk | 12 . warning At this point, no variable should be exported. 16 . warning At this point, no variable should be exported. 20 . warning At this point, no variable should be exported. 28 . warning At this point, a single variable should be exported. 32 . warning At this point, a single variable should be exported. 36 . warning At this point, a single variable should be exported.
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
H A D | gen_length.c | 43 const char *variable) in length_primitive() argument 45 fprintf (codefile, "%s += der_length_%s(%s);\n", variable, typename, name); in length_primitive() 66 const char *variable, const char *tmpstr) in length_type() argument 74 variable, t->symbol->gen_name, name); in length_type() 81 length_primitive ("integer", "&enumint", variable); in length_type() 84 length_primitive ("heim_integer", name, variable); in length_type() 86 length_primitive ("integer64", name, variable); in length_type() 88 length_primitive ("unsigned64", name, variable); in length_type() 90 length_primitive ("integer", name, variable); in length_type() 92 length_primitive ("unsigned", name, variable); in length_type() [all …]
|
/netbsd-src/external/gpl2/gmake/dist/ |
H A D | variable.c | 108 struct variable const *key = (struct variable const *) keyv; in variable_hash_1() 115 struct variable const *key = (struct variable const *) keyv; in variable_hash_2() 122 struct variable const *x = (struct variable const *) xv; in variable_hash_cmp() 123 struct variable const *y = (struct variable const *) yv; in variable_hash_cmp() 161 struct variable * 167 struct variable *v; in define_variable_in_set() 168 struct variable **var_slot; in define_variable_in_set() 169 struct variable var_key; in define_variable_in_set() 176 var_slot = (struct variable **) hash_find_slot (&set->table, &var_key); in define_variable_in_set() 209 v = (struct variable *) xmalloc (sizeof (struct variable)); in define_variable_in_set() [all …]
|
H A D | makefile.vms | 93 default.obj,variable.obj,expand.obj,function.obj,strcache.obj,\ 97 default.c variable.c expand.c function.c strcache.c \ 99 commands.h dep.h filedef.h job.h make.h rule.h variable.h 118 commands.obj: commands.c make.h dep.h commands.h filedef.h variable.h job.h 119 job.obj: job.c vmsjobs.c make.h commands.h job.h filedef.h variable.h 121 file.obj: file.c make.h commands.h dep.h filedef.h variable.h 125 main.obj: main.c make.h commands.h dep.h filedef.h variable.h job.h 126 read.obj: read.c make.h commands.h dep.h filedef.h variable.h 128 rule.obj: rule.c make.h commands.h dep.h filedef.h variable.h rule.h 130 default.obj: default.c make.h rule.h dep.h filedef.h commands.h variable.h [all …]
|
H A D | variable.h | 51 struct variable struct 105 struct variable variable; member 133 extern char *recursively_expand_for_file PARAMS ((struct variable *v, 147 extern struct variable *do_variable_definition PARAMS ((const struct floc *flocp, const char *name,… 148 extern struct variable *parse_variable_definition PARAMS ((struct variable *v, char *line)); 149 extern struct variable *try_variable_definition PARAMS ((const struct floc *flocp, char *line, enum… 152 extern struct variable *lookup_variable PARAMS ((const char *name, unsigned int length)); 153 extern struct variable *lookup_variable_in_set PARAMS ((const char *name, 157 extern struct variable *define_variable_in_set
|
H A D | Makefile.ami | 121 rule.o implicit.o default.o variable.o expand.o function.o \ 128 $(srcdir)variable.c $(srcdir)expand.c $(srcdir)function.c \ 135 $(srcdir)variable.h $(ALLOCA_SRC) $(srcdir)config.h.in 275 commands.o: commands.c make.h dep.h filedef.h variable.h job.h \ 277 job.o: job.c make.h job.h filedef.h commands.h variable.h 279 file.o: file.c make.h dep.h filedef.h job.h commands.h variable.h 281 main.o: main.c make.h dep.h filedef.h variable.h job.h commands.h \ 283 read.o: read.c make.h dep.h filedef.h job.h commands.h variable.h \ 286 rule.o: rule.c make.h dep.h filedef.h job.h commands.h variable.h \ 290 variable.h [all …]
|
H A D | NMakefile | 99 $(OUTDIR)/variable.obj \ 143 gettext.h dep.h filedef.h hash.h variable.h \ 149 gettext.h filedef.h hash.h variable.h rule.h \ 162 variable.h rule.h 169 variable.h debug.h 174 gettext.h filedef.h hash.h variable.h dep.h \ 195 variable.h job.h \ 203 commands.h variable.h \ 214 gettext.h dep.h filedef.h hash.h variable.h \ 228 commands.h variable.h rule.h debug.h \ [all …]
|
H A D | SMakefile | 127 rule.o implicit.o default.o variable.o expand.o function.o \ 134 $(srcdir)variable.c $(srcdir)expand.c $(srcdir)function.c \ 141 $(srcdir)variable.h $(ALLOCA_SRC) $(srcdir)config.h.in 234 gettext.h dep.h filedef.h hash.h variable.h \ 240 gettext.h filedef.h hash.h variable.h rule.h \ 253 variable.h rule.h 260 variable.h debug.h 265 gettext.h filedef.h hash.h variable.h dep.h \ 286 variable.h job.h \ 294 commands.h variable.h \ [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libobjc/ |
H A D | ivars.c | 95 struct objc_ivar * variable = class_getInstanceVariable (object->class_pointer, name); in object_getInstanceVariable() local 97 if (variable != NULL && returnValue != NULL) in object_getInstanceVariable() 99 char *location = (char *)object + variable->ivar_offset; in object_getInstanceVariable() 104 return variable; in object_getInstanceVariable() 115 struct objc_ivar * variable = class_getInstanceVariable (object->class_pointer, name); in object_setInstanceVariable() local 117 if (variable != NULL) in object_setInstanceVariable() 119 char *location = (char *)object + variable->ivar_offset; in object_setInstanceVariable() 124 return variable; in object_setInstanceVariable() 128 id object_getIvar (id object, struct objc_ivar * variable) in object_getIvar() argument 130 if (object == nil || variable == NULL) in object_getIvar() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/ |
H A D | ivars.c | 95 struct objc_ivar * variable = class_getInstanceVariable (object->class_pointer, name); in object_getInstanceVariable() local 97 if (variable != NULL && returnValue != NULL) in object_getInstanceVariable() 99 char *location = (char *)object + variable->ivar_offset; in object_getInstanceVariable() 104 return variable; in object_getInstanceVariable() 115 struct objc_ivar * variable = class_getInstanceVariable (object->class_pointer, name); in object_setInstanceVariable() local 117 if (variable != NULL) in object_setInstanceVariable() 119 char *location = (char *)object + variable->ivar_offset; in object_setInstanceVariable() 124 return variable; in object_setInstanceVariable() 128 id object_getIvar (id object, struct objc_ivar * variable) in object_getIvar() argument 130 if (object == nil || variable == NULL) in object_getIvar() [all …]
|
/netbsd-src/external/bsd/pkg_install/dist/lib/ |
H A D | var.c | 96 var_get(const char *fname, const char *variable) in var_get() argument 107 varlen = strlen(variable); in var_get() 124 if ((p=var_cmp(line, len, variable, varlen)) == NULL) in var_get() 146 var_get_memory(const char *buf, const char *variable) in var_get_memory() argument 152 varlen = strlen(variable); in var_get_memory() 167 if ((data = var_cmp(buf, len, variable, varlen)) == NULL) in var_get_memory() 189 var_set(const char *fname, const char *variable, const char *value) in var_set() argument 201 varlen = strlen(variable); in var_set() 248 if (var_cmp(line, len, variable, varlen) == NULL) in var_set() 252 var_print(fout, variable, value); in var_set() [all …]
|
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/variables/ |
H A D | negative | 6 # Check that non-terminated variable references are detected (and 15 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.', 19 # Bogus variable value passed on the command line. 22 '#MAKEFILE#:4: *** unterminated variable reference. Stop.', 36 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.', 40 # Bogus variable value passed on the command line. 43 '#MAKEFILE#:4: *** unterminated variable reference. Stop.',
|
H A D | flavors | 3 $description = "Test various flavors of make variable setting."; 74 $answer = "$makefile:24: *** empty variable name. Stop.\n"; 91 # There's a bit of oddness here if you try to use a variable to hold the 109 # instead of in a variable, that can't happen because by the time make 111 # can't know anymore whether the prefix character came before the variable 112 # reference or was included in the first line of the variable reference. 160 # Test the basics; a "@" internally to the variable applies to only one line. 161 # A "@" before the variable applies to the entire variable.
|
/netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
H A D | sysroff.info | 68 (("os name") (chars variable bytes) ("os")) 69 (("sys name") (chars variable bytes) ("sys")) 70 (("module name") (chars variable bytes) ("mn")) 71 (("cpu") (chars variable bytes) ("cpu"))) 87 (("unit name") (chars variable byte) ("name")) 88 (("tool name") (chars variable byte) ("tool")) 90 (("linker name") (chars variable byte) ("linker")) 126 (("name") (chars variable byte) ("name"))) 140 (("symbol name") (chars variable byte) ("name"))) 155 (("symbol name") (chars variable byte) ("name"))) [all …]
|
/netbsd-src/external/gpl3/binutils/dist/binutils/ |
H A D | sysroff.info | 68 (("os name") (chars variable bytes) ("os")) 69 (("sys name") (chars variable bytes) ("sys")) 70 (("module name") (chars variable bytes) ("mn")) 71 (("cpu") (chars variable bytes) ("cpu"))) 87 (("unit name") (chars variable byte) ("name")) 88 (("tool name") (chars variable byte) ("tool")) 90 (("linker name") (chars variable byte) ("linker")) 126 (("name") (chars variable byte) ("name"))) 140 (("symbol name") (chars variable byte) ("name"))) 155 (("symbol name") (chars variable byte) ("name"))) [all …]
|
/netbsd-src/external/gpl3/gcc/ |
H A D | README.warnings | 38 bsd.own.mk variable: ${CC_WNO_MISSING_TEMPLATE_KEYWORD} 45 bsd.own.mk variable: ${CC_WNO_STRINGOP_OVERREAD} 52 bsd.own.mk variable: ${CC_WNO_REGISTER} 63 bsd.own.mk variable: ${CC_WNO_ARRAY_BOUNDS} 78 bsd.own.mk variable: ${CC_WNO_MAYBE_UNINITIALIZED} 86 bsd.own.mk variable: ${CC_WNO_RETURN_LOCAL_ADDR} 98 bsd.own.mk variable: ${CC_WNO_ADDRESS_OF_PACKED_MEMBER} 110 bsd.own.mk variable: ${CC_WNO_STRINGOP_TRUNCATION} 120 bsd.own.mk variable: ${CC_WNO_CAST_FUNCTION_TYPE} 134 bsd.own.mk variable: ${CC_WNO_STRINGOP_OVERFLOW} [all …]
|
/netbsd-src/lib/libc/citrus/ |
H A D | citrus_mapper.c | 134 const char **module, const char **variable) in lookup_mapper_entry() argument 173 *variable = p; in lookup_mapper_entry() 211 const char * __restrict variable) in mapper_open() argument 267 (const void *)variable, in mapper_open() 268 strlen(variable)+1, in mapper_open() 290 const char * __restrict variable) in _citrus_mapper_open_direct() argument 292 return mapper_open(ma, rcm, module, variable); in _citrus_mapper_open_direct() 324 const char *module, *variable = NULL; in _citrus_mapper_open() local 344 (size_t)PATH_MAX, &module, &variable); in _citrus_mapper_open() 349 ret = mapper_open(ma, &cm, module, variable); in _citrus_mapper_open()
|
H A D | citrus_ctype.c | 63 _citrus_module_t handle, void *variable, size_t lenvar, in _initctypemodule() argument 127 &cc->cc_closure, variable, lenvar, szpriv); in _initctypemodule() 143 char const *encname, void *variable, size_t lenvar, in _citrus_ctype_open() argument 151 _DIAGASSERT(!lenvar || variable!=NULL); in _citrus_ctype_open() 168 ret = _initctypemodule(cc, encname, handle, variable, lenvar, szpriv); in _citrus_ctype_open() 200 char const *encname, void *variable, size_t lenvar, in _citrus_ctype_open() argument
|
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/runtime/ |
H A D | environ.c | 70 typedef struct variable struct 75 void (*init) (struct variable *); argument 77 variable; typedef 79 static void init_unformatted (variable *); 85 init_integer (variable * v) in init_integer() 105 init_boolean (variable * v) in init_boolean() 124 init_sep (variable * v) in init_sep() 165 static variable variable_table[] = { 219 variable *v; in init_variables() 644 void init_unformatted (variable * v) in init_unformatted()
|
/netbsd-src/external/gpl3/gcc/dist/libgfortran/runtime/ |
H A D | environ.c | 69 typedef struct variable struct 74 void (*init) (struct variable *); argument 76 variable; typedef 78 static void init_unformatted (variable *); 84 init_integer (variable * v) in init_integer() 104 init_boolean (variable * v) in init_boolean() 123 init_sep (variable * v) in init_sep() 164 static variable variable_table[] = { 218 variable *v; in init_variables() 691 void init_unformatted (variable * v) in init_unformatted()
|
/netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
H A D | NEWS | 66 g. There is a simple variable comparison facility available for use within an 69 either `on' or `off'; variable names are separated from the operator by 76 i. The history library has a new variable that allows applications to set the 96 b. There is a new bindable variable, `enable-bracketed-paste', which enables 107 e. There is a new bindable variable, `colored-completion-prefix', which, if 157 t. New application-settable variable: rl_persistent_signal_handlers: if set 180 when setting a string variable's value. 185 e. New application-settable variable: rl_filename_stat_hook: a function called 193 g. New user-settable variable `colored-stats', enables use of colored text 197 h. New user-settable variable `keyseq-timout', acts as an inter-character [all …]
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
H A D | xray_flags.inc | 30 "DEPRECATED: use the environment variable XRAY_BASIC_OPTIONS and set " 33 "DEPRECATED: use the environment variable XRAY_BASIC_OPTIONS and set " 36 "DEPRECATED: use the environment variable XRAY_BASIC_OPTIONS and set " 43 "DEPRECATED: use the environment variable XRAY_FDR_OPTIONS and set " 46 "DEPRECATED: use the environment variable XRAY_FDR_OPTIONS and set " 49 "DEPRECATED: use the environment variable XRAY_FDR_OPTIONS and set "
|
/netbsd-src/external/gpl3/gcc.old/ |
H A D | README.warnings | 39 bsd.own.mk variable: ${CC_WNO_MAYBE_UNINITIALIZED} 47 bsd.own.mk variable: ${CC_WNO_RETURN_LOCAL_ADDR} 59 bsd.own.mk variable: ${CC_WNO_ADDRESS_OF_PACKED_MEMBER} 71 bsd.own.mk variable: ${CC_WNO_STRINGOP_TRUNCATION} 81 bsd.own.mk variable: ${CC_WNO_CAST_FUNCTION_TYPE} 95 bsd.own.mk variable: ${CC_WNO_STRINGOP_OVERFLOW} 108 bsd.own.mk variable: ${CC_WNO_FORMAT_TRUNCATION} 120 bsd.own.mk variable: ${CC_WNO_FORMAT_OVERFLOW} 132 bsd.own.mk variable: ${CC_WNO_IMPLICIT_FALLTHROUGH}
|
/netbsd-src/crypto/external/bsd/openssl/dist/ |
H A D | NOTES-VALGRIND.md | 29 This variable is used to specify the shell used to execute OpenSSL test 31 to allow programs to find shared libraries. The variable can be modified 42 Additional Valgrind options may be added to the `EXE_SHELL` variable. 46 This variable controls the processor-specific code on Intel processors. 48 processor, and use it to its fullest capability. This variable can be 56 This variable may need to be set to something different based on the 68 If an error occurs, you can then run the specific test via the `TESTS` variable
|