HomeSort by relevance Sort by last modified time
    Searched refs:isPowerOfTwo (Results 1 - 12 of 12) 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;
PageBlock.cpp 80 ASSERT(isPowerOfTwo(s_pageSize));
PageAllocationAligned.cpp 35 ASSERT(isPowerOfTwo(alignment));
  /external/llvm/include/llvm/Analysis/
ValueTracking.h 48 /// isPowerOfTwo - Return true if the given value is known to have exactly one
52 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
  /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 116 if (!extensions.hasNPot() && (!isPowerOfTwo(width) || !isPowerOfTwo(height)) &&
SkiaShader.h 160 inline bool isPowerOfTwo(unsigned int n) {
  /external/llvm/lib/Analysis/
ValueTracking.cpp 711 /// isPowerOfTwo - Return true if the given value is known to have exactly one
715 bool llvm::isPowerOfTwo(Value *V, const TargetData *TD, unsigned Depth) {
735 return isPowerOfTwo(ZI->getOperand(0), TD, Depth);
738 return isPowerOfTwo(SI->getTrueValue(), TD, Depth) &&
739 isPowerOfTwo(SI->getFalseValue(), TD, Depth);
748 return isPowerOfTwo(PEO->getOperand(0), TD, Depth);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 40 isPowerOfTwo(PowerOf2, IC.getTargetData())) {
49 isPowerOfTwo(I->getOperand(0), IC.getTargetData())) {
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 535 if (!IvarSize.isPowerOfTwo()) {
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 701 milliseconds