Searched refs:posInf (Results 1 - 7 of 7) sorted by relevance

/external/v8/test/webkit/fast/js/
H A Dnumber-toprecision.js33 var posInf = 1/0; variable
59 shouldThrow("(1234.567).toPrecision(posInf)");
63 shouldBeEqualToString("posInf.toPrecision()", "Infinity");
H A Dnumber-tofixed.js59 var posInf = 1/0; variable
97 shouldThrow("(1234.567).toFixed(posInf)");
100 shouldBeEqualToString("posInf.toFixed()", "Infinity");
H A Dnumber-toString.js24 var posInf = 1/0; variable
86 shouldThrow("(1234.567).toString(posInf)");
89 shouldBeEqualToString("posInf.toString()", "Infinity");
/external/v8/test/webkit/
H A Dnumber-toExponential.js24 var posInf = 1/0; variable
60 shouldThrow("(1234.567).toExponential(posInf)");
63 shouldBeEqualToString("posInf.toExponential()", "Infinity");
/external/valgrind/VEX/priv/
H A Dguest_generic_x87.c446 const ULong posInf = 0x7FF0000000000000ULL; local
457 if (arg == posInf)
458 return getExp ? posInf : posInf;
460 return getExp ? posInf : negInf;
/external/v8/src/mips/
H A Dsimulator-mips.cc2739 bool posInf = (classed == 0x7FF0000000000000); local
2753 if (!negInf && !posInf && exponent == 0x7ff) {
2771 if (!posSubnorm && !negSubnorm && !posInf && !negInf && !signalingNan &&
2780 (posInf << 6) | (negZero << 5) | (negSubnorm << 4) |
3025 bool posInf = (classed == 0x7F800000); local
3039 if (!negInf && !posInf && (exponent == 0xff)) {
3057 if (!posSubnorm && !negSubnorm && !posInf && !negInf && !signalingNan &&
3066 (posInf << 6) | (negZero << 5) | (negSubnorm << 4) |
/external/v8/src/mips64/
H A Dsimulator-mips64.cc2556 bool posInf = (classed == 0x7F800000); local
2570 if (!negInf && !posInf && (exponent == 0xff)) {
2588 if (!posSubnorm && !negSubnorm && !posInf && !negInf && !signalingNan &&
2597 (posInf << 6) | (negZero << 5) | (negSubnorm << 4) |
3059 bool posInf = (classed == 0x7FF0000000000000); local
3073 if (!negInf && !posInf && exponent == 0x7ff) {
3091 if (!posSubnorm && !negSubnorm && !posInf && !negInf && !signalingNan &&
3100 (posInf << 6) | (negZero << 5) | (negSubnorm << 4) |

Completed in 113 milliseconds