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

  /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/webkit/Source/WebCore/svg/
SVGComponentTransferFunctionElement.h 52 DECLARE_ANIMATED_NUMBER(Exponent, exponent)
SVGComponentTransferFunctionElement.cpp 39 DEFINE_ANIMATED_NUMBER(SVGComponentTransferFunctionElement, SVGNames::exponentAttr, Exponent, exponent)
151 func.exponent = exponent();
  /external/v8/src/
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.
210 int exponent = diy_fp.e(); local
213 exponent++;
215 if (exponent >= kMaxExponent) {
218 if (exponent < kDenormalExponent)
    [all...]
bignum-dtoa.cc 42 static int NormalizedExponent(uint64_t significand, int exponent) {
46 exponent = exponent - 1;
48 return exponent;
54 static int EstimatePower(int exponent);
98 int exponent = Double(v).Exponent(); local
99 int normalized_exponent = NormalizedExponent(significand, exponent);
269 // exponent (decimal_point), when rounding upwards.
357 // v = f * 2^exponent and 2^52 <= f < 2^53
454 int exponent = Double(v).Exponent(); local
506 int exponent = Double(v).Exponent(); local
    [all...]
fixed-dtoa.cc 225 // point at bit (-exponent).
227 // -128 <= exponent <= 0.
228 // 0 <= fractionals * 2^exponent < 1
235 static void FillFractionals(uint64_t fractionals, int exponent,
238 ASSERT(-128 <= exponent && exponent <= 0);
240 // (-exponent). Inside the function the non-converted remainder of fractionals
242 if (-exponent <= 64) {
245 int point = -exponent;
270 ASSERT(64 < -exponent && -exponent <= 128)
319 int exponent = Double(v).Exponent(); local
370 significand <<= exponent; local
    [all...]
conversions-inl.h 94 int exponent = d.Exponent();
95 if (exponent < 0) {
96 if (exponent <= -Double::kSignificandSize) return 0;
97 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
99 if (exponent > 31) return 0;
100 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
149 int exponent = 0; local
183 exponent = overflow_bits_count;
190 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
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 180 uint32_t Exponent = (Imm8 >> 4) & 0x7;
188 if (Exponent & 0x4) {
189 Val /= 1 << (7 - Exponent);
191 Val *= 1 << (Exponent + 1);
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.cpp 617 int32_t Exponent = ((Bits >> ExpStart) & ExpMask);
618 Exponent -= ExpMask >> 1;
630 if (Exponent < -3 || Exponent > 4)
634 uint32_t PackedExp = (Exponent + 7) & 0x7;
  /external/clang/lib/Lex/
LiteralSupport.cpp 496 if ((*s == 'e' || *s == 'E')) { // exponent
497 const char *Exponent = s;
505 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent - ThisTokBegin),
661 // A binary exponent can appear with or with a '.'. If dotted, the
662 // binary exponent is required.
664 const char *Exponent = s;
670 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
725 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
740 if (*s == 'e' || *s == 'E') { // exponent
741 const char *Exponent = s
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 456 Value *Exponent = EmitScalarExpr(E->getArg(1));
459 return RValue::get(Builder.CreateCall2(F, Base, Exponent));
    [all...]
  /external/llvm/test/MC/AArch64/
basic-a64-diagnostics.s     [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...]
JavaParser.java 158 * Lexer -- removed "Exponent?" from FloatingPointLiteral choice 4, since it
174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
191 public static final int Exponent=18;
    [all...]
  /prebuilts/devtools/tools/lib/
jython-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 

Completed in 914 milliseconds