Home | History | Annotate | Download | only in gcc

Lines Matching defs:max_nunits

198   poly_uint64 max_nunits;
1969 /* Update maximum unit count *MAX_NUNITS so that it accounts for
1970 NUNITS. *MAX_NUNITS can be 1 if we haven't yet recorded anything. */
1973 vect_update_max_nunits (poly_uint64 *max_nunits, poly_uint64 nunits)
1978 *max_nunits = force_common_multiple (*max_nunits, nunits);
1981 /* Update maximum unit count *MAX_NUNITS so that it accounts for
1982 the number of units in vector type VECTYPE. *MAX_NUNITS can be 1
1986 vect_update_max_nunits (poly_uint64 *max_nunits, tree vectype)
1988 vect_update_max_nunits (max_nunits, TYPE_VECTOR_SUBPARTS (vectype));