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

/external/llvm/include/llvm/ADT/
H A DAPInt.h398 return getAllOnesValue(numBits);
403 APInt API = getAllOnesValue(numBits);
429 static APInt getAllOnesValue(unsigned numBits) { function in class:llvm::APInt
488 return getAllOnesValue(numBits).shl(shiftAmt);
505 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()));
2028 return Constant::getAllOnesValue(Ty);
2043 return Constant::getAllOnesValue(Ty);

Completed in 266 milliseconds