Searched refs:InputSize (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/Interpreter/ |
| H A D | IncrementalParser.cpp | 237 size_t InputSize = input.size(); // don't include trailing 0 in Parse() local 240 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(InputSize + 1, in Parse() 243 memcpy(MBStart, input.data(), InputSize); in Parse() 244 MBStart[InputSize] = '\n'; in Parse()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 672 unsigned int InputSize, bool IsSigned, 675 unsigned int InputSize, bool IsSigned, 1120 unsigned int InputSize, bool IsSigned, in convertFromSignExtendedInteger() argument 1123 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromSignExtendedInteger() 1126 unsigned int InputSize, bool IsSigned, in convertFromZeroExtendedInteger() argument 1129 convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromZeroExtendedInteger()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 4694 unsigned int InputSize, in convertFromSignExtendedInteger() argument 4698 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromSignExtendedInteger() 4705 unsigned int InputSize, in convertFromZeroExtendedInteger() argument 4709 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromZeroExtendedInteger()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 2361 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt() local 2362 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCompares.cpp | 5960 unsigned InputSize = IntTy->getScalarSizeInBits(); in foldFCmpIntToFPConst() local 5965 if ((int)InputSize > MantissaWidth) { in foldFCmpIntToFPConst() 5970 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst() 5976 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 13937 int InputSize = Input.getValueType().getScalarSizeInBits(); in combineBVOfVecSExt() local 13939 if (InputSize + OutputSize == 40) in combineBVOfVecSExt() 13941 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt() 13943 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt() 13945 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt() 13947 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 14735 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local 14737 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()
|