HomeSort by relevance Sort by last modified time
    Searched refs:allocator_ (Results 1 - 18 of 18) sorted by null

  /external/v8/src/
hashmap.cc 39 allocator_ = NULL;
47 allocator_ = allocator;
54 if (allocator_) {
55 allocator_->Delete(map_);
196 map_ = reinterpret_cast<Entry*>(allocator_->New(capacity * sizeof(Entry)));
222 allocator_->Delete(map);
string-stream.h 115 allocator_(allocator),
118 buffer_(allocator_->allocate(kInitialCapacity)) {
175 StringAllocator* allocator_; member in class:v8::internal::StringStream
hashmap.h 105 Allocator* allocator_; member in class:v8::internal::HashMap
codegen.cc 126 allocator_->SaveTo(&saved_counts);
131 allocator_->RestoreFrom(non_frame_registers);
string-stream.cc 62 char* new_buffer = allocator_->grow(&new_capacity);
  /external/webkit/JavaScriptCore/wtf/
TCPageMap.h 117 void* (*allocator_)(size_t); // Memory allocator member in class:TCMalloc_PageMap2
123 allocator_ = allocator;
147 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf)));
211 void* (*allocator_)(size_t); // Memory allocator member in class:TCMalloc_PageMap3
214 Node* result = reinterpret_cast<Node*>((*allocator_)(sizeof(Node)));
225 allocator_ = allocator;
259 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf)));
  /external/chromium/base/
stack_container.h 137 StackContainer() : allocator_(&stack_data_), container_(allocator_) {
168 Allocator allocator_; member in class:StackContainer
  /external/qemu/elff/
elf_file.cc 43 allocator_(NULL),
71 if (allocator_ != NULL) {
72 delete allocator_;
143 allocator_ = new ElfAllocator();
144 assert(allocator_ != NULL);
145 if (allocator_ == NULL) {
elf_file.h 87 return allocator_;
520 class ElfAllocator* allocator_;
  /external/v8/src/mips/
codegen-mips.h 144 RegisterAllocator* allocator() const { return allocator_; }
287 RegisterAllocator* allocator_; member in class:v8::internal::CodeGenerator
codegen-mips.cc 71 allocator_(NULL),
  /external/v8/src/arm/
codegen-arm.h 191 RegisterAllocator* allocator() const { return allocator_; }
431 RegisterAllocator* allocator_; member in class:v8::internal::CodeGenerator
codegen-arm.cc 129 allocator_(NULL),
151 ASSERT(allocator_ == NULL);
153 allocator_ = &register_allocator;
167 allocator_->Initialize();
278 allocator_->Unuse(r1);
279 allocator_->Unuse(lr);
395 allocator_ = NULL;
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 254 allocator_(NULL),
286 ASSERT(allocator_ == NULL);
288 allocator_ = &register_allocator;
317 allocator_->Initialize();
379 Result context = allocator_->Allocate();
383 Result scratch = allocator_->Allocate();
409 allocator_->Unuse(rdi);
506 allocator_ = NULL;
    [all...]
codegen-x64.h 330 RegisterAllocator* allocator() const { return allocator_; }
611 RegisterAllocator* allocator_; member in class:v8::internal::CodeGenerator
  /external/v8/src/ia32/
codegen-ia32.h 330 RegisterAllocator* allocator() const { return allocator_; }
627 RegisterAllocator* allocator_; member in class:v8::internal::CodeGenerator
    [all...]
codegen-ia32.cc 111 allocator_(NULL),
134 ASSERT(allocator_ == NULL);
136 allocator_ = &register_allocator;
165 allocator_->Initialize();
227 Result context = allocator_->Allocate();
231 Result scratch = allocator_->Allocate();
257 allocator_->Unuse(edi);
354 allocator_ = NULL;
552 Result temp = allocator_->Allocate();
560 Result temp = allocator_->Allocate()
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 317 RetainerProfilePrinter() : stream_(&allocator_), lines_(100) {}
351 i::HeapStringAllocator allocator_; member in class:__anon7840::RetainerProfilePrinter

Completed in 256 milliseconds