Home
last modified time | relevance | path

Searched refs:tmp_right (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_ranges.c1235 struct data_range *tmp_left, *tmp_right; in possibly_true() local
1255 FOR_EACH_PTR(rl_right, tmp_right) { in possibly_true()
1256 if (true_comparison_range(tmp_left, comparison, tmp_right)) in possibly_true()
1258 } END_FOR_EACH_PTR(tmp_right); in possibly_true()
1266 struct data_range *tmp_left, *tmp_right; in possibly_false() local
1284 FOR_EACH_PTR(rl_right, tmp_right) { in possibly_false()
1285 if (false_comparison_range_sval(tmp_left, comparison, tmp_right)) in possibly_false()
1287 } END_FOR_EACH_PTR(tmp_right); in possibly_false()
H A Dsmatch_math.c776 struct data_range tmp_left, tmp_right; in handle_comparison_rl() local
780 tmp_right.min = right; in handle_comparison_rl()
781 tmp_right.max = right; in handle_comparison_rl()
782 if (true_comparison_range(&tmp_left, expr->op, &tmp_right)) in handle_comparison_rl()