v8
3.25.30(node0.11.13)
V8 is Google's open source JavaScript engine
|
Public Member Functions | |
virtual void * | Allocate (size_t length) |
virtual void * | AllocateUninitialized (size_t length) |
virtual void | Free (void *data, size_t) |
virtual void | Free (void *data) |
Public Member Functions inherited from ArrayBuffer::Allocator | |
virtual | ~Allocator () |
|
inlinevirtual |
Allocate |length| bytes. Return NULL if allocation is not successful. Memory should be initialized to zeroes.
Implements ArrayBuffer::Allocator.
|
inlinevirtual |
Allocate |length| bytes. Return NULL if allocation is not successful. Memory does not have to be initialized.
Implements ArrayBuffer::Allocator.
|
inlinevirtual |
Free the memory block of size |length|, pointed to by |data|. That memory is guaranteed to be previously allocated by |Allocate|.
Implements ArrayBuffer::Allocator.
|
inlinevirtual |
Definition at line 1657 of file d8.cc.
References UNREACHABLE.