Lines Matching defs:GCD
1252 APInt GCD;
1263 GCD = ScaleForGCD.abs();
1265 GCD = APIntOps::GreatestCommonDivisor(GCD, ScaleForGCD.abs());
1290 // 1. (...)*GCD + DecompGEP1.Offset with size V1Size
1292 // Using arithmetic modulo GCD, the accesses are at
1294 // into the range [V2Size..GCD), then we know they cannot overlap.
1295 APInt ModOffset = DecompGEP1.Offset.srem(GCD);
1297 ModOffset += GCD; // We want mod, not rem.
1299 (GCD - ModOffset).uge(V1Size.getValue()))