Home | History | Annotate | Download | only in IR

Lines Matching full:issigned

492 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
493 Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
503 bool isSigned) {
504 return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
1496 bool isSigned) {
1504 (isSigned ? Instruction::SExt : Instruction::ZExt)));