Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DLiteralSupport.cpp773 const char *Exponent = s; in ParseDecimalOrOctalCommon() local
784 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin), in ParseDecimalOrOctalCommon()
882 const char *Exponent = s; in ParseNumberStartingWithZero() local
889 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin), in ParseNumberStartingWithZero()
1070 uint64_t Exponent = 0; in GetFixedPointValue() local
1085 Exponent = ExpInt.getZExtValue(); in GetFixedPointValue()
1090 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue()
1091 else BaseShift += Exponent; in GetFixedPointValue()
1113 NumBitsNeeded = 4 * (NumDigits + Exponent) + Scale; in GetFixedPointValue()
1115 NumBitsNeeded = 4 * NumDigits + Exponent + Scale; in GetFixedPointValue()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DNativeFormatting.cpp177 if (Style == FloatStyle::Exponent) in write_double()
188 if (Style == FloatStyle::Exponent || Style == FloatStyle::ExponentUpper) { in write_double()
256 case FloatStyle::Exponent: in getDefaultPrecision()
H A Draw_ostream.cpp193 llvm::write_double(*this, N, FloatStyle::Exponent); in operator <<()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp609 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); in emitBump() local
610 return Builder.CreateShl(ExtendedStride, Exponent); in emitBump()
614 ConstantInt *Exponent = in emitBump() local
616 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent)); in emitBump()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DNativeFormatting.h19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent }; enumerator
H A DFormatProviders.h312 S = FloatStyle::Exponent;
/freebsd-12.1/contrib/sendmail/
H A DCACerts42 Exponent: 65537 (0x10001)
138 Exponent: 65537 (0x10001)
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp779 uint64_t Exponent = 0; in visitMulExpr() local
785 while (E != OpsAndLoops.end() && *I == *E && Exponent != MaxExponent) { in visitMulExpr()
786 ++Exponent; in visitMulExpr()
789 assert(Exponent > 0 && "Trying to calculate a zeroth exponent of operand?"); in visitMulExpr()
795 if (Exponent & 1) in visitMulExpr()
797 for (uint64_t BinExp = 2; BinExp <= Exponent; BinExp <<= 1) { in visitMulExpr()
799 if (Exponent & BinExp) in visitMulExpr()
H A DValueTracking.cpp2984 if (ConstantInt *Exponent = dyn_cast<ConstantInt>(I->getOperand(1))) { in cannotBeOrderedLessThanZeroImpl() local
2986 if (Exponent->getBitWidth() <= 64 && Exponent->getSExtValue() % 2u == 0) in cannotBeOrderedLessThanZeroImpl()
/freebsd-12.1/contrib/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.td2691 // Insert Exponent DP/QP
2703 // Extract Exponent/Significand DP/QP
2731 // Vector Insert Exponent DP/SP
2737 // Vector Extract Exponent/Significand DP/SP
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A Darm_fp16.td31 // Reciprocal Exponent
H A Darm_neon.td1269 // Scalar Floating-point Reciprocal Exponent
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DIntrinsicsAArch64.td315 // Reciprocal Exponent
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp645 Error parseAlignmentValue(uint64_t Exponent, unsigned &Alignment);
1429 Error BitcodeReader::parseAlignmentValue(uint64_t Exponent, in parseAlignmentValue() argument
1433 if (Exponent > Value::MaxAlignmentExponent + 1) in parseAlignmentValue()
1435 Alignment = (1 << static_cast<unsigned>(Exponent)) >> 1; in parseAlignmentValue()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp4340 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias); in expandFP_TO_SINT() local
4354 dl, Exponent, ExponentLoBit, in expandFP_TO_SINT()
4357 DAG.getNode(ISD::SUB, dl, IntVT, Exponent, ExponentLoBit), in expandFP_TO_SINT()
4361 DAG.getNode(ISD::SUB, dl, IntVT, ExponentLoBit, Exponent), in expandFP_TO_SINT()
4368 Result = DAG.getSelectCC(dl, Exponent, DAG.getConstant(0, dl, IntVT), in expandFP_TO_SINT()
/freebsd-12.1/sys/contrib/zstd/doc/
H A Dzstd_compression_format.md239 | Field name | `Exponent` | `Mantissa` |
244 windowLog = 10 + Exponent;
/freebsd-12.1/contrib/gcc/config/arm/
H A Dieee754-df.S277 @ Exponent too small, denormalize result.
/freebsd-12.1/contrib/wpa/hostapd/
H A DChangeLog318 - fix vht_capab 'Maximum A-MPDU Length Exponent' handling
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7957 SDValue Exponent = DAG.getNode(ISD::SINT_TO_FP, dl, Ty, Op.getOperand(1)); in LowerFPOWI() local
7969 Entry.Node = Exponent; in LowerFPOWI()
7970 Entry.Ty = Exponent.getValueType().getTypeForEVT(*DAG.getContext()); in LowerFPOWI()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp2030 Value *Exponent = EmitScalarExpr(E->getArg(1)); in EmitBuiltinExpr() local
2033 return RValue::get(Builder.CreateCall(F, {Base, Exponent})); in EmitBuiltinExpr()
/freebsd-12.1/contrib/binutils/gas/
H A DChangeLog-929512307 * config/atof-ieee.c (atof_ieee): Exponent field isn't a pointer;