Home
last modified time | relevance | path

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

/dragonfly/contrib/gdb-7/gdb/
H A Dopencl-lang.c640 int t1_is_vec, t2_is_vec, i; in vector_relop() local
646 t1_is_vec = (TYPE_CODE (type1) == TYPE_CODE_ARRAY && TYPE_VECTOR (type1)); in vector_relop()
649 if (!t1_is_vec || !t2_is_vec) in vector_relop()
747 int t1_is_vec = (TYPE_CODE (type1) == TYPE_CODE_ARRAY in opencl_relop() local
752 if (!t1_is_vec && !t2_is_vec) in opencl_relop()
760 else if (t1_is_vec && t2_is_vec) in opencl_relop()
767 struct value **v = t1_is_vec ? &arg2 : &arg1; in opencl_relop()
768 struct type *t = t1_is_vec ? type2 : type1; in opencl_relop()
773 *v = opencl_value_cast (t1_is_vec ? type1 : type2, *v); in opencl_relop()
H A Dvalarith.c1399 int t1_is_vec, t2_is_vec, elsize, i; in vector_binop() local
1405 t1_is_vec = (TYPE_CODE (type1) == TYPE_CODE_ARRAY in vector_binop()
1410 if (!t1_is_vec || !t2_is_vec) in vector_binop()
1450 int t1_is_vec = (TYPE_CODE (type1) == TYPE_CODE_ARRAY in value_binop() local
1455 if (!t1_is_vec && !t2_is_vec) in value_binop()
1457 else if (t1_is_vec && t2_is_vec) in value_binop()
1462 struct value **v = t1_is_vec ? &arg2 : &arg1; in value_binop()
1463 struct type *t = t1_is_vec ? type2 : type1; in value_binop()
1471 *v = value_vector_widen (*v, t1_is_vec ? type1 : type2); in value_binop()