Lines Matching defs:GCD
1277 unsigned GCD = std::gcd(OrigTy.getSizeInBits().getKnownMinValue(),
1279 if (GCD == OrigElt.getSizeInBits())
1284 if (GCD < OrigElt.getSizeInBits())
1286 GCD);
1289 ElementCount::get(GCD / OrigElt.getSizeInBits().getFixedValue(),
1304 // vector and one is a scalar. If both types are scalars, the GCD type is the
1305 // GCD between the two scalar sizes. If one is vector and one is scalar, then
1306 // the GCD type is the GCD between the scalar and the vector element size.
1309 unsigned GCD = std::gcd(OrigScalar.getSizeInBits().getFixedValue(),
1311 return LLT::scalar(GCD);