Lines Matching refs:operand2
134 struct hist_field *operand2 = hist_field->operands[1]; in hist_field_plus() local
137 u64 val2 = operand2->fn(operand2, elt, rbe, event); in hist_field_plus()
148 struct hist_field *operand2 = hist_field->operands[1]; in hist_field_minus() local
151 u64 val2 = operand2->fn(operand2, elt, rbe, event); in hist_field_minus()
2663 struct hist_field *operand2) in check_expr_operands() argument
2666 unsigned long operand2_flags = operand2->flags; in check_expr_operands()
2682 var = find_var_field(operand2->var.hist_data, operand2->name); in check_expr_operands()
2702 struct hist_field *operand1 = NULL, *operand2 = NULL, *expr = NULL; in parse_expr() local
2746 operand2 = parse_expr(hist_data, file, str, operand_flags, NULL, ++level); in parse_expr()
2747 if (IS_ERR(operand2)) { in parse_expr()
2748 ret = PTR_ERR(operand2); in parse_expr()
2749 operand2 = NULL; in parse_expr()
2753 ret = check_expr_operands(operand1, operand2); in parse_expr()
2769 operand2->read_once = true; in parse_expr()
2772 expr->operands[1] = operand2; in parse_expr()
2796 destroy_hist_field(operand2, 0); in parse_expr()