Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DIncrementalParser.cpp107 size_t InputSize = input.size(); // don't include trailing 0 in Parse() local
110 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(InputSize + 1, in Parse()
113 memcpy(MBStart, input.data(), InputSize); in Parse()
114 MBStart[InputSize] = '\n'; in Parse()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp411 size_t InputSize = SigInputElements.Stride * InputCount; in parse() local
412 SigInputElements.Data = Data.substr(Current - Data.begin(), InputSize); in parse()
413 Current += InputSize; in parse()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h884 unsigned int InputSize,
888 unsigned int InputSize,
1361 unsigned int InputSize, bool IsSigned, in convertFromSignExtendedInteger() argument
1364 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromSignExtendedInteger()
1367 unsigned int InputSize, bool IsSigned, in convertFromZeroExtendedInteger() argument
1370 convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromZeroExtendedInteger()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp5338 unsigned int InputSize, in convertFromSignExtendedInteger() argument
5342 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromSignExtendedInteger()
5349 unsigned int InputSize, in convertFromZeroExtendedInteger() argument
5353 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromZeroExtendedInteger()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2950 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt() local
2951 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstructionSelector.cpp3364 [[maybe_unused]] uint64_t InputSize = in extractSubvector() local
3367 assert(InputSize > 1 && "The input must be a vector."); in extractSubvector()
3369 assert(ResultSize < InputSize && in extractSubvector()
/freebsd/sys/contrib/zstd/programs/
H A Dzstd.1.md697 **Output Format:** CompressionLevel#Filename: InputSize -> OutputSize (CompressionRatio), Compressi…
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp15792 int InputSize = Input.getValueType().getScalarSizeInBits(); in combineBVOfVecSExt() local
15794 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
15796 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
15798 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
15800 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
15802 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp18788 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local
18790 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12993 unsigned InputSize = Sources[S].Vec.getScalarValueSizeInBits(); in ReconstructShuffle() local
12994 unsigned InputBase = 16 * S + Lane * InputSize / 8; in ReconstructShuffle()