Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Interpreter/
H A DIncrementalParser.cpp202 size_t InputSize = input.size(); // don't include trailing 0 in Parse() local
205 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(InputSize + 1, in Parse()
208 memcpy(MBStart, input.data(), InputSize); in Parse()
209 MBStart[InputSize] = '\n'; in Parse()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp2317 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt() local
2318 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp5851 unsigned InputSize = IntTy->getScalarSizeInBits(); in foldFCmpIntToFPConst() local
5856 if ((int)InputSize > MantissaWidth) { in foldFCmpIntToFPConst()
5861 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
5867 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp13882 int InputSize = Input.getValueType().getScalarSizeInBits(); in combineBVOfVecSExt() local
13884 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
13886 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
13888 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
13890 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
13892 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp14540 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local
14542 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()