Searched refs:SrcIsSigned (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | FixedPointBuilder.h | 39 bool SrcIsSigned = SrcSema.isSigned(); in Convert() local 52 if (DstIsInteger && SrcIsSigned) { in Convert() 61 Result = SrcIsSigned in Convert() 68 Result = B.CreateIntCast(Result, DstIntTy, SrcIsSigned, "resize"); in Convert() 79 Result = B.CreateIntCast(Result, UpscaledTy, SrcIsSigned, "resize"); in Convert() 89 Value *TooHigh = SrcIsSigned ? B.CreateICmpSGT(Result, Max) in Convert() 95 if (SrcIsSigned && (LessIntBits || !DstIsSigned)) { in Convert() 105 Result = B.CreateIntCast(Result, DstIntTy, SrcIsSigned, "resize"); in Convert() 164 Value *CreateIntegerToFixed(Value *Src, unsigned SrcIsSigned, in CreateIntegerToFixed() argument 168 Src->getType()->getScalarSizeInBits(), SrcIsSigned), in CreateIntegerToFixed()
|
| D | InstrTypes.h | 621 bool SrcIsSigned, ///< Whether to treat the source as signed
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | Instructions.cpp | 3249 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) { in getCastOpcode() argument 3278 if (SrcIsSigned) in getCastOpcode() 3301 if (SrcIsSigned) in getCastOpcode()
|