Searched refs:Exponent (Results 1 - 20 of 20) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DNativeFormatting.h17 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent }; member in class:llvm::FloatStyle
H A DFormatProviders.h311 S = FloatStyle::Exponent;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DNativeFormatting.cpp175 if (Style == FloatStyle::Exponent)
186 if (Style == FloatStyle::Exponent || Style == FloatStyle::ExponentUpper) {
254 case FloatStyle::Exponent:
H A Draw_ostream.cpp209 llvm::write_double(*this, N, FloatStyle::Exponent);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp620 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); local
621 return Builder.CreateShl(ExtendedStride, Exponent);
625 ConstantInt *Exponent = local
627 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent));
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DLiteralSupport.cpp808 const char *Exponent = s; local
820 TokLoc, Exponent - ThisTokBegin, SM, LangOpts),
920 const char *Exponent = s;
928 TokLoc, Exponent - ThisTokBegin, SM, LangOpts),
1113 uint64_t Exponent = 0;
1128 Exponent = ExpInt.getZExtValue();
1133 if (NegativeExponent) BaseShift -= Exponent;
1134 else BaseShift += Exponent;
1140 // + ceil(Exponent * log2(10)) Exponent
[all...]
/netbsd-current/external/gpl3/gdb/dist/libdecnumber/
H A DdecCommon.c90 #error Exponent form can be too long for ToString to lay out safely
93 #error Exponent form is too long for ToString to lay out
1113 /* Exponent/special code is extracted from df */
1819 #error Exponent form is too long for ShowNum to lay out
H A DdecBasic.c711 #error Exponent may overflow when doubled for Multiply
/netbsd-current/external/gpl3/gdb.old/dist/libdecnumber/
H A DdecCommon.c90 #error Exponent form can be too long for ToString to lay out safely
93 #error Exponent form is too long for ToString to lay out
1113 /* Exponent/special code is extracted from df */
1819 #error Exponent form is too long for ShowNum to lay out
H A DdecBasic.c711 #error Exponent may overflow when doubled for Multiply
/netbsd-current/external/gpl3/gcc.old/dist/libdecnumber/
H A DdecCommon.c90 #error Exponent form can be too long for ToString to lay out safely
93 #error Exponent form is too long for ToString to lay out
1113 /* Exponent/special code is extracted from df */
1819 #error Exponent form is too long for ShowNum to lay out
H A DdecBasic.c711 #error Exponent may overflow when doubled for Multiply
/netbsd-current/external/gpl3/gcc/dist/libdecnumber/
H A DdecCommon.c90 #error Exponent form can be too long for ToString to lay out safely
93 #error Exponent form is too long for ToString to lay out
1113 /* Exponent/special code is extracted from df */
1819 #error Exponent form is too long for ShowNum to lay out
H A DdecBasic.c711 #error Exponent may overflow when doubled for Multiply
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp829 uint64_t Exponent = 0;
833 // below when the power of 2 exceeds our Exponent, and we want it to be
835 while (E != OpsAndLoops.end() && *I == *E && Exponent != MaxExponent) {
836 ++Exponent;
839 assert(Exponent > 0 && "Trying to calculate a zeroth exponent of operand?");
845 if (Exponent & 1)
847 for (uint64_t BinExp = 2; BinExp <= Exponent; BinExp <<= 1) {
850 if (Exponent & BinExp)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp725 Error parseAlignmentValue(uint64_t Exponent, MaybeAlign &Alignment);
1556 Error BitcodeReader::parseAlignmentValue(uint64_t Exponent, argument
1560 if (Exponent > Value::MaxAlignmentExponent + 1)
1562 Alignment = decodeMaybeAlign(Exponent);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp5807 auto Exponent = MIRBuilder.buildSub(SrcTy, ExponentBits, Bias); local
5808 auto SubExponent = MIRBuilder.buildSub(SrcTy, Exponent, ExponentLoBit);
5809 auto ExponentSub = MIRBuilder.buildSub(SrcTy, ExponentLoBit, Exponent);
5816 S1, Exponent, ExponentLoBit);
5826 S1, Exponent, ZeroSrcTy);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DValueTracking.cpp3568 if (ConstantInt *Exponent = dyn_cast<ConstantInt>(I->getOperand(1))) {
3570 if (Exponent->getBitWidth() <= 64 && Exponent->getSExtValue() % 2u == 0)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp6693 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias);
6707 dl, Exponent, ExponentLoBit,
6710 DAG.getNode(ISD::SUB, dl, IntVT, Exponent, ExponentLoBit),
6714 DAG.getNode(ISD::SUB, dl, IntVT, ExponentLoBit, Exponent),
6721 Result = DAG.getSelectCC(dl, Exponent, DAG.getConstant(0, dl, IntVT),
H A DLegalizeDAG.cpp4063 SDValue Exponent = DAG.getNode(ISD::SINT_TO_FP, SDLoc(Node),
4068 Exponent));

Completed in 320 milliseconds