HomeSort by relevance Sort by last modified time
    Searched refs:Exponent (Results 1 - 25 of 42) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 192 : ('0'..'9')+ '.' ('0'..'9')* Exponent? FloatTypeSuffix?
193 | '.' ('0'..'9')+ Exponent? FloatTypeSuffix?
194 | ('0'..'9')+ Exponent FloatTypeSuffix?
195 | ('0'..'9')+ Exponent? FloatTypeSuffix
199 Exponent : ('e'|'E') ('+'|'-')? ('0'..'9')+ ;
  /external/gemmlowp/internal/
fixedpoint_neon.h 142 template <int Exponent>
143 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, int32x4_t, 1> {
144 static int32x4_t eval(int32x4_t x) { return vqshlq_n_s32(x, Exponent); }
147 template <int Exponent>
148 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, int32x4_t, -1> {
149 static int32x4_t eval(int32x4_t x) { return vrshrq_n_s32(x, -Exponent); }
fixedpoint.h 175 template <int Exponent, typename IntegerType,
176 int ExponentSign = (Exponent > 0 ? 1 : Exponent < 0 ? -1 : 0)>
179 template <int Exponent, typename IntegerType>
180 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, IntegerType, 0> {
184 template <int Exponent>
185 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, int32_t, 1> {
189 return x >= (1 << (31 - Exponent)) ? max : x <= -(1 << (31 - Exponent))
191 : x * (1 << Exponent);
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 39 int Exponent() const { return static_cast<int>(((u_ & kExponentMask) >> kSignificandSize) - kExponentBias); }
47 int IntegerExponent() const { return (IsNormal() ? Exponent() : kDenormalExponent) - kSignificandSize; }
  /external/v8/src/
double.h 39 return DiyFp(Significand(), Exponent());
46 int e = Exponent();
78 int Exponent() const {
125 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
130 // exponent as m_plus.
144 // Note: denormals have the same exponent as the smallest normals.
181 int exponent = diy_fp.e(); local
184 exponent++;
186 if (exponent >= kMaxExponent) {
189 if (exponent < kDenormalExponent)
    [all...]
bignum-dtoa.cc 17 static int NormalizedExponent(uint64_t significand, int exponent) {
21 exponent = exponent - 1;
23 return exponent;
29 static int EstimatePower(int exponent);
73 int exponent = Double(v).Exponent(); local
74 int normalized_exponent = NormalizedExponent(significand, exponent);
244 // exponent (decimal_point), when rounding upwards.
332 // v = f * 2^exponent and 2^52 <= f < 2^53
430 int exponent = Double(v).Exponent(); local
482 int exponent = Double(v).Exponent(); local
    [all...]
fixed-dtoa.cc 203 // point at bit (-exponent).
205 // -128 <= exponent <= 0.
206 // 0 <= fractionals * 2^exponent < 1
213 static void FillFractionals(uint64_t fractionals, int exponent,
216 DCHECK(-128 <= exponent && exponent <= 0);
218 // (-exponent). Inside the function the non-converted remainder of fractionals
220 if (-exponent <= 64) {
223 int point = -exponent;
248 DCHECK(64 < -exponent && -exponent <= 128)
297 int exponent = Double(v).Exponent(); local
348 significand <<= exponent; local
    [all...]
conversions-inl.h 90 int exponent = d.Exponent();
91 if (exponent < 0) {
92 if (exponent <= -Double::kSignificandSize) return 0;
93 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
95 if (exponent > 31) return 0;
96 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
212 int exponent = 0; local
246 exponent = overflow_bits_count;
253 exponent += radix_log_2
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 479 : '.' DIGITS (Exponent)?
480 | DIGITS ('.' (DIGITS (Exponent)?)? | Exponent)
488 Exponent
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 62 Exponent = r'[eE][-+]?\d+'
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
64 Expfloat = r'\d+' + Exponent
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tokenize.py 58 Exponent = r'[eE][-+]?\d+'
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
60 Expfloat = r'\d+' + Exponent
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 62 Exponent = r'[eE][-+]?\d+'
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
64 Expfloat = r'\d+' + Exponent
  /prebuilts/gdb/linux-x86/lib/python2.7/
tokenize.py 58 Exponent = r'[eE][-+]?\d+'
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
60 Expfloat = r'\d+' + Exponent
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 62 Exponent = r'[eE][-+]?\d+'
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
64 Expfloat = r'\d+' + Exponent
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 58 Exponent = r'[eE][-+]?\d+'
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
60 Expfloat = r'\d+' + Exponent
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 62 Exponent = r'[eE][-+]?\d+'
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
64 Expfloat = r'\d+' + Exponent
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 58 Exponent = r'[eE][-+]?\d+'
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
60 Expfloat = r'\d+' + Exponent
  /external/clang/lib/Lex/
LiteralSupport.cpp 551 if ((*s == 'e' || *s == 'E')) { // exponent
553 const char *Exponent = s;
562 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent - ThisTokBegin),
774 // A binary exponent can appear with or with a '.'. If dotted, the
775 // binary exponent is required.
778 const char *Exponent = s;
784 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
846 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
862 if (*s == 'e' || *s == 'E') { // exponent
864 const char *Exponent = s
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 594 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2());
595 return Builder.CreateShl(ExtendedStride, Exponent);
599 ConstantInt *Exponent =
601 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent));
  /external/curl/tests/
stunnel.pem 85 Exponent: 65537 (0x10001)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cryptxml.h 310 CRYPT_XML_DATA_BLOB Exponent;
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmshalf.c 393 static cmsUInt32Number Exponent[64] = {
    [all...]
  /prebuilts/go/darwin-x86/src/strconv/
extfloat.go 133 // Exponent too small.
338 // binary exponent of f. We want a small integral part in the result
344 // Find power of ten such that x * 10^n has a binary exponent
360 // Apply the desired decimal shift on f. It will have exponent
  /prebuilts/go/linux-x86/src/strconv/
extfloat.go 133 // Exponent too small.
338 // binary exponent of f. We want a small integral part in the result
344 // Find power of ten such that x * 10^n has a binary exponent
360 // Apply the desired decimal shift on f. It will have exponent

Completed in 1795 milliseconds

1 2