Home
last modified time | relevance | path

Searched refs:Reallocate (Results 1 - 13 of 13) sorted by relevance

/third_party/node/deps/v8/include/
H A Dv8-array-buffer.h70 * 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 Dv8-array-buffer.h86 * 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 Denvironment.cc119 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 Dnode_internals.h110 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 Dstream_base.cc665 bs = BackingStore::Reallocate(isolate, std::move(bs), nread); in OnStreamRead()
H A Dudp_wrap.cc734 bs = BackingStore::Reallocate(isolate, std::move(bs), nread); in OnRecv()
H A Dnode_buffer.cc327 store = BackingStore::Reallocate(isolate, std::move(store), actual); in New()
H A Dnode_http2.cc1920 bs = BackingStore::Reallocate(env()->isolate(), std::move(bs), nread); in OnStreamRead()
/third_party/node/deps/v8/src/objects/
H A Dbacking-store.h113 // Wrapper around ArrayBuffer::Allocator::Reallocate.
114 bool Reallocate(Isolate* isolate, size_t new_byte_length);
H A Dbacking-store.cc809 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 Dcrypto_cipher.cc838 *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 Dcrypto_sig.cc105 sig = BackingStore::Reallocate(env->isolate(), std::move(sig), sig_len); in ValidateDSAParameters()
/third_party/node/deps/v8/src/api/
H A Dapi.cc417 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

Completed in 68 milliseconds