HomeSort by relevance Sort by last modified time
    Searched defs:asInt32 (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
JSValueInlineMethods.h 36 return asInt32();
48 return isInt32() && asInt32() >= 0;
54 return asInt32();
60 return isInt32() ? asInt32() : asDouble();
76 result = asInt32();
167 const int32_t asInt32 = static_cast<int32_t>(d);
168 if (asInt32 != d || (!asInt32 && signbit(d))) { // true for -0.0
314 inline int32_t JSValue::asInt32() const
441 inline int32_t JSValue::asInt32() cons
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGSpeculativeJIT.h 144 int32_t asInt32 = static_cast<int32_t>(value);
145 if (value != asInt32)
147 if (!asInt32 && signbit(value))
150 out = asInt32;
DFGNode.h 287 return m_constantValue.asInt32;
293 m_constantValue.asInt32 = value;
346 int32_t asInt32;
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.h 65 int32_t asInt32;
70 int32_t int32() { return asInt32; }

Completed in 630 milliseconds