Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/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.h743 unsigned int InputSize, bool IsSigned,
746 unsigned int InputSize, bool IsSigned,
1198 unsigned int InputSize, bool IsSigned, in convertFromSignExtendedInteger() argument
1201 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromSignExtendedInteger()
1204 unsigned int InputSize, bool IsSigned, in convertFromZeroExtendedInteger() argument
1207 convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromZeroExtendedInteger()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp348 size_t InputSize = SigInputElements.Stride * InputCount; in parse() local
349 SigInputElements.Data = Data.substr(Current - Data.begin(), InputSize); in parse()
350 Current += InputSize; in parse()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp5033 unsigned int InputSize, in convertFromSignExtendedInteger() argument
5037 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromSignExtendedInteger()
5044 unsigned int InputSize, in convertFromZeroExtendedInteger() argument
5048 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromZeroExtendedInteger()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2594 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt() local
2595 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp7275 unsigned InputSize = IntTy->getScalarSizeInBits(); in foldFCmpIntToFPConst() local
7280 if ((int)InputSize > MantissaWidth) { in foldFCmpIntToFPConst()
7285 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
7291 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14746 int InputSize = Input.getValueType().getScalarSizeInBits(); in combineBVOfVecSExt() local
14748 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
14750 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
14752 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
14754 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
14756 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp17492 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local
17494 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp11105 unsigned InputSize = Sources[S].Vec.getScalarValueSizeInBits(); in ReconstructShuffle() local
11106 unsigned InputBase = 16 * S + Lane * InputSize / 8; in ReconstructShuffle()