Searched defs:floatLength (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DSerializedScriptValue.cpp1822 uint32_t floatLength = byteLength / sizeof(float); local
1823 if (floatLength * sizeof(float) != byteLength)
1825 *value = toV8(Float32Array::create(arrayBuffer.release(), byteOffset, floatLength), v8::Handle<v8::Object>(), m_isolate);
1829 uint32_t floatLength = byteLength / sizeof(double); local
1830 if (floatLength * sizeof(double) != byteLength)
1832 *value = toV8(Float64Array::create(arrayBuffer.release(), byteOffset, floatLength), v8::Handle<v8::Object>(), m_isolate);

Completed in 59 milliseconds