Home
last modified time | relevance | path

Searched refs:typed_array (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/runtime/
Druntime-maths.cc261 Handle<JSTypedArray> typed_array; in RUNTIME_FUNCTION() local
264 typed_array = Handle<JSTypedArray>::cast(maybe_typed_array); in RUNTIME_FUNCTION()
271 typed_array = isolate->factory()->NewJSTypedArray( in RUNTIME_FUNCTION()
277 reinterpret_cast<double*>(typed_array->GetBuffer()->backing_store()); in RUNTIME_FUNCTION()
295 return *typed_array; in RUNTIME_FUNCTION()
Druntime-typedarray.cc251 Handle<JSTypedArray> typed_array(JSTypedArray::cast(*source)); in RUNTIME_FUNCTION() local
253 if (typed_array->type() == holder->type()) { in RUNTIME_FUNCTION()
255 static_cast<uint8_t*>(typed_array->GetBuffer()->backing_store()); in RUNTIME_FUNCTION()
257 NumberToSize(isolate, typed_array->byte_offset()); in RUNTIME_FUNCTION()
/external/v8/src/
Dobjects.cc19559 Handle<JSTypedArray> typed_array) { in MaterializeArrayBuffer() argument
19561 Handle<Map> map(typed_array->map()); in MaterializeArrayBuffer()
19562 Isolate* isolate = typed_array->GetIsolate(); in MaterializeArrayBuffer()
19567 FixedTypedArrayBase::cast(typed_array->elements())); in MaterializeArrayBuffer()
19569 Handle<JSArrayBuffer> buffer(JSArrayBuffer::cast(typed_array->buffer()), in MaterializeArrayBuffer()
19589 fixed_typed_array->length(), typed_array->type(), in MaterializeArrayBuffer()
19592 typed_array->set_elements(*new_elements); in MaterializeArrayBuffer()
Dapi.cc6650 i::Handle<i::JSTypedArray> typed_array(i::JSTypedArray::cast(*self)); in CopyContents() local
6652 i::FixedTypedArrayBase::cast(typed_array->elements())); in CopyContents()
Dobjects.h10042 Handle<JSTypedArray> typed_array);