Searched refs:InputSize (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h661 unsigned int InputSize, bool IsSigned,
664 unsigned int InputSize, bool IsSigned,
1102 unsigned int InputSize, bool IsSigned,
1105 convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM));
1108 unsigned int InputSize, bool IsSigned,
1111 convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM));
1101 convertFromSignExtendedInteger(const integerPart *Input, unsigned int InputSize, bool IsSigned, roundingMode RM) argument
1107 convertFromZeroExtendedInteger(const integerPart *Input, unsigned int InputSize, bool IsSigned, roundingMode RM) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4395 unsigned int InputSize,
4399 auto Ret = Tmp.convertFromSignExtendedInteger(Input, InputSize, IsSigned, RM);
4406 unsigned int InputSize,
4410 auto Ret = Tmp.convertFromZeroExtendedInteger(Input, InputSize, IsSigned, RM);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2076 uint64_t InputSize = getContext().getTypeSize(InputTy); local
2077 if (getContext().getTypeSize(OutputType) < InputSize) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1734 int InputSize = (int)SrcTy->getScalarSizeInBits() - IsInputSigned; local
1736 int ActualSize = std::min(InputSize, OutputSize);
H A DInstCombineCompares.cpp5726 unsigned InputSize = IntTy->getScalarSizeInBits(); local
5728 // Following test does NOT adjust InputSize downwards for signed inputs,
5731 if ((int)InputSize > MantissaWidth) {
5736 if (MaxExponent < (int)InputSize - !LHSUnsigned)
5742 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp13247 int InputSize = Input.getValueType().getScalarSizeInBits(); local
13249 if (InputSize + OutputSize == 40)
13251 else if (InputSize + OutputSize == 72)
13253 else if (InputSize + OutputSize == 48)
13255 else if (InputSize + OutputSize == 80)
13257 else if (InputSize + OutputSize == 96)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13174 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned; local
13176 unsigned ActualSize = std::min(InputSize, OutputSize);

Completed in 261 milliseconds