Home
last modified time | relevance | path

Searched refs:powerOf2 (Results 1 - 2 of 2) sorted by relevance

/third_party/glslang/glslang/Include/
H A DCommon.h261 template <class T> bool IsPow2(T powerOf2) in IsPow2() argument
263 if (powerOf2 <= 0) in IsPow2()
266 return (powerOf2 & (powerOf2 - 1)) == 0; in IsPow2()
269 // Round number up to a multiple of the given powerOf2, which is not
271 template <class T> void RoundToPow2(T& number, int powerOf2) in RoundToPow2() argument
273 assert(IsPow2(powerOf2)); in RoundToPow2()
274 number = (number + powerOf2 - 1) & ~(powerOf2 - 1); in RoundToPow2()
277 template <class T> bool IsMultipleOfPow2(T number, int powerOf2) in IsMultipleOfPow2() argument
[all...]
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeInt32.h731 DE_INLINE int deIntIsPow2(int powerOf2) in deIntIsPow2() argument
733 if (powerOf2 <= 0) in deIntIsPow2()
735 return (powerOf2 & (powerOf2 - (int)1)) == (int)0; in deIntIsPow2()
738 DE_INLINE int deIntRoundToPow2(int number, int powerOf2) in deIntRoundToPow2() argument
740 DE_ASSERT(deIntIsPow2(powerOf2)); in deIntRoundToPow2()
741 return (number + (int)powerOf2 - (int)1) & (int)(~(powerOf2 - 1)); in deIntRoundToPow2()

Completed in 3 milliseconds