HomeSort by: relevance | last modified time | path
    Searched refs:MACRO (Results 1 - 12 of 12) sorted by relevancy

  /src/tests/lib/libc/gen/
h_ctype_abuse.c 77 MACRO,
100 if (strcmp(argv[2], "macro") == 0)
101 mode = MACRO;
123 case MACRO: \
  /src/sys/external/isc/libsodium/dist/m4/
ltsugar.m4 46 # lt_append(MACRO-NAME, STRING, [SEPARATOR])
48 # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'.
50 # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
51 # No SEPARATOR is output if MACRO-NAME was previously undefined (different
54 # This macro is needed until we can rely on Autoconf 2.62, since earlier
77 # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
79 # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
ltoptions.m4 17 # _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
36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
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)
59 # with MACRO-NAME. If any OPTION has a matching handler declared with
60 # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain abou
    [all...]
  /src/sys/dev/microcode/aic7xxx/
aicasm_macro_scan.l 5 * Sub-Lexical Analyzer for macro invokation in
133 /* May be a symbol or a macro invocation. */
135 if (mmlval.sym->type != MACRO) {
136 stop("Expecting Macro Name",
154 stop("EOF encountered in macro call", EX_DATAERR);
aicasm_macro_gram.y 5 * Sub-parser for macro invocation in the Aic7xxx SCSI
97 stop("Too few arguments for macro invocation",
136 if (macro_symbol == NULL || macro_symbol->type != MACRO) {
137 stop("Invalid current symbol for adding macro arg",
142 * Macro Invocation. Find the appropriate argument and fill
152 stop("Too many arguments for macro invocation", EX_DATAERR);
aicasm_symbol.h 65 MACRO
aicasm_gram.y 742 stop("Re-definition of symbol as a macro",
747 cur_symbol->type = MACRO;
1513 case MACRO:
1517 stop("Can't create macro info", EX_SOFTWARE);
1540 if (cur_symbol == NULL || cur_symbol->type != MACRO) {
1541 stop("Invalid current symbol for adding macro arg",
1571 if (cur_symbol == NULL || cur_symbol->type != MACRO) {
1572 stop("Invalid current symbol for adding macro arg",
1578 stop("Can't duplicate macro body text", EX_SOFTWARE);
  /src/usr.bin/fgen/
fgen.h 42 #define MACRO 0x0000F00D
53 /* macro instruction as separate words */
54 struct macro { struct
58 struct macro *l;
59 struct macro *r;
fgen.l 79 static struct macro *aliases = NULL;
310 static int aadd(struct macro *, struct macro *);
311 static struct macro *alookup(struct macro *, const char *);
703 static struct macro macros[] = {
877 aadd(struct macro *dict, struct macro *new)
881 new->type = MACRO;
882 ASSERT(dict->type == MACRO);
    [all...]
  /src/sys/arch/luna68k/dev/xplx/
xplx.asm 303 ADD_HL_A: .MACRO
310 WAIT3 .MACRO
314 WAIT4 .MACRO
318 WAIT6 .MACRO
323 WAIT7 .MACRO
328 WAIT8 .MACRO
333 WAIT9 .MACRO
339 WAIT10 .MACRO
345 WAIT11 .MACRO
351 WAIT12 .MACRO
    [all...]
  /src/share/misc/
style 219 * Spacing before and after the macro name may be any whitespace, though
222 * all in lowercase, the macro has the same name all in uppercase.
223 * If the macro is an expression, wrap the expression in parentheses.
224 * If the macro is more than a single statement, use ``do { ... } while (0)''
228 #define MACRO(v, w, x, y) \
243 * Sometimes we want a macro to be conditionally defined for debugging
  /src/lib/libc/gen/
getpwent.c 275 #define MACRO(a) do { a } while (0)
276 #define EXPAND(e) MACRO(e = t; while ((*t++ = *p++));)
277 #define SCALAR(v) MACRO(memmove(&(v), p, sizeof v); p += sizeof v;)

Completed in 20 milliseconds