Lines Matching refs:operand2
218 struct hist_field *operand2 = hist_field->operands[1]; in hist_field_plus() local
221 u64 val2 = operand2->fn(operand2, elt, rbe, event); in hist_field_plus()
232 struct hist_field *operand2 = hist_field->operands[1]; in hist_field_minus() local
235 u64 val2 = operand2->fn(operand2, elt, rbe, event); in hist_field_minus()
2955 struct hist_field *operand2) in check_expr_operands() argument
2958 unsigned long operand2_flags = operand2->flags; in check_expr_operands()
2974 var = find_var_field(operand2->var.hist_data, operand2->name); in check_expr_operands()
2994 struct hist_field *operand1 = NULL, *operand2 = NULL, *expr = NULL; in parse_expr() local
3038 operand2 = parse_expr(hist_data, file, str, operand_flags, NULL, ++level); in parse_expr()
3039 if (IS_ERR(operand2)) { in parse_expr()
3040 ret = PTR_ERR(operand2); in parse_expr()
3041 operand2 = NULL; in parse_expr()
3045 ret = check_expr_operands(file->tr, operand1, operand2); in parse_expr()
3061 operand2->read_once = true; in parse_expr()
3064 expr->operands[1] = operand2; in parse_expr()
3088 destroy_hist_field(operand2, 0); in parse_expr()