Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAddressRanges.h107 size_t InputSize = Ranges.size(); in insert() local
115 if (InputSize < Ranges.size()) in insert()
117 else if (InputSize > Ranges.size()) in insert()
118 Values.erase(ValuesIt, ValuesIt + InputSize - Ranges.size()); in insert()
H A DAPFloat.h692 unsigned int InputSize, bool IsSigned,
695 unsigned int InputSize, bool IsSigned,
1132 unsigned int InputSize, bool IsSigned, in convertFromSignExtendedInteger() argument
1135 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromSignExtendedInteger()
1138 unsigned int InputSize, bool IsSigned, in convertFromZeroExtendedInteger() argument
1141 convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM)); in convertFromZeroExtendedInteger()
H A DStringExtras.h239 size_t InputSize = Input.size(); in tryGetFromHex() local
240 assert(InputSize % 2 == 0); in tryGetFromHex()
242 for (size_t OutputIndex = 0; OutputIndex < InputSize / 2; ++OutputIndex) { in tryGetFromHex()
/openbsd-src/gnu/llvm/clang/lib/Interpreter/
H A DIncrementalParser.cpp225 size_t InputSize = input.size(); // don't include trailing 0 in Parse() local
228 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(InputSize + 1, in Parse()
231 memcpy(MBStart, input.data(), InputSize); in Parse()
232 MBStart[InputSize] = '\n'; in Parse()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp4977 unsigned int InputSize, in convertFromSignExtendedInteger() argument
4981 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromSignExtendedInteger()
4988 unsigned int InputSize, in convertFromZeroExtendedInteger() argument
4992 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM); in convertFromZeroExtendedInteger()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp2461 uint64_t InputSize = getContext().getTypeSize(InputTy); in EmitAsmStmt() local
2462 if (getContext().getTypeSize(OutputType) < InputSize) { in EmitAsmStmt()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp6453 unsigned InputSize = IntTy->getScalarSizeInBits(); in foldFCmpIntToFPConst() local
6458 if ((int)InputSize > MantissaWidth) { in foldFCmpIntToFPConst()
6463 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
6469 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14441 int InputSize = Input.getValueType().getScalarSizeInBits(); in combineBVOfVecSExt() local
14443 if (InputSize + OutputSize == 40) in combineBVOfVecSExt()
14445 else if (InputSize + OutputSize == 72) in combineBVOfVecSExt()
14447 else if (InputSize + OutputSize == 48) in combineBVOfVecSExt()
14449 else if (InputSize + OutputSize == 80) in combineBVOfVecSExt()
14451 else if (InputSize + OutputSize == 96) in combineBVOfVecSExt()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp10384 unsigned InputSize = Sources[S].Vec.getScalarValueSizeInBits(); in ReconstructShuffle() local
10385 unsigned InputBase = 16 * S + Lane * InputSize / 8; in ReconstructShuffle()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp16335 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; in FoldIntToFPToInt() local
16337 unsigned ActualSize = std::min(InputSize, OutputSize); in FoldIntToFPToInt()