Symbol: ba_op
usr.sbin/btrace/bt_parse.y
179
expr : expr OP_LAND term { $$ = ba_op(B_AT_OP_LAND, $1, $3); }
usr.sbin/btrace/bt_parse.y
180
| expr OP_LOR term { $$ = ba_op(B_AT_OP_LOR, $1, $3); }
usr.sbin/btrace/bt_parse.y
184
term : term OP_EQ fterm { $$ = ba_op(B_AT_OP_EQ, $1, $3); }
usr.sbin/btrace/bt_parse.y
185
| term OP_NE fterm { $$ = ba_op(B_AT_OP_NE, $1, $3); }
usr.sbin/btrace/bt_parse.y
186
| term OP_LE fterm { $$ = ba_op(B_AT_OP_LE, $1, $3); }
usr.sbin/btrace/bt_parse.y
187
| term OP_LT fterm { $$ = ba_op(B_AT_OP_LT, $1, $3); }
usr.sbin/btrace/bt_parse.y
188
| term OP_GE fterm { $$ = ba_op(B_AT_OP_GE, $1, $3); }
usr.sbin/btrace/bt_parse.y
189
| term OP_GT fterm { $$ = ba_op(B_AT_OP_GT, $1, $3); }
usr.sbin/btrace/bt_parse.y
190
| term '+' fterm { $$ = ba_op(B_AT_OP_PLUS, $1, $3); }
usr.sbin/btrace/bt_parse.y
191
| term '-' fterm { $$ = ba_op(B_AT_OP_MINUS, $1, $3); }
usr.sbin/btrace/bt_parse.y
192
| term '&' fterm { $$ = ba_op(B_AT_OP_BAND, $1, $3); }
usr.sbin/btrace/bt_parse.y
193
| term '^' fterm { $$ = ba_op(B_AT_OP_XOR, $1, $3); }
usr.sbin/btrace/bt_parse.y
194
| term '|' fterm { $$ = ba_op(B_AT_OP_BOR, $1, $3); }
usr.sbin/btrace/bt_parse.y
198
fterm : fterm '*' factor { $$ = ba_op(B_AT_OP_MULT, $1, $3); }
usr.sbin/btrace/bt_parse.y
199
| fterm '/' factor { $$ = ba_op(B_AT_OP_DIVIDE, $1, $3); }
usr.sbin/btrace/bt_parse.y
200
| fterm '%' factor { $$ = ba_op(B_AT_OP_MODULO, $1, $3); }
usr.sbin/btrace/bt_parse.y
222
| STR '(' PVAR ',' expr ')' { $$ = ba_op(B_AT_FN_STR, $3, $5); }
usr.sbin/btrace/bt_parse.y
338
bf->bf_condition = bs_new(B_AC_TEST, ba_op(op, term, ba), NULL);
usr.sbin/btrace/bt_parse.y
350
bop = ba_op(B_AT_OP_NE, NULL, ba);
usr.sbin/btrace/bt_parse.y
67
struct bt_arg *ba_op(enum bt_argtype, struct bt_arg *, struct bt_arg *);