HomeSort by relevance Sort by last modified time
    Searched refs:Exponent (Results 1 - 25 of 28) 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/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double.h 62 return DiyFp(Significand(), Exponent());
69 int e = Exponent();
101 int Exponent() const {
154 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
159 // exponent as m_plus.
173 // Note: denormals have the same exponent as the smallest normals.
219 int exponent = diy_fp.e(); local
222 exponent++;
224 if (exponent >= kMaxExponent) {
227 if (exponent < kDenormalExponent)
    [all...]
bignum-dtoa.cc 41 static int NormalizedExponent(uint64_t significand, int exponent) {
45 exponent = exponent - 1;
47 return exponent;
53 static int EstimatePower(int exponent);
97 int exponent = Double(v).Exponent(); local
98 int normalized_exponent = NormalizedExponent(significand, exponent);
268 // exponent (decimal_point), when rounding upwards.
356 // v = f * 2^exponent and 2^52 <= f < 2^53
453 int exponent = Double(v).Exponent(); local
505 int exponent = Double(v).Exponent(); local
    [all...]
fixed-dtoa.cc 224 // point at bit (-exponent).
226 // -128 <= exponent <= 0.
227 // 0 <= fractionals * 2^exponent < 1
234 static void FillFractionals(uint64_t fractionals, int exponent,
237 ASSERT(-128 <= exponent && exponent <= 0);
239 // (-exponent). Inside the function the non-converted remainder of fractionals
241 if (-exponent <= 64) {
244 int point = -exponent;
269 ASSERT(64 < -exponent && -exponent <= 128)
318 int exponent = Double(v).Exponent(); local
369 significand <<= exponent; local
    [all...]
  /external/chromium_org/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 19 static int NormalizedExponent(uint64_t significand, int exponent) {
23 exponent = exponent - 1;
25 return exponent;
31 static int EstimatePower(int exponent);
75 int exponent = Double(v).Exponent(); local
76 int normalized_exponent = NormalizedExponent(significand, exponent);
246 // exponent (decimal_point), when rounding upwards.
334 // v = f * 2^exponent and 2^52 <= f < 2^53
432 int exponent = Double(v).Exponent(); local
484 int exponent = Double(v).Exponent(); local
    [all...]
fixed-dtoa.cc 202 // point at bit (-exponent).
204 // -128 <= exponent <= 0.
205 // 0 <= fractionals * 2^exponent < 1
212 static void FillFractionals(uint64_t fractionals, int exponent,
215 ASSERT(-128 <= exponent && exponent <= 0);
217 // (-exponent). Inside the function the non-converted remainder of fractionals
219 if (-exponent <= 64) {
222 int point = -exponent;
247 ASSERT(64 < -exponent && -exponent <= 128)
296 int exponent = Double(v).Exponent(); local
347 significand <<= exponent; local
    [all...]
conversions-inl.h 80 int exponent = d.Exponent();
81 if (exponent < 0) {
82 if (exponent <= -Double::kSignificandSize) return 0;
83 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
85 if (exponent > 31) return 0;
86 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
135 int exponent = 0; local
169 exponent = overflow_bits_count;
176 exponent += radix_log_2
    [all...]
hydrogen-instructions.cc     [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 479 : '.' DIGITS (Exponent)?
480 | DIGITS ('.' (DIGITS (Exponent)?)? | Exponent)
488 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 549 if ((*s == 'e' || *s == 'E')) { // exponent
551 const char *Exponent = s;
560 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent - ThisTokBegin),
784 // A binary exponent can appear with or with a '.'. If dotted, the
785 // binary exponent is required.
788 const char *Exponent = s;
794 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
855 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
871 if (*s == 'e' || *s == 'E') { // exponent
873 const char *Exponent = s
    [all...]
  /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/chromium_org/net/quic/crypto/
common_cert_set_1_50.inc 33 Exponent: 65537 (0x10001)
170 Exponent: 65537 (0x10001)
324 Exponent: 65537 (0x10001)
486 Exponent: 65537 (0x10001)
    [all...]
common_cert_set_51_100.inc 43 Exponent: 65537 (0x10001)
245 Exponent: 65537 (0x10001)
453 Exponent: 65537 (0x10001)
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmshalf.c 393 static cmsUInt32Number Exponent[64] = {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]
  /external/llvm/test/MC/AArch64/
basic-a64-diagnostics.s     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 467 Value *Exponent = EmitScalarExpr(E->getArg(1));
470 return RValue::get(Builder.CreateCall2(F, Base, Exponent));
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 46 public static final int Exponent=18;
471 // src/com/google/doclava/parser/Java.g:1322:5: ( ( '0' .. '9' )+ '.' ( '0' .. '9' )* ( Exponent )? | '.' ( '0' .. '9' )+ ( Exponent )? | ( '0' .. '9' )+ Exponent | ( '0' .. '9' )+ | HexPrefix ( HexDigit )* ( () | ( '.' ( HexDigit )* ) ) ( 'p' | 'P' ) ( '+' | '-' )? ( '0' .. '9' )+ )
476 // src/com/google/doclava/parser/Java.g:1322:9: ( '0' .. '9' )+ '.' ( '0' .. '9' )* ( Exponent )?
534 // src/com/google/doclava/parser/Java.g:1322:41: ( Exponent )?
543 // src/com/google/doclava/parser/Java.g:1322:41: Exponent
556 // src/com/google/doclava/parser/Java.g:1323:9: '.' ( '0' .. '9' )+ ( Exponent )?
589 // src/com/google/doclava/parser/Java.g:1323:29: ( Exponent )?
598 // src/com/google/doclava/parser/Java.g:1323:29: Exponent
    [all...]
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 

Completed in 6154 milliseconds

1 2