Searched refs:expression (Results 1 - 25 of 137) sorted by relevance

123456

/freebsd-11-stable/usr.sbin/pmcstudy/
H A Deval_expr.h46 struct expression { struct
47 struct expression *next; /* Next in expression. */
48 struct expression *prev; /* Prev in expression. */
55 struct expression *parse_expression(char *str);
56 double run_expr(struct expression *exp, int initial_call, struct expression **lastone);
57 void print_exp(struct expression *exp);
H A Deval_expr.c38 static struct expression *
39 alloc_and_hook_expr(struct expression **exp_p, struct expression **last_p)
41 struct expression *ex, *at;
43 ex = malloc(sizeof(struct expression));
48 memset(ex, 0, sizeof(struct expression));
67 validate_expr(struct expression *exp, int val1_is_set, int op_is_set, int val2_is_set,
172 print_exp(struct expression *exp)
211 walk_back_and_insert_paren(struct expression **beg, struct expression *fr
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dax-gdb.h24 struct expression;
29 expression), so we just walk that tree and generate agent bytecodes
33 expression's value as well as its address or the register it came
39 variable reference expression, we should not necessarily generate
42 indicate whether we want that expression to produce an lvalue or an
47 The `axs' prefix here means `agent expression, static', because
48 this is all static analysis of the expression, i.e. analysis which
52 /* Different kinds of agent expression static values. */
74 describing a value which will exist when the expression is
97 /* Given a GDB expression EXP
[all...]
H A Dparser-defs.h33 extern struct expression *expout;
160 extern int length_of_subexp (struct expression *, int);
162 extern int dump_subexp (struct expression *, struct ui_file *, int);
164 extern int dump_subexp_body_standard (struct expression *,
167 extern void operator_length (struct expression *, int, int *, int *);
169 extern void operator_length_standard (struct expression *, int, int *, int *);
175 /* During parsing of a C expression, the pointer to the next character
195 /* Current depth in parentheses within the expression. */
204 /* These codes indicate operator precedences for expression printing,
241 void (*print_subexp) (struct expression *, in
[all...]
H A Dwrapper.h24 struct expression;
31 int, struct expression **);
33 extern int gdb_evaluate_expression (struct expression *, struct value **);
H A Dexpression.h33 /* An expression is represented as a vector of union exp_element's.
110 If the first operand is a integer expression, then it means concatenate
245 UNOP_PREINCREMENT, /* ++ before an expression */
246 UNOP_POSTINCREMENT, /* ++ after an expression */
247 UNOP_PREDECREMENT, /* -- before an expression */
248 UNOP_POSTDECREMENT, /* -- after an expression */
249 UNOP_SIZEOF, /* Unary sizeof (followed by expression) */
321 /* An unparsed expression. Used for Scheme (for now at least) */
342 formulation for expression operators that does away with the
362 struct expression struct
[all...]
H A Dparse.c24 /* Parse an expression from text in a string,
25 and return the result as a struct expression pointer.
28 See expression.h for the details of the format.
40 #include "expression.h"
69 macro a non-zero value tells GDB's expression parser to check for
83 struct expression *expout;
105 static void prefixify_expression (struct expression *);
107 static void prefixify_subexp (struct expression *, struct expression *, int,
168 /* This page contains the functions for adding data to the struct expression
[all...]
H A Dvarobj.h60 char *expression, CORE_ADDR frame,
94 extern int varobj_set_value (struct varobj *var, char *expression);
H A Dtracepoint.h69 struct expression *cond;
H A Dwrapper.c74 struct expression **expression)
88 *expression = (struct expression *) args.result.pointer;
105 gdb_evaluate_expression (struct expression *exp, struct value **value)
127 (char *) evaluate_expression ((struct expression *) args->args[0].pointer);
73 gdb_parse_exp_1(char **stringptr, struct block *block, int comma, struct expression **expression) argument
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-warn.h69 #define cvmx_warn_if(expression, format, ...) if (expression) cvmx_warn(format, ##__VA_ARGS__)
/freebsd-11-stable/stand/libsa/
H A Dassert.c35 __assert(const char *func, const char *file, int line, const char *expression) argument
39 expression, file, line);
43 expression, func, file, line);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DLLDBAssert.cpp18 void lldb_private::lldb_assert(bool expression, const char *expr_text, argument
21 if (LLVM_LIKELY(expression))
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dget_princs_c.c40 const char *expression,
59 krb5_store_int32(sp, expression != NULL);
60 if(expression)
61 krb5_store_string(sp, expression);
39 kadm5_c_get_principals(void *server_handle, const char *expression, char ***princs, int *count) argument
H A Dget_princs_s.c81 const char *expression,
93 d.exp = expression;
97 asprintf(&d.exp2, "%s@%s", expression, r);
80 kadm5_s_get_principals(void *server_handle, const char *expression, char ***princs, int *count) argument
H A Dcommon_glue.c122 const char *expression,
126 return __CALL(get_principals, (server_handle, expression, princs, count));
121 kadm5_get_principals(void *server_handle, const char *expression, char ***princs, int *count) argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLLDBAssert.h21 void lldb_assert(bool expression, const char *expr_text, const char *func,
/freebsd-11-stable/usr.bin/bc/
H A Dbc.y132 {"expression", required_argument, NULL, 'e'},
175 %type <node> expression
258 statement : expression
262 | named_expression ASSIGN_OP expression
498 argument_list : expression
499 | argument_list COMMA expression
520 : expression EQUALS expression
524 | expression UNEQUALS expression
577 expression : named_expression label
[all...]
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dcond2.exp1 make: Bad conditional expression ` == "empty"' in == "empty"?oops:ok
H A Dcond1.exp20 make: Bad conditional expression `"0" > 0' in "0" > 0?OK:No
H A Dcond2.mk10 # expect: Bad conditional expression ` == "empty"' in == "empty"?oops:ok
/freebsd-11-stable/contrib/groff/src/preproc/refer/
H A Dlabel.y45 struct expression {
53 virtual ~expression() { }
59 class at_expr : public expression {
66 class format_expr : public expression {
77 class field_expr : public expression {
86 class literal_expr : public expression {
93 class unary_expr : public expression {
95 expression *expr;
97 unary_expr(expression *e) : expr(e) { }
103 // This caches the analysis of an expression
[all...]
/freebsd-11-stable/contrib/atf/atf-c/
H A Dmacros.h130 #define ATF_REQUIRE_MSG(expression, fmt, ...) \
132 if (!(expression)) \
136 #define ATF_CHECK_MSG(expression, fmt, ...) \
138 if (!(expression)) \
142 #define ATF_REQUIRE(expression) \
144 if (!(expression)) \
146 #expression " not met"); \
149 #define ATF_CHECK(expression) \
151 if (!(expression)) \
153 #expression " no
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Derror.c80 isc_error_runtimecheck(const char *file, int line, const char *expression) { argument
81 isc_error_fatal(file, line, "RUNTIME_CHECK(%s) %s", expression,
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y99 static void type_check(symbol_t *symbol, expression_t *expression, int and_op);
116 expression_t expression;
205 %type <expression> expression immediate immediate_or_a
448 | T_FIELD T_SYMBOL expression
456 | T_FIELD T_SYMBOL expression
470 | T_ENUM T_SYMBOL expression
491 | T_SYMBOL expression
499 T_MASK T_SYMBOL expression
591 expression label
[all...]

Completed in 141 milliseconds

123456