Home
last modified time | relevance | path

Searched refs:Exponent (Results 1 – 25 of 29) sorted by relevance

12

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DNativeFormatting.cpp181 if (Style == FloatStyle::Exponent) in write_double()
192 if (Style == FloatStyle::Exponent || Style == FloatStyle::ExponentUpper) { in write_double()
260 case FloatStyle::Exponent: in getDefaultPrecision()
H A Draw_ostream.cpp215 llvm::write_double(*this, N, FloatStyle::Exponent); in operator <<()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DLiteralSupport.cpp1142 const char *Exponent = s; in ParseDecimalOrOctalCommon() local
1154 TokLoc, Exponent - ThisTokBegin, SM, LangOpts), in ParseDecimalOrOctalCommon()
1254 const char *Exponent = s; in ParseNumberStartingWithZero() local
1262 TokLoc, Exponent - ThisTokBegin, SM, LangOpts), in ParseNumberStartingWithZero()
1453 uint64_t Exponent = 0; in GetFixedPointValue() local
1468 Exponent = ExpInt.getZExtValue(); in GetFixedPointValue()
1473 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue()
1474 else BaseShift += Exponent; in GetFixedPointValue()
1496 NumBitsNeeded = 4 * (NumDigits + Exponent) + Scale; in GetFixedPointValue()
1498 NumBitsNeeded = 4 * NumDigits + Exponent + Scale; in GetFixedPointValue()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DNativeFormatting.h17 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent }; enumerator
H A DFormatProviders.h311 S = FloatStyle::Exponent;
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp619 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); in emitBump() local
620 return Builder.CreateShl(ExtendedStride, Exponent); in emitBump()
624 ConstantInt *Exponent = in emitBump() local
626 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent)); in emitBump()
/openbsd-src/share/misc/
H A Dusb_hid_usages1913 0x574 Data Field: Generic Unit Exponent
2135 0x970 Exponent 0
2136 0x971 Exponent 1
2137 0x972 Exponent 2
2138 0x973 Exponent 3
2139 0x974 Exponent 4
2140 0x975 Exponent 5
2141 0x976 Exponent 6
2142 0x977 Exponent 7
2143 0x978 Exponent 8
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp841 uint64_t Exponent = 0; in visitMulExpr() local
847 while (E != OpsAndLoops.end() && *I == *E && Exponent != MaxExponent) { in visitMulExpr()
848 ++Exponent; in visitMulExpr()
851 assert(Exponent > 0 && "Trying to calculate a zeroth exponent of operand?"); in visitMulExpr()
857 if (Exponent & 1) in visitMulExpr()
859 for (uint64_t BinExp = 2; BinExp <= Exponent; BinExp <<= 1) { in visitMulExpr()
862 if (Exponent & BinExp) in visitMulExpr()
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DREADME_P9.txt383 - Insert Exponent DP/QP: xsiexpdp xsiexpqp
392 - Extract Exponent/Significand DP/QP: xsxexpdp xsxsigdp xsxexpqp xsxsigqp
428 - Vector Insert Exponent DP/SP: xviexpdp xviexpsp
433 - Vector Extract Exponent/Significand DP/SP: xvxexpdp xvxexpsp xvxsigdp xvxsigsp
H A DPPCInstrVSX.td1534 // Insert Exponent DP/QP
1546 // Extract Exponent/Significand DP/QP
1573 // Vector Insert Exponent DP/SP
1579 // Vector Extract Exponent/Significand DP/SP
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A Darm_fp16.td30 // Reciprocal Exponent
H A Darm_neon.td1460 // Scalar Floating-point Reciprocal Exponent
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetLowering.h2273 bool isBeneficialToExpandPowI(int Exponent, bool OptForSize) const { in isBeneficialToExpandPowI() argument
2274 if (Exponent < 0) in isBeneficialToExpandPowI()
2275 Exponent = -Exponent; in isBeneficialToExpandPowI()
2277 (llvm::popcount((unsigned int)Exponent) + Log2_32(Exponent) < 7); in isBeneficialToExpandPowI()
H A DBasicTTIImpl.h1509 APInt Exponent = RHSC->getValue().abs(); in getIntrinsicInstrCost() local
1510 unsigned ActiveBits = Exponent.getActiveBits(); in getIntrinsicInstrCost()
1511 unsigned PopCount = Exponent.countPopulation(); in getIntrinsicInstrCost()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp4145 SDValue Exponent = in ConvertNodeToLibcall() local
4152 {Exponent.getValue(1), Node->getOperand(1), Exponent}); in ConvertNodeToLibcall()
4156 SDValue Exponent = in ConvertNodeToLibcall() local
4161 Node->getOperand(0), Exponent)); in ConvertNodeToLibcall()
H A DTargetLowering.cpp7746 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias); in expandFP_TO_SINT() local
7760 dl, Exponent, ExponentLoBit, in expandFP_TO_SINT()
7763 DAG.getNode(ISD::SUB, dl, IntVT, Exponent, ExponentLoBit), in expandFP_TO_SINT()
7767 DAG.getNode(ISD::SUB, dl, IntVT, ExponentLoBit, Exponent), in expandFP_TO_SINT()
7774 Result = DAG.getSelectCC(dl, Exponent, DAG.getConstant(0, dl, IntVT), in expandFP_TO_SINT()
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dvariable.rst584 …(lldb) type summary add --summary-string "Sign: ${var[31]%B} Exponent: ${var[30-23]%x} Mantissa: $…
586 (float) float_point = -3.14159 Sign: true Exponent: 0x00000080 Mantissa: 4788184
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp6235 auto Exponent = MIRBuilder.buildSub(SrcTy, ExponentBits, Bias); in lowerFPTOSI() local
6236 auto SubExponent = MIRBuilder.buildSub(SrcTy, Exponent, ExponentLoBit); in lowerFPTOSI()
6237 auto ExponentSub = MIRBuilder.buildSub(SrcTy, ExponentLoBit, Exponent); in lowerFPTOSI()
6244 S1, Exponent, ExponentLoBit); in lowerFPTOSI()
6254 S1, Exponent, ZeroSrcTy); in lowerFPTOSI()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp822 Error parseAlignmentValue(uint64_t Exponent, MaybeAlign &Alignment);
2072 Error BitcodeReader::parseAlignmentValue(uint64_t Exponent, in parseAlignmentValue() argument
2076 if (Exponent > Value::MaxAlignmentExponent + 1) in parseAlignmentValue()
2078 Alignment = decodeMaybeAlign(Exponent); in parseAlignmentValue()
/openbsd-src/gnu/gcc/gcc/config/arm/
H A Dieee754-df.S277 @ Exponent too small, denormalize result.
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DValueTracking.cpp3724 if (ConstantInt *Exponent = dyn_cast<ConstantInt>(I->getOperand(1))) { in cannotBeOrderedLessThanZeroImpl() local
3726 if (Exponent->getBitWidth() <= 64 && Exponent->getSExtValue() % 2u == 0) in cannotBeOrderedLessThanZeroImpl()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DIntrinsicsAArch64.td385 // Reciprocal Exponent
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dintrin.def144 DEFNAME ("EXPONENT", "exponent", "Exponent", genNONE, specEXPONENT) /* F90 */
/openbsd-src/gnu/gcc/libcpp/po/
H A Dde.po414 msgstr "Exponent hat keine Ziffern"
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/
H A DChangeLog-929512307 * config/atof-ieee.c (atof_ieee): Exponent field isn't a pointer;

12