Searched refs:InputSize (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
H A D | IncrementalParser.cpp | 314 size_t InputSize = input.size(); // don't include trailing 0 in Parse() local 317 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(InputSize + 1, in Parse() 320 memcpy(MBStart, input.data(), InputSize); in Parse() 321 MBStart[InputSize] = '\n'; in Parse()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 252 size_t InputSize = Input.size(); in tryGetFromHex() local 253 assert(InputSize % 2 == 0); in tryGetFromHex() 255 for (size_t OutputIndex = 0; OutputIndex < InputSize / 2; ++OutputIndex) { in tryGetFromHex()
|
H A D | APFloat.h | 774 unsigned int InputSize, bool IsSigned, 777 unsigned int InputSize, bool IsSigned, 1248 unsigned int InputSize, bool IsSigned, in convertFromSignExtendedInteger() argument 1251 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromSignExtendedInteger() 1254 unsigned int InputSize, bool IsSigned, in convertFromZeroExtendedInteger() argument 1257 convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromZeroExtendedInteger()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | DXContainer.cpp | 356 size_t InputSize = SigInputElements.Stride * InputCount; in parse() local 357 SigInputElements.Data = Data.substr(Current - Data.begin(), InputSize); in parse() 358 Current += InputSize; in parse()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APFloat.cpp | 5154 unsigned int InputSize, in convertFromSignExtendedInteger() argument 5158 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromSignExtendedInteger() 5165 unsigned int InputSize, in convertFromZeroExtendedInteger() argument 5169 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromZeroExtendedInteger()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 2772 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt() local 2773 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCISelLowering.cpp | 14959 int InputSize = Input.getValueType().getScalarSizeInBits(); in combineBVOfVecSExt() local 14961 if (InputSize + OutputSize == 40) in combineBVOfVecSExt() 14963 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt() 14965 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt() 14967 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt() 14969 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 17830 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local 17832 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 12126 unsigned InputSize = Sources[S].Vec.getScalarValueSizeInBits(); in ReconstructShuffle() local 12127 unsigned InputBase = 16 * S + Lane * InputSize / 8; in ReconstructShuffle()
|