Searched defs:RoundUpToAlignment (Results 1 - 1 of 1) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h420 /// RoundUpToAlignment - Returns the next integer (mod 2**64) that is
425 /// RoundUpToAlignment(5, 8) = 8
426 /// RoundUpToAlignment(17, 8) = 24
427 /// RoundUpToAlignment(~0LL, 8) = 0
428 inline uint64_t RoundUpToAlignment(uint64_t Value, uint64_t Align) { function in namespace:llvm
436 return RoundUpToAlignment(Value, Align) - Value;

Completed in 158 milliseconds