Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalParser.cpp314 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 DStringExtras.h252 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 DAPFloat.h774 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 DDXContainer.cpp356 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 DAPFloat.cpp5154 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 DCGStmt.cpp2772 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 DPPCISelLowering.cpp14959 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 DDAGCombiner.cpp17830 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 DAArch64ISelLowering.cpp12126 unsigned InputSize = Sources[S].Vec.getScalarValueSizeInBits(); in ReconstructShuffle() local
12127 unsigned InputBase = 16 * S + Lane * InputSize / 8; in ReconstructShuffle()