Home
last modified time | relevance | path

Searched refs:UResult (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DMathExtras.h579 const U UResult = UX + UY; in AddOverflow()
582 Result = static_cast<T>(UResult); in AddOverflow()
605 const U UResult = UX - UY; in SubOverflow()
608 Result = static_cast<T>(UResult); in SubOverflow()
628 const U UResult = UX * UY; in MulOverflow() local
632 Result = IsNegative ? (0 - UResult) : UResult; in MulOverflow()