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

  /external/llvm/include/llvm/ADT/
APInt.h 395 return getAllOnesValue(numBits);
400 APInt API = getAllOnesValue(numBits);
426 static APInt getAllOnesValue(unsigned numBits) {
485 return getAllOnesValue(numBits).shl(shiftAmt);
502 return getAllOnesValue(numBits).lshr(numBits - loBitsSet);
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 130 Constant *Constant::getAllOnesValue(Type *Ty) {
133 APInt::getAllOnesValue(ITy->getBitWidth()));
136 APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
143 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
    [all...]

Completed in 95 milliseconds