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

/freebsd-11-stable/contrib/gdb/gdb/
H A Dax-gdb.h97 /* Given a GDB expression EXPR, translate it into the agent bytecode,
99 extern struct agent_expr *expr_to_agent (struct expression *EXPR,
102 /* Given a GDB expression EXPR denoting an lvalue in memory, produce a
105 extern struct agent_expr *expr_to_address_and_size (struct expression *EXPR);
107 /* Given a GDB expression EXPR, return bytecode to trace its value.
H A Dax.h152 /* Append a simple operator OP to EXPR. */
153 extern void ax_simple (struct agent_expr *EXPR, enum agent_op OP);
156 #define ax_float(EXPR) (ax_simple ((EXPR), aop_float))
158 /* Append a sign-extension instruction to EXPR, to extend an N-bit value. */
159 extern void ax_ext (struct agent_expr *EXPR, int N);
161 /* Append a zero-extension instruction to EXPR, to extend an N-bit value. */
162 extern void ax_zero_ext (struct agent_expr *EXPR, int N);
164 /* Append a trace_quick instruction to EXPR, to record N bytes. */
165 extern void ax_trace_quick (struct agent_expr *EXPR, in
[all...]
/freebsd-11-stable/contrib/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.h574 /* Use gcc_assert(EXPR) to test invariants. */
576 #define gcc_assert(EXPR) \
577 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
579 /* Include EXPR, so that unused variable warnings do not occur. */
580 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
H A Dvec.h431 #define VEC_ASSERT(EXPR,OP,T,A) \
432 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0))
441 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR)
H A Dtree.h1105 /* TREE_OVERFLOW can only be true for EXPR of CONSTANT_CLASS_P. */
1107 #define TREE_OVERFLOW_P(EXPR) \
1108 (CONSTANT_CLASS_P (EXPR) && TREE_OVERFLOW (EXPR))
4121 /* Look inside EXPR and into any simple arithmetic operations. Return
4260 /* Return 1 if EXPR is the real constant zero. */
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCompiler.h214 #define LLVM_LIKELY(EXPR) __builtin_expect((bool)(EXPR), true)
215 #define LLVM_UNLIKELY(EXPR) __builtin_expect((bool)(EXPR), false)
217 #define LLVM_LIKELY(EXPR) (EXPR)
218 #define LLVM_UNLIKELY(EXPR) (EXPR)
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound_cache.sh30 EXPR=`which expr`
163 shift `$EXPR $OPTIND - 1`
/freebsd-11-stable/usr.bin/m4/
H A Deval.c894 #ifdef EXPR
901 #ifdef EXPR
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprClassification.cpp110 #define EXPR(Kind, Base) macro
H A DExpr.cpp230 #define EXPR(type, base) \ macro
3416 #define EXPR(Type, Base) macro
H A DItaniumMangle.cpp3619 #define EXPR(Type, Base) macro
H A DExprConstant.cpp14101 #define EXPR(Node, Base)
/freebsd-11-stable/contrib/gcc/cp/
H A Dcall.c130 #define convert_like(CONV, EXPR) \
131 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0, \
134 #define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
135 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0, \
543 /* Build a representation of the identity conversion from EXPR to
544 itself. The TYPE should match the type of EXPR, if EXPR is non-NULL. */
558 /* Converting from EXPR to TYPE was ambiguous in the sense that there
584 also pass the expression EXPR to convert from. If C_CAST_P is true,
907 /* Determine whether or not the EXPR (o
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp105 #define EXPR(Type, Base) \ macro
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h719 #define EXPR(Node, Parent) \ macro
3477 #define EXPR(Node, Parent) macro
3483 #define EXPR(Node, Parent) case Stmt::Node##Class: macro
3524 #define EXPR(Node, Parent) \ macro

Completed in 267 milliseconds