HomeSort by relevance Sort by last modified time
    Searched defs:isPowerOfTwo (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
PageBlock.h 34 inline bool isPowerOfTwo(size_t size) { return !(size & (size - 1)); }
81 using WTF::isPowerOfTwo;
  /external/guava/guava/src/com/google/common/math/
DoubleMath.java 176 public static boolean isPowerOfTwo(double x) {
177 return x > 0.0 && isFinite(x) && LongMath.isPowerOfTwo(getSignificand(x));
222 checkRoundingUnnecessary(isPowerOfTwo(x));
228 increment = !isPowerOfTwo(x);
231 increment = exponent < 0 & !isPowerOfTwo(x);
234 increment = exponent >= 0 & !isPowerOfTwo(x);
IntMath.java 63 public static boolean isPowerOfTwo(int x) {
80 checkRoundingUnnecessary(isPowerOfTwo(x));
BigIntegerMath.java 54 public static boolean isPowerOfTwo(BigInteger x) {
72 checkRoundingUnnecessary(isPowerOfTwo(x)); // fall through
79 return isPowerOfTwo(x) ? logFloor : logFloor + 1;
LongMath.java 60 public static boolean isPowerOfTwo(long x) {
76 checkRoundingUnnecessary(isPowerOfTwo(x));
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
IntMath.java 52 public static boolean isPowerOfTwo(int x) {
  /external/clang/include/clang/AST/
CharUnits.h 128 /// isPowerOfTwo - Test whether the quantity is a power of two.
130 bool isPowerOfTwo() const {
  /frameworks/base/libs/hwui/
SkiaShader.cpp 44 static inline bool isPowerOfTwo(unsigned int n) {
127 if (!extensions.hasNPot() && (!isPowerOfTwo(width) || !isPowerOfTwo(height)) &&
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 86 public static boolean isPowerOfTwo(int number) {
    [all...]
  /dalvik/vm/compiler/codegen/x86/
LowerAlu.cpp 969 int isPowerOfTwo(int imm) {
981 int power = isPowerOfTwo(imm);
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.cpp     [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenDriver.cpp     [all...]
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 

Completed in 238 milliseconds