Home
last modified time | relevance | path

Searched refs:expression (Results 1 – 25 of 398) sorted by relevance

12345678910>>...16

/freebsd-12.1/usr.bin/bc/
H A Dbc.y520 : expression EQUALS expression
528 | expression LESS expression
532 | expression LESS_EQ expression
536 | expression GREATER expression
604 | expression PLUS expression
608 | expression MINUS expression
616 | expression DIVIDE expression
685 | expression EQUALS expression
693 | expression LESS expression
697 | expression LESS_EQ expression
[all …]
/freebsd-12.1/usr.sbin/pmcstudy/
H A Deval_expr.c37 static struct expression *
38 alloc_and_hook_expr(struct expression **exp_p, struct expression **last_p) in alloc_and_hook_expr()
40 struct expression *ex, *at; in alloc_and_hook_expr()
210 walk_back_and_insert_paren(struct expression **beg, struct expression *frm) in walk_back_and_insert_paren()
270 walk_fwd_and_insert_paren(struct expression *frm, struct expression **added) in walk_fwd_and_insert_paren()
317 add_precendence(struct expression **beg, struct expression *start, struct expression *end) in add_precendence()
352 set_math_precidence(struct expression **beg, struct expression *exp, struct expression **stopped) in set_math_precidence()
425 struct expression *
571 run_expr(struct expression *exp, int initial_call, struct expression **lastone) in run_expr()
674 struct expression *at; in calc_expr()
[all …]
H A Deval_expr.h45 struct expression { struct
46 struct expression *next; /* Next in expression. */ argument
47 struct expression *prev; /* Prev in expression. */ argument
54 struct expression *parse_expression(char *str); argument
55 double run_expr(struct expression *exp, int initial_call, struct expression **lastone);
56 void print_exp(struct expression *exp);
/freebsd-12.1/contrib/gdb/gdb/
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 *);
240 void (*print_subexp) (struct expression *, int *, struct ui_file *,
245 void (*operator_length) (struct expression*, int, int*, int *);
253 int (*dump_subexp_body) (struct expression *, struct ui_file *, int);
256 struct value *(*evaluate_exp) (struct type *, struct expression *,
268 extern void print_subexp (struct expression *, int *, struct ui_file *,
[all …]
H A Dparse.c81 struct expression *expout;
104 static void prefixify_subexp (struct expression *, struct expression *, int,
178 expout = (struct expression *) in write_exp_elt()
294 expout = (struct expression *) in write_exp_string()
343 expout = (struct expression *) in write_exp_bitstring()
787 struct expression *temp; in prefixify_expression()
1023 struct expression *
1053 expout = (struct expression *) in parse_exp_1()
1068 expout = (struct expression *) in parse_exp_1()
1091 struct expression *
[all …]
H A Dexpression.h362 struct expression struct
379 extern struct expression *parse_expression (char *);
381 extern struct expression *parse_exp_1 (char **, struct block *, int);
408 (struct type *, struct expression *, int *, enum noside);
412 extern void print_expression (struct expression *, struct ui_file *);
416 extern void dump_raw_expression (struct expression *, struct ui_file *, char *);
417 extern void dump_prefix_expression (struct expression *, struct ui_file *);
H A Dax-gdb.h24 struct expression;
98 extern struct agent_expr *expr_to_agent (struct expression *EXPR,
104 extern struct agent_expr *expr_to_address_and_size (struct expression *EXPR);
111 extern struct agent_expr *gen_trace_for_expr (CORE_ADDR, struct expression *);
H A Dwrapper.h24 struct expression;
31 int, struct expression **);
33 extern int gdb_evaluate_expression (struct expression *, struct value **);
H A Dwrapper.c74 struct expression **expression) in gdb_parse_exp_1() argument
88 *expression = (struct expression *) args.result.pointer; in gdb_parse_exp_1()
105 gdb_evaluate_expression (struct expression *exp, struct value **value) in gdb_evaluate_expression()
127 (char *) evaluate_expression ((struct expression *) args->args[0].pointer); in wrap_evaluate_expression()
H A Dtypeprint.c48 static struct type *ptype_eval (struct expression *);
118 struct expression *expr; in whatis_exp()
188 ptype_eval (struct expression *exp) in ptype_eval()
206 struct expression *expr; in ptype_command()
328 struct expression *expr; in maintenance_print_type()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticASTKinds.td28 "be used in a constant expression">;
38 "in a constant expression">;
48 "in a constant expression">;
83 "not allowed in a constant expression">;
89 "constant expression">;
110 "in a constant expression">;
117 "a constant expression">;
142 "is not allowed in a constant expression outside the expression that "
146 "that expression">;
149 "constant expression">;
[all …]
/freebsd-12.1/contrib/atf/atf-c/
H A Dmacros.h130 #define ATF_REQUIRE_MSG(expression, fmt, ...) \ argument
132 if (!(expression)) \
136 #define ATF_CHECK_MSG(expression, fmt, ...) \ argument
138 if (!(expression)) \
142 #define ATF_REQUIRE(expression) \ argument
144 if (!(expression)) \
146 #expression " not met"); \
149 #define ATF_CHECK(expression) \ argument
151 if (!(expression)) \
153 #expression " not met"); \
/freebsd-12.1/contrib/gcc/cp/
H A Dcp-tree.def33 The expression is a pointer-to-member if its address is taken,
41 be an expression corresponding to `x' and operand 1 will be an
42 expression with pointer-to-member type. */
82 /* A throw expression. operand 0 is the expression, if there was one,
181 expression in question. */
245 does occur in a template. When an expression that is not
251 the original expression. The expression is the only operand -- it
269 /* A MUST_NOT_THROW_EXPR wraps an expression that may not
312 obtain the expression. */
337 /* Represents an '__alignof__' expression during template
[all …]
/freebsd-12.1/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y207 %type <expression> expression immediate immediate_or_a
593 expression:
594 expression '|' expression
601 | expression '&' expression
608 | expression '+' expression
615 | expression '-' expression
622 | expression '*' expression
629 | expression '/' expression
636 | expression T_EXPR_LSHIFT expression
643 | expression T_EXPR_RSHIFT expression
[all …]
/freebsd-12.1/contrib/gcc/
H A Dlambda-code.c389 lambda_linear_expression expression; in lambda_lattice_compute_base() local
416 expression = LL_LOWER_BOUND (loop); in lambda_lattice_compute_base()
417 gcc_assert (expression && !LLE_NEXT (expression) in lambda_lattice_compute_base()
666 expression = LL_LOWER_BOUND (loop); in lambda_compute_auxillary_space()
668 expression = LL_UPPER_BOUND (loop); in lambda_compute_auxillary_space()
670 for (; expression != NULL; expression = LLE_NEXT (expression)) in lambda_compute_auxillary_space()
698 expression = LL_UPPER_BOUND (loop); in lambda_compute_auxillary_space()
700 expression = LL_LOWER_BOUND (loop); in lambda_compute_auxillary_space()
702 for (; expression != NULL; expression = LLE_NEXT (expression)) in lambda_compute_auxillary_space()
823 LLE_CONSTANT (expression) = 0; in lambda_compute_target_space()
[all …]
H A Dtree.def380 Operand 0 is the structure or union (an expression).
388 Operand 0 is the structure or union expression;
485 /* Conditional expression ( ... ? ... : ... in C).
537 Operand 0 is the cleanup expression.
545 cleanups are executed after the expression is expanded.
748 input and of the expression have different sizes.
815 /* GOTO. Operand 0 is a LABEL_DECL node or an expression.
835 /* Switch expression.
841 Operand 0 is the expression used to perform the branch,
921 The type of the expression is the same as Y. */
[all …]
/freebsd-12.1/contrib/binutils/gas/doc/
H A Dc-cr16.texi26expression type qualifier is an optional field in the instruction operand, to determines the type …
30 - @code{Specifies expression operand type as small}
32 - @code{Specifies expression operand type as medium}
34 - @code{Specifies expression operand type as large}
36 …ates a relocation entry for the operand, where pc has implied bit, the expression is adjusted acco…
H A Dc-avr.texi137 modifier(relocatable-expression)
146 an address expression as 8 bit relocatable expression.
150 This modifier allows you to use bits 7 through 15 of an address expression
151 as 8 bit relocatable expression. This is useful with, for example, the
164 an address expression as 8 bit relocatable expression.
174 an expression as 8 bit expression. This is useful with, for example, the
191 an address expression as 8 bit relocatable expression.
199 an address expression as 8 bit relocatable expression.
206 an address expression as 8 bit relocatable expression.
/freebsd-12.1/crypto/heimdal/lib/kadm5/
H A Dget_princs_c.c40 const char *expression, in kadm5_c_get_principals() argument
59 krb5_store_int32(sp, expression != NULL); in kadm5_c_get_principals()
60 if(expression) in kadm5_c_get_principals()
61 krb5_store_string(sp, expression); in kadm5_c_get_principals()
H A Dget_princs_s.c81 const char *expression, in kadm5_s_get_principals() argument
93 d.exp = expression; in kadm5_s_get_principals()
97 asprintf(&d.exp2, "%s@%s", expression, r); in kadm5_s_get_principals()
/freebsd-12.1/usr.bin/dtc/
H A Dinput_buffer.cc371 struct expression struct
393 expression(source_location l) : loc(l) {} in expression() argument
394 virtual ~expression() {} in ~expression() argument
427 class terminal_expr : public expression
457 struct paren_expression : public expression
497 class unary_operator : public expression
523 expression(l), subexpr(std::move(p)) {} in unary_operator()
537 struct binary_operator_base : public expression
539 using expression::expression;
612 class ternary_conditional_operator : public expression
[all …]
/freebsd-12.1/stand/libsa/
H A Dassert.c35 __assert(const char *func, const char *file, int line, const char *expression) in __assert() argument
39 expression, file, line); in __assert()
43 expression, func, file, line); in __assert()
/freebsd-12.1/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_grammar.y188 %type <l_node> expression
223 | DT_CTX_DEXPR expression { $$ = $2; }
335 | probe_specifiers DT_TOK_DIV expression DT_TOK_EPRED
364 | statement_list_impl expression {
374 | expression ';' { $$ = dt_node_statement($1); }
378 | DT_KEY_IF DT_TOK_LPAR expression DT_TOK_RPAR
398 | DT_TOK_LPAR expression DT_TOK_RPAR { $$ = $2; }
451 DT_TOK_LPAR expression DT_TOK_RPAR {
616 expression: assignment_expression
617 | expression DT_TOK_COMMA assignment_expression {
[all …]
/freebsd-12.1/contrib/gcc/doc/
H A Drtl.texi54 @cindex RTL expression
97 @cindex expression codes
108 The expression code determines how many operands the expression contains,
111 from its context---from the expression code of the containing expression.
218 An expression (actually a pointer to an expression).
267 of an expression code:
326 accesses operand 2 of expression @var{x}, as an expression.
1030 expression is written after the expression code with a colon to separate
1524 expression is used.
2199 precise, @var{cond} is a comparison expression. This expression
[all …]
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-warn.h69 #define cvmx_warn_if(expression, format, ...) if (expression) cvmx_warn(format, ##__VA_ARGS__) argument

12345678910>>...16