Lines Matching defs:Key
1275 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
1276 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1278 std::sort(Key.begin(), Key.end());
1279 return Uniquifier.count(Key);
1291 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
1292 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1294 std::sort(Key.begin(), Key.end());
1296 if (!Uniquifier.insert(Key).second)
3958 SmallVector<const SCEV *, 4> Key;
3963 Key.push_back(Reg);
3967 Key.push_back(F.ScaledReg);
3970 std::sort(Key.begin(), Key.end());
3973 BestFormulae.insert(std::make_pair(Key, FIdx));