MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / RoundUp

Function RoundUp

Bcore/src/main/cpp/base/bit_utils.h:173–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171
172template<typename T>
173constexpr T RoundUp(T x, typename std::remove_reference<T>::type n) {
174 return RoundDown(x + n - 1, n);
175}
176
177// For aligning pointers.
178template<typename T>

Callers 3

GetTryItemsMethod · 0.85
BuildMethod · 0.85
AlignUpFunction · 0.85

Calls 1

RoundDownFunction · 0.85

Tested by 1

BuildMethod · 0.68