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

/external/llvm/include/llvm/ADT/
H A DAPInt.h417 return getAllOnesValue(numBits);
422 APInt API = getAllOnesValue(numBits);
448 static APInt getAllOnesValue(unsigned numBits) { function in class:llvm::APInt
517 return getAllOnesValue(numBits).shl(shiftAmt);
536 return getAllOnesValue(numBits).lshr(numBits - loBitsSet);
/external/llvm/lib/IR/
H A DConstants.cpp185 Constant *Constant::getAllOnesValue(Type *Ty) { function in class:Constant
188 APInt::getAllOnesValue(ITy->getBitWidth()));
191 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
198 getAllOnesValue(VTy->getElementType()));
2099 return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
2208 return Constant::getAllOnesValue(Ty);
2223 return Constant::getAllOnesValue(Ty);

Completed in 403 milliseconds