/third_party/node/deps/v8/include/ |
H A D | v8-array-buffer.h | 70 * Wrapper around ArrayBuffer::Allocator::Reallocate that preserves IsShared. 74 static std::unique_ptr<BackingStore> Reallocate( 155 * Reallocate the memory block of size |old_length| to a memory block of 166 virtual void* Reallocate(void* data, size_t old_length, size_t new_length);
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-array-buffer.h | 86 * Wrapper around ArrayBuffer::Allocator::Reallocate that preserves IsShared. 90 static std::unique_ptr<BackingStore> Reallocate( 171 * Reallocate the memory block of size |old_length| to a memory block of 182 virtual void* Reallocate(void* data, size_t old_length, size_t new_length);
|
/third_party/node/src/api/ |
H A D | environment.cc | 119 void* NodeArrayBufferAllocator::Reallocate( in Reallocate() function in node::NodeArrayBufferAllocator 121 void* ret = allocator_->Reallocate(data, old_size, size); in Reallocate() 156 void* DebuggingArrayBufferAllocator::Reallocate(void* data, in Reallocate() function in node::DebuggingArrayBufferAllocator 160 void* ret = NodeArrayBufferAllocator::Reallocate(data, old_size, size); in Reallocate()
|
/third_party/node/src/ |
H A D | node_internals.h | 110 void* Reallocate(void* data, size_t old_size, size_t size) override; 138 void* Reallocate(void* data, size_t old_size, size_t size) override;
|
H A D | stream_base.cc | 665 bs = BackingStore::Reallocate(isolate, std::move(bs), nread); in OnStreamRead()
|
H A D | udp_wrap.cc | 734 bs = BackingStore::Reallocate(isolate, std::move(bs), nread); in OnRecv()
|
H A D | node_buffer.cc | 327 store = BackingStore::Reallocate(isolate, std::move(store), actual); in New()
|
H A D | node_http2.cc | 1920 bs = BackingStore::Reallocate(env()->isolate(), std::move(bs), nread); in OnStreamRead()
|
/third_party/node/deps/v8/src/objects/ |
H A D | backing-store.h | 113 // Wrapper around ArrayBuffer::Allocator::Reallocate. 114 bool Reallocate(Isolate* isolate, size_t new_byte_length);
|
H A D | backing-store.cc | 809 bool BackingStore::Reallocate(Isolate* isolate, size_t new_byte_length) { in Reallocate() function in v8::internal::BackingStore 816 allocator->Reallocate(buffer_start_, byte_length_, new_byte_length); in Reallocate()
|
/third_party/node/src/crypto/ |
H A D | crypto_cipher.cc | 838 *out = BackingStore::Reallocate(env()->isolate(), std::move(*out), buf_len); in Init() 928 BackingStore::Reallocate(env()->isolate(), std::move(*out), out_len); in Init() 1031 *out = BackingStore::Reallocate(env->isolate(), std::move(*out), out_len); in Init()
|
H A D | crypto_sig.cc | 105 sig = BackingStore::Reallocate(env->isolate(), std::move(sig), sig_len); in ValidateDSAParameters()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 417 void* Reallocate(void* data, size_t old_length, size_t new_length) override { 4008 std::unique_ptr<v8::BackingStore> v8::BackingStore::Reallocate( in Reallocate() function in v8::v8::BackingStore 4014 "v8::BackingStore::Reallocate", "byte_lenght is too large"); in Reallocate() 4018 if (!i_backing_store->Reallocate(i_isolate, byte_length)) { in Reallocate() 4019 i::FatalProcessOutOfMemory(i_isolate, "v8::BackingStore::Reallocate"); in Reallocate() 7915 void* v8::ArrayBuffer::Allocator::Reallocate(void* data, size_t old_length, in Reallocate() function in v8::OneByteMask::__anon13987::MapAsArrayKind::v8::ArrayBuffer::Allocator
|