Searched defs:getAllOnesValue (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DAPInt.h396 return getAllOnesValue(numBits);
401 APInt API = getAllOnesValue(numBits);
427 static APInt getAllOnesValue(unsigned numBits) { function in class:llvm::APInt
486 return getAllOnesValue(numBits).shl(shiftAmt);
503 return getAllOnesValue(numBits).lshr(numBits - loBitsSet);
/external/llvm/lib/VMCore/
H A DConstants.cpp141 Constant *Constant::getAllOnesValue(Type *Ty) { function in class:Constant
144 APInt::getAllOnesValue(ITy->getBitWidth()));
147 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
154 getAllOnesValue(VTy->getElementType()));
1919 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));

Completed in 65 milliseconds