Lines Matching defs:GCD
1270 unsigned GCD = std::gcd(OrigTy.getSizeInBits().getKnownMinValue(),
1272 if (GCD == OrigElt.getSizeInBits())
1277 if (GCD < OrigElt.getSizeInBits())
1279 GCD);
1282 ElementCount::get(GCD / OrigElt.getSizeInBits().getFixedValue(),
1297 // vector and one is a scalar. If both types are scalars, the GCD type is the
1298 // GCD between the two scalar sizes. If one is vector and one is scalar, then
1299 // the GCD type is the GCD between the scalar and the vector element size.
1302 unsigned GCD = std::gcd(OrigScalar.getSizeInBits().getFixedValue(),
1304 return LLT::scalar(GCD);