Lines Matching refs:isPowerOfTwo
79 // isPowerOfTwo
81 GLM_FUNC_QUALIFIER bool isPowerOfTwo(genType const & Value) function
94 GLM_FUNC_QUALIFIER detail::tvec2<bool, P> isPowerOfTwo function
100 isPowerOfTwo(value[0]),
101 isPowerOfTwo(value[1]));
105 GLM_FUNC_QUALIFIER detail::tvec3<bool, P> isPowerOfTwo function
111 isPowerOfTwo(value[0]),
112 isPowerOfTwo(value[1]),
113 isPowerOfTwo(value[2]));
117 GLM_FUNC_QUALIFIER detail::tvec4<bool, P> isPowerOfTwo function
123 isPowerOfTwo(value[0]),
124 isPowerOfTwo(value[1]),
125 isPowerOfTwo(value[2]),
126 isPowerOfTwo(value[3]));
133 return isPowerOfTwo(value) ? value : highestBitValue(value) << 1;
145 return isPowerOfTwo(value) ? value : highestBitValue(value);
157 if(isPowerOfTwo(value))