Searched refs:EXPR (Results 1 - 25 of 43) sorted by relevance

12

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dax.h172 /* Append a simple operator OP to EXPR. */
173 extern void ax_simple (struct agent_expr *EXPR, enum agent_op OP);
175 /* Append a pick operator to EXPR. DEPTH is the stack item to pick,
177 extern void ax_pick (struct agent_expr *EXPR, int DEPTH);
180 #define ax_float(EXPR) (ax_simple ((EXPR), aop_float))
182 /* Append a sign-extension instruction to EXPR, to extend an N-bit value. */
183 extern void ax_ext (struct agent_expr *EXPR, int N);
185 /* Append a zero-extension instruction to EXPR, to extend an N-bit value. */
186 extern void ax_zero_ext (struct agent_expr *EXPR, in
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dtsystem.h122 #define gcc_assert(EXPR) ((void)(!(EXPR) ? abort (), 0 : 0))
124 /* Include EXPR, so that unused variable warnings do not occur. */
125 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
H A Dsel-sched-ir.h173 #define EXPR_VINSN(EXPR) ((EXPR)->vinsn)
174 #define EXPR_INSN_RTX(EXPR) (VINSN_INSN_RTX (EXPR_VINSN (EXPR)))
175 #define EXPR_PATTERN(EXPR) (VINSN_PATTERN (EXPR_VINSN (EXPR)))
176 #define EXPR_LHS(EXPR) (VINSN_LHS (EXPR_VINSN (EXPR)))
177 #define EXPR_RHS(EXPR) (VINSN_RHS (EXPR_VINSN (EXPR)))
[all...]
H A Dggc.h97 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
99 #define ggc_test_and_set_mark(EXPR) \
100 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
102 #define ggc_mark(EXPR) \
104 const void *const a__ = (EXPR); \
H A Dsystem.h592 /* Use gcc_assert(EXPR) to test invariants. */
594 #define gcc_assert(EXPR) \
595 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
597 #define gcc_assert(EXPR) \
598 ((void)(__builtin_expect(!(EXPR), 0) ? __builtin_unreachable(), 0 : 0))
600 /* Include EXPR, so that unused variable warnings do not occur. */
601 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dtsystem.h125 #define gcc_assert(EXPR) ((void)(!(EXPR) ? abort (), 0 : 0))
127 /* Include EXPR, so that unused variable warnings do not occur. */
128 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
H A Dggc.h97 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
99 #define ggc_test_and_set_mark(EXPR) \
100 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
102 #define ggc_mark(EXPR) \
104 const void *const a__ = (EXPR); \
H A Dsystem.h572 /* Use gcc_assert(EXPR) to test invariants. */
574 #define gcc_assert(EXPR) \
575 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
577 /* Include EXPR, so that unused variable warnings do not occur. */
578 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
/netbsd-6-1-5-RELEASE/usr.sbin/gspa/gspa/
H A Dgsp_inst.c99 #define EXREG (REG|EXPR)
101 #define EXAREG (REG|EXPR|EA)
103 #define SPEC (0x10|EXPR) /* field or length specifier */
105 #define OPTEXPR (OPTOPRN|EXPR)
129 {"ADDI",0x0B20, IMMREG, {EXPR, REG, OPTSPEC,0}},
130 {"ADDK",0x1000, K32REG, {EXPR, REG, 0, 0}},
133 {"ANDI",0x0B80, LIMREGC,{EXPR, REG, 0, 0}},
135 {"ANDNI",0x0B80,LIMREG, {EXPR, REG, 0, 0}},
138 {"CALLA",0x0D5F,CALL, {EXPR, 0, 0, 0}},
139 {"CALLR",0x0D3F,CALL, {EXPR,
[all...]
H A Dgsp_pseu.c56 if( ops->type != EXPR ){
77 if( ops->type != EXPR ){
89 if( o->type != EXPR ){
122 if( ops->type != EXPR ){
142 if( ops->type != EXPR ){
H A Dgsp_act.c51 if( op->type == EXPR ||
89 o->type = EXPR;
H A Dgsp_ass.h107 #define EXPR 2 /* expression operand */ macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/torture/
H A Dbuiltin-integral-1.c29 #define CHECK_EXPR(EXPR,NAME) \
30 if (__builtin_ceill(EXPR) != (EXPR)) link_failure (__LINE__); \
31 if (__builtin_lroundl(EXPR) != (long)(long double)(EXPR)) link_failure (__LINE__);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/torture/
H A Dbuiltin-integral-1.c45 #define CHECK_EXPR(EXPR,NAME) \
48 if (ceill(EXPR) != (EXPR)) link_failure_FP_##NAME(); \
49 if (lroundl(EXPR) != (long)(long double)(EXPR)) link_failure_fixed_##NAME();
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/config/
H A Drx-parse.y137 %type <exp> EXPR disp
141 %token EXPR UNKNOWN_OPCODE IS_OPCODE
189 | BRA EXPR
204 | BRA DOT_A EXPR
207 | BRA DOT_S EXPR
212 | BSR EXPR
221 | BSR DOT_A EXPR
226 | BCND DOT_S EXPR
234 | BCND DOT_B EXPR
237 | BRA DOT_B EXPR
[all...]
H A Dm68k-parse.y107 %token <exp> EXPR
178 | EXPR
183 | '#' EXPR
188 | '&' EXPR
221 | '(' EXPR ',' zapc ')'
231 | '(' zapc ',' EXPR ')'
241 | EXPR '(' zapc ')'
266 | '(' EXPR ',' zapc ',' zireg ')'
273 | '(' EXPR ',' zapc ',' zpc ')'
284 | '(' EXPR ',' zdire
[all...]
H A Dtc-avr.h57 #define TC_PARSE_CONS_EXPRESSION(EXPR,N) avr_parse_cons_expression (EXPR, N)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dvirtfunc.cc154 #define TEST(EXPR, EXPECTED) \
155 ret = EXPR; \
157 printf("Failed %s is %d, should be %d!\n", #EXPR, ret, EXPECTED); \
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dc99-stdint-1.c35 #define CHECK_EXPR_TYPE(TYPE, EXPR) \
36 do { __typeof__(EXPR) a; __typeof__((TYPE)0 + 0) *b = &a; } while (0)
37 #define UNSIGNED_MAX_COND(TYPE, EXPR) \
38 ((EXPR) == (TYPE)-1)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/spu/ea/
H A Dtest-sizes.c81 #define TEST_SIZE(EXPR, EXPECTED) \
85 if (sizeof (EXPR) != EXPECTED) \
95 #EXPR, \
96 (unsigned) sizeof (EXPR), \
108 #define TEST_SIZE(EXPR, EXPECTED) \
110 if (sizeof (EXPR) != EXPECTED) \
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/
H A Drx-parse.h45 EXPR = 261, enumerator in enum:yytokentype
160 #define EXPR 261 macro
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/tests/
H A Dtgeneric.c70 #define TGENERIC_CHECK(S, EXPR) \
71 do if (!(EXPR)) TGENERIC_FAIL (S, x, u); while (0)
73 #define TGENERIC_CHECK(S, EXPR) \
74 do if (!(EXPR)) TGENERIC_FAIL (S, x, 0); while (0)
/netbsd-6-1-5-RELEASE/gnu/dist/autoconf/config/
H A DMakefile.in61 EXPR = @EXPR@
/netbsd-6-1-5-RELEASE/gnu/dist/autoconf/m4/
H A DMakefile.in61 EXPR = @EXPR@
/netbsd-6-1-5-RELEASE/gnu/dist/autoconf/man/
H A DMakefile.in61 EXPR = @EXPR@

Completed in 247 milliseconds

12