Home
last modified time | relevance | path

Searched refs:posInf (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DTimeRanges.cpp68 double posInf = std::numeric_limits<double>::infinity(); in invert() local
72 inverted->add(negInf, posInf); in invert()
82 if (end != posInf) in invert()
83 inverted->add(end, posInf); in invert()
/external/chromium_org/third_party/WebKit/Source/wtf/
DMathExtras.h135 double posInf = std::numeric_limits<double>::infinity(); in wtf_atan2() local
141 if (x == posInf && y == posInf) in wtf_atan2()
143 else if (x == posInf && y == negInf) in wtf_atan2()
145 else if (x == negInf && y == posInf) in wtf_atan2()
/external/chromium_org/v8/test/webkit/fast/js/
Dnumber-toprecision.js33 var posInf = 1/0; variable
Dnumber-tofixed.js59 var posInf = 1/0; variable
Dnumber-toString.js24 var posInf = 1/0; variable
Dnumber-toprecision-expected.txt52 PASS (1234.567).toPrecision(posInf) threw exception RangeError: toPrecision() argument must be betw…
55 PASS posInf.toPrecision() is "Infinity"
Dnumber-tofixed-expected.txt76 PASS (1234.567).toFixed(posInf) threw exception RangeError: toFixed() digits argument must be betwe…
78 PASS posInf.toFixed() is "Infinity"
Dnumber-toString-expected.txt75 PASS (1234.567).toString(posInf) threw exception RangeError: toString() radix argument must be betw…
77 PASS posInf.toString() is "Infinity"
/external/chromium_org/v8/test/webkit/
Dnumber-toExponential.js24 var posInf = 1/0; variable
Dnumber-toExponential-expected.txt47 PASS (1234.567).toExponential(posInf) threw exception RangeError: toExponential() argument must be …
49 PASS posInf.toExponential() is "Infinity"
/external/valgrind/main/VEX/priv/
Dguest_generic_x87.c446 const ULong posInf = 0x7FF0000000000000ULL; in x86amd64g_calculate_FXTRACT() local
457 if (arg == posInf) in x86amd64g_calculate_FXTRACT()
458 return getExp ? posInf : posInf; in x86amd64g_calculate_FXTRACT()
460 return getExp ? posInf : negInf; in x86amd64g_calculate_FXTRACT()