Home
last modified time | relevance | path

Searched refs:InputSize (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h644 unsigned int InputSize, bool IsSigned,
647 unsigned int InputSize, bool IsSigned,
1082 unsigned int InputSize, bool IsSigned, in convertFromSignExtendedInteger() argument
1085 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromSignExtendedInteger()
1088 unsigned int InputSize, bool IsSigned, in convertFromZeroExtendedInteger() argument
1091 convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromZeroExtendedInteger()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DChunks.cpp354 size_t InputSize = getSize(); in writeTo() local
362 if (Rel.VirtualAddress >= InputSize) { in writeTo()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp4318 unsigned int InputSize, in convertFromSignExtendedInteger() argument
4322 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromSignExtendedInteger()
4329 unsigned int InputSize, in convertFromZeroExtendedInteger() argument
4333 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromZeroExtendedInteger()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp1976 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt() local
1977 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1703 int InputSize = (int)SrcTy->getScalarSizeInBits() - IsInputSigned; in FoldItoFPtoI() local
1705 int ActualSize = std::min(InputSize, OutputSize); in FoldItoFPtoI()
H A DInstCombineCompares.cpp5089 unsigned InputSize = IntTy->getScalarSizeInBits(); in foldFCmpIntToFPConst() local
5094 if ((int)InputSize > MantissaWidth) { in foldFCmpIntToFPConst()
5099 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
5105 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp12246 int InputSize = Input.getValueType().getScalarSizeInBits(); in combineBVOfVecSExt() local
12248 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
12250 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
12252 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
12254 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
12256 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp12030 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local
12032 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()