HomeSort by: relevance | last modified time | path
    Searched defs:Exponent (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
NativeFormatting.h 17 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 786 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
806 if (*s == 'e' || *s == 'E') { // exponent
808 const char *Exponent = s;
820 TokLoc, Exponent - ThisTokBegin, SM, LangOpts),
916 // A binary exponent can appear with or with a '.'. If dotted, the
917 // binary exponent is required.
920 const char *Exponent = s;
928 TokLoc, Exponent - ThisTokBegin, SM, LangOpts),
1109 // Initial scan of the exponent if it exists
1113 uint64_t Exponent = 0
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 620 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2());
621 return Builder.CreateShl(ExtendedStride, Exponent);
625 ConstantInt *Exponent =
627 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 5807 auto Exponent = MIRBuilder.buildSub(SrcTy, ExponentBits, Bias);
5808 auto SubExponent = MIRBuilder.buildSub(SrcTy, Exponent, ExponentLoBit);
5809 auto ExponentSub = MIRBuilder.buildSub(SrcTy, ExponentLoBit, Exponent);
5816 S1, Exponent, ExponentLoBit);
5826 S1, Exponent, ZeroSrcTy);
5857 // Subtract the fp64 exponent bias (1023) to get the real exponent and
5858 // add the f16 bias (15) to get the biased exponent for the f16 format.

Completed in 36 milliseconds