Searched refs:LCM (Results 1 – 5 of 5) sorted by relevance
30 unsigned LCM = (Denominator * RHS.Denominator) / GCD; in operator +=() local31 unsigned LHSNumerator = Numerator * (LCM / Denominator); in operator +=()32 unsigned RHSNumerator = RHS.Numerator * (LCM / RHS.Denominator); in operator +=()34 Denominator = LCM; in operator +=()
57 unsigned LCM = (uint64_t(A) * B) / gcd(A, B); in lcm() local58 assert((LCM >= A && LCM >= B) && "LCM overflow"); in lcm()59 return LCM; in lcm()
123 LocationContextMap LCM; member in __anon1dcbea900111::PathDiagnosticConstruct152 return LCM.find(&PD->getActivePath())->getSecond(); in getLocationContextForActivePath()176 LCM[Path] = LC; in updateLocCtxMap()180 assert(LCM.count(Path) && in getLocationContextFor()182 return LCM.find(Path)->getSecond(); in getLocationContextFor()185 bool isInLocCtxMap(const PathPieces *Path) const { return LCM.count(Path); } in isInLocCtxMap()1982 LCM[&PD->getActivePath()] = ErrorNode->getLocationContext(); in PathDiagnosticConstruct()
1110 LLVMOrcLazyCallThroughManagerRef LCM) { in LLVMOrcDisposeLazyCallThroughManager() argument1111 std::unique_ptr<LazyCallThroughManager> TmpLCM(unwrap(LCM)); in LLVMOrcDisposeLazyCallThroughManager()
291 patch contributed by Hal Finkel. Added LCM tests as as well as