| /openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/ |
| D | Utils.pm | 268 my @macros; 270 push @macros, qq{$key=$val}; 272 my $macros = ''; 273 if (scalar(@macros)) { 275 map { $_ = qq{"$_"} } @macros; 276 $macros = '/MACRO=(' . join(',', @macros) . ')'; 279 $macros = join(' ', @macros); 283 return $is_mms ? "$make$macros $target" : "$make $target $macros";
|
| /openbsd/src/gnu/usr.bin/perl/vms/ |
| D | mms2make.pl | 32 foreach (@ARGV) { $macros{"\U$_"}=1 } 35 $macros{"DECC"} = 1 if $macros{"__AXP__"}; 61 unshift @conditions, ($macros{"\U$1"} ? $conditions[0] : 0); 96 my($macros,$end) = ($1,$2); 97 $macros =~ s/,/ /g; # We're hosed if there're commas within a macro -
|
| /openbsd/src/usr.bin/m4/ |
| D | look.c | 64 struct ohash macros; variable 89 ohash_init(¯os, 10, ¯o_info); in init_macros() 98 return ohash_find(¯os, ohash_qlookup(¯os, name)); in lookup() 106 p = ohash_find(¯os, ohash_qlookup(¯os, name)); in lookup_macro_definition() 140 i = ohash_qlookupi(¯os, name, &end); in create_entry() 141 n = ohash_find(¯os, i); in create_entry() 144 ohash_insert(¯os, i, n); in create_entry() 218 for (n = ohash_first(¯os, &i); n != NULL; in macro_for_all() 219 n = ohash_next(¯os, &i)) in macro_for_all() 256 for (p = ohash_first(¯os, &i); p != NULL; in mark_traced() [all …]
|
| /openbsd/src/lib/libedit/ |
| D | read.c | 57 struct macros { struct 64 struct macros macros; argument 71 static void read_clearmacros(struct macros *); 72 static void read_pop(struct macros *); 80 struct macros *ma; in read_init() 85 ma = &el->el_read->macros; in read_init() 105 read_clearmacros(&el_read->macros); in read_end() 106 free(el_read->macros.macro); in read_end() 107 el_read->macros.macro = NULL; in read_end() 140 struct macros *ma = &el->el_read->macros; in el_wpush() [all …]
|
| /openbsd/src/usr.bin/mandoc/ |
| D | dba.c | 64 dba->macros = dba_array_new(MACRO_MAX, 0); in dba_new() 69 dba_array_set(dba->macros, im, macro); in dba_new() 82 dba_array_FOREACH(dba->macros, macro) { in dba_free() 91 dba_array_free(dba->macros); in dba_free() 128 dba_macros_write(dba->macros); in dba_write() 367 entry = get_macro_entry(dba_array_get(dba->macros, im), value, np); in dba_macro_new() 378 dba_macro_add(struct dba_array *macros, int32_t im, const char *value, in dba_macro_add() argument 385 entry = get_macro_entry(dba_array_get(macros, im), value, 1); in dba_macro_add() 396 dba_macros_write(struct dba_array *macros) in dba_macros_write() argument 401 pos_macros = dba_array_writelen(macros, 1); in dba_macros_write() [all …]
|
| D | dbm.c | 56 static struct macro *macros[MACRO_MAX]; variable 107 macros[im] = (struct macro *)++ep; in dbm_open() 356 cp = nvals[im] ? dbm_get(macros[im]->value) : NULL; in page_bymacro() 374 pp = dbm_get(macros[im][iv].pages); in page_bymacro() 403 macro.value = dbm_get(macros[im][iv].value); in dbm_macro_get() 404 macro.pp = dbm_get(macros[im][iv].pages); in dbm_macro_get() 437 pp = dbm_get(macros[im]->pages); in macro_bypage() 469 return dbm_get(macros[im][iv - 1].value); in macro_bypage()
|
| /openbsd/src/usr.bin/ftp/ |
| D | ruserpass.c | 200 tmp = macros[macnum].mac_name; in ruserpass() 221 macros[macnum].mac_start = macbuf; in ruserpass() 224 macros[macnum].mac_start = in ruserpass() 225 macros[macnum-1].mac_end + 1; in ruserpass() 227 tmp = macros[macnum].mac_start; in ruserpass() 236 if (tmp == macros[macnum].mac_start) { in ruserpass() 237 macros[macnum++].mac_end = tmp; in ruserpass() 240 macros[macnum++].mac_end = in ruserpass()
|
| D | domacro.c | 55 if (!strncmp(argv[1], macros[i].mac_name, 9)) { in domacro() 66 cp1 = macros[i].mac_start; in domacro() 67 while (cp1 != macros[i].mac_end) { in domacro() 136 if (cp1 != macros[i].mac_end) { in domacro()
|
| /openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/ |
| D | XS.pm | 437 my %macros = (); 440 $macros{$1} = $2; 446 my $make_cmd = make_macro($make, $target, %macros); 454 %macros = (); 457 $macros{$1} = $2; 467 my $test_cmd = make_macro($make, $target, %macros);
|
| /openbsd/src/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/ |
| D | Utils.pm | 255 my $macros = ''; 258 $macros .= qq{/macro="$key=$val"}; 261 $macros .= qq{ $key=$val}; 265 return $is_mms ? "$make$macros $target" : "$make $target $macros";
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | opth-gen.awk | 137 macros[i] = "CL_" langs[i] 138 gsub( "[^A-Za-z0-9_]", "X", macros[i] ) 139 s = substr(" ", length (macros[i])) 140 print "#define " macros[i] s " (1 << " i ")"
|
| /openbsd/src/libexec/tradcpp/ |
| D | macro.c | 73 static struct macroarrayarray macros; variable 311 macroarrayarray_init(¯os); in macrotable_init() 312 macroarrayarray_setsize(¯os, 4); in macrotable_init() 314 macroarrayarray_set(¯os, i, NULL); in macrotable_init() 329 numbuckets = macroarrayarray_num(¯os); in macrotable_cleanup() 331 bucket = macroarrayarray_get(¯os, i); in macrotable_cleanup() 337 macroarrayarray_setsize(¯os, 0); in macrotable_cleanup() 338 macroarrayarray_cleanup(¯os); in macrotable_cleanup() 352 bucket = macroarrayarray_get(¯os, hash & hashmask); in macrotable_findlen() 395 numbuckets = macroarrayarray_num(¯os); in macrotable_rehash() [all …]
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/config/ |
| D | inttypes-pri.m4 | 12 # macros to non-string values. This is the case on AIX 4.3.3. 18 AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], 30 [Define if <inttypes.h> exists and defines unusable PRI* macros.])
|
| /openbsd/src/gnu/gcc/config/ |
| D | inttypes-pri.m4 | 12 # macros to non-string values. This is the case on AIX 4.3.3. 18 AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], 30 [Define if <inttypes.h> exists and defines unusable PRI* macros.])
|
| /openbsd/src/gnu/usr.bin/texinfo/m4/ |
| D | inttypes-pri.m4 | 12 # macros to non-string values. This is the case on AIX 4.3.3. 18 AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], 30 [Define if <inttypes.h> exists and defines unusable PRI* macros.])
|
| /openbsd/src/regress/usr.bin/mandoc/db/out/ |
| D | xr.dout | 3 macros offset 0x00000064 9 page desc # indexing of cross reference macros 12 macros count 36
|
| D | in.dout | 3 macros offset 0x0000005c 9 page desc # indexing of include macros 12 macros count 36
|
| D | sh.dout | 3 macros offset 0x00000064 9 page desc # indexing of section header macros 12 macros count 36
|
| D | va.dout | 3 macros offset 0x0000006c 9 page desc # indexing of variable type and name macros 12 macros count 36
|
| D | fn.dout | 3 macros offset 0x00000078 9 page desc # indexing of function prototype macros 12 macros count 36
|
| /openbsd/src/regress/usr.bin/mandoc/roff/cond/ |
| D | if.out_ascii | 15 Two-line true condition without continuation and macros. 17 Two-line true condition with continuation and macros. 22 Inner two-line true condition without continuation and macros.
|
| /openbsd/src/regress/usr.bin/mandoc/mdoc/Rs/ |
| D | outside.out_markdown | 5 **Rs-outside** - reference macros outside reference blocks 11 Some percent-macros can be used outside reference blocks.
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/bfd/doc/ |
| D | libbfd.texi | 28 These macros as used for reading and writing raw data in 33 returned by these macros are identical so they can be swapped 34 around in macros---for example, @file{libaout.h} defines @code{GET_WORD} 46 /* Byte swapping macros for user section data. */ 103 These macros have the same function as their @code{bfd_get_x} 110 /* Byte swapping macros for file header data. */
|
| /openbsd/src/gnu/usr.bin/binutils/bfd/doc/ |
| D | libbfd.texi | 25 These macros as used for reading and writing raw data in 30 returned by these macros are identical so they can be swapped 31 around in macros---for example, @file{libaout.h} defines @code{GET_WORD} 43 /* Byte swapping macros for user section data. */ 100 These macros have the same function as their @code{bfd_get_x} 107 /* Byte swapping macros for file header data. */
|
| /openbsd/src/gnu/llvm/libcxx/docs/DesignDocs/ |
| D | FeatureTestMacros.rst | 11 Libc++ implements the C++ feature test macros as specified in the C++20 standard, 19 Feature test macros are tricky to track, implement, test, and document correctly. 39 update feature test macros in libc++.
|