Home
last modified time | relevance | path

Searched refs:FixedStringAllocator (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dstring-stream.h43 class FixedStringAllocator final : public StringAllocator {
45 FixedStringAllocator(char* buffer, unsigned length) in FixedStringAllocator() function
47 ~FixedStringAllocator() override{}; in ~FixedStringAllocator()
54 DISALLOW_COPY_AND_ASSIGN(FixedStringAllocator);
Dstring-stream.cc25 char* FixedStringAllocator::allocate(unsigned bytes) { in allocate()
31 char* FixedStringAllocator::grow(unsigned* old) { in grow()
/external/v8/src/heap/
Dheap.cc5218 FixedStringAllocator fixed(stats->js_stacktrace, kStacktraceBufferSize - 1); in RecordStats()