Home
last modified time | relevance | path

Searched defs:isPowerOfTwo (Results 1 – 18 of 18) sorted by relevance

/external/oboe/samples/RhythmGame/src/main/cpp/utils/
DLockFreeQueue.h61 static constexpr bool isPowerOfTwo(uint32_t n) { return (n & (n - 1)) == 0; } in isPowerOfTwo() function
/external/guava/guava-tests/benchmark/com/google/common/math/
DDoubleMathBenchmark.java80 int isPowerOfTwo(int reps) { in isPowerOfTwo() method in DoubleMathBenchmark
/external/guava/android/guava-tests/benchmark/com/google/common/math/
DDoubleMathBenchmark.java80 int isPowerOfTwo(int reps) { in isPowerOfTwo() method in DoubleMathBenchmark
/external/clang/include/clang/AST/
DCharUnits.h129 bool isPowerOfTwo() const { in isPowerOfTwo() function
/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dround.inl216 GLM_FUNC_QUALIFIER bool isPowerOfTwo(genType Value) function
223 GLM_FUNC_QUALIFIER vecType<bool, P> isPowerOfTwo(vecType<T, P> const & Value) function
/external/guava/guava/src/com/google/common/math/
DDoubleMath.java205 public static boolean isPowerOfTwo(double x) { in isPowerOfTwo() method in DoubleMath
DBigIntegerMath.java73 public static boolean isPowerOfTwo(BigInteger x) { in isPowerOfTwo() method in BigIntegerMath
DIntMath.java91 public static boolean isPowerOfTwo(int x) { in isPowerOfTwo() method in IntMath
DLongMath.java94 public static boolean isPowerOfTwo(long x) { in isPowerOfTwo() method in LongMath
/external/guava/android/guava/src/com/google/common/math/
DDoubleMath.java205 public static boolean isPowerOfTwo(double x) { in isPowerOfTwo() method in DoubleMath
DBigIntegerMath.java73 public static boolean isPowerOfTwo(BigInteger x) { in isPowerOfTwo() method in BigIntegerMath
DIntMath.java91 public static boolean isPowerOfTwo(int x) { in isPowerOfTwo() method in IntMath
DLongMath.java94 public static boolean isPowerOfTwo(long x) { in isPowerOfTwo() method in LongMath
/external/gwp_asan/gwp_asan/
Dguarded_pool_allocator.cpp38 bool isPowerOfTwo(uintptr_t X) { return (X & (X - 1)) == 0; } in isPowerOfTwo() function
/external/scudo/standalone/
Dcommon.h31 inline constexpr bool isPowerOfTwo(uptr X) { in isPowerOfTwo() function
/external/apache-commons-math/src/main/java/org/apache/commons/math3/util/
DArithmeticUtils.java842 public static boolean isPowerOfTwo(long n) { in isPowerOfTwo() method in ArithmeticUtils
/external/pffft/
Dpffft.hpp142 static bool isPowerOfTwo(int N) { return detail::pffft_is_power_of_two(N) ? true : false; } in isPowerOfTwo() function in pffft::Fft
412 inline bool isPowerOfTwo(int N) { in isPowerOfTwo() function
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiObjectManagementTests.cpp345 bool isPowerOfTwo(T value) in isPowerOfTwo() function