Home | History | Annotate | Download | only in IR

Lines Matching full:issigned

153     return CI->isMinValue(/*isSigned=*/true);
175 return !CI->isMinValue(/*isSigned=*/true);
581 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
582 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
592 bool isSigned) {
593 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
1610 bool isSigned) {
1618 (isSigned ? Instruction::SExt : Instruction::ZExt)));