Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalParser.cpp237 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 DAPFloat.h672 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 DAPFloat.cpp4694 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 DCGStmt.cpp2361 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 DInstCombineCompares.cpp5960 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 DPPCISelLowering.cpp13937 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 DDAGCombiner.cpp14735 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local
14737 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()