• Home
  • Raw
  • Download

Lines Matching refs:bt1

11183     int bt1, bt2;  in check_comparison_pointer_types()  local
11190 bt1 = type1->t & VT_BTYPE; in check_comparison_pointer_types()
11193 if ((is_integer_btype(bt1) || is_integer_btype(bt2)) && op != '-') { in check_comparison_pointer_types()
11199 if (bt1 == VT_PTR) { in check_comparison_pointer_types()
11201 } else if (bt1 != VT_FUNC) in check_comparison_pointer_types()
11229 int u, t1, t2, bt1, bt2, t; in gen_op() local
11234 bt1 = t1 & VT_BTYPE; in gen_op()
11237 if (bt1 == VT_PTR || bt2 == VT_PTR) { in gen_op()
11247 if (bt1 == VT_PTR && bt2 == VT_PTR) { in gen_op()
11291 } else if (is_float(bt1) || is_float(bt2)) { in gen_op()
11293 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) { in gen_op()
11295 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) { in gen_op()
11305 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) { in gen_op()
11681 int bt1, t1, t2; in is_compatible_types() local
11689 bt1 = t1 & VT_BTYPE; in is_compatible_types()
11690 if (bt1 == VT_PTR) { in is_compatible_types()
11694 } else if (bt1 == VT_STRUCT) { in is_compatible_types()
11696 } else if (bt1 == VT_FUNC) { in is_compatible_types()
13334 int tt, u, r1, r2, rc, t1, t2, bt1, bt2; in expr_eq() local
13388 bt1 = t1 & VT_BTYPE; in expr_eq()
13392 if (is_float(bt1) || is_float(bt2)) { in expr_eq()
13393 if (bt1 == VT_LDOUBLE || bt2 == VT_LDOUBLE) { in expr_eq()
13395 } else if (bt1 == VT_DOUBLE || bt2 == VT_DOUBLE) { in expr_eq()
13400 } else if (bt1 == VT_LLONG || bt2 == VT_LLONG) { in expr_eq()
13407 } else if (bt1 == VT_PTR || bt2 == VT_PTR) { in expr_eq()
13410 } else if (bt1 == VT_STRUCT || bt2 == VT_STRUCT) { in expr_eq()
13413 } else if (bt1 == VT_VOID || bt2 == VT_VOID) { in expr_eq()