Lines Matching refs:backing_store

763     free(phantom_array_buffer->backing_store());  in FreeArrayBuffer()
775 phantom_array_buffer->backing_store(), in FreeArrayBuffer()
900 uint8_t* source_data = reinterpret_cast<uint8_t*>(source->backing_store()); in RUNTIME_FUNCTION()
901 uint8_t* target_data = reinterpret_cast<uint8_t*>(target->backing_store()); in RUNTIME_FUNCTION()
919 if (array_buffer->backing_store() == NULL) { in RUNTIME_FUNCTION()
924 void* backing_store = array_buffer->backing_store(); in RUNTIME_FUNCTION() local
928 V8::ArrayBufferAllocator()->Free(backing_store, byte_length); in RUNTIME_FUNCTION()
1026 static_cast<uint8_t*>(buffer->backing_store()) + byte_offset); in RUNTIME_FUNCTION()
1129 static_cast<uint8_t*>(buffer->backing_store())); in RUNTIME_FUNCTION()
1138 uint8_t* backing_store = in RUNTIME_FUNCTION() local
1140 typed_array->GetBuffer()->backing_store()); in RUNTIME_FUNCTION()
1144 buffer->backing_store(), in RUNTIME_FUNCTION()
1145 backing_store + source_byte_offset, in RUNTIME_FUNCTION()
1228 target->GetBuffer()->backing_store()) + target_offset; in RUNTIME_FUNCTION()
1231 source->GetBuffer()->backing_store()) + source_offset; in RUNTIME_FUNCTION()
1247 target->GetBuffer()->backing_store() == in RUNTIME_FUNCTION()
1248 source->GetBuffer()->backing_store()); in RUNTIME_FUNCTION()
1362 static_cast<uint8_t*>(buffer->backing_store()) + buffer_offset; in DataViewGetValue()
1407 static_cast<uint8_t*>(buffer->backing_store()) + buffer_offset; in DataViewSetValue()
3195 explicit FixedArrayBuilder(Handle<FixedArray> backing_store) in FixedArrayBuilder() argument
3196 : array_(backing_store), in FixedArrayBuilder()
3201 DCHECK(backing_store->length() > 0); in FixedArrayBuilder()