Searched refs:Allocate (Results 1 - 25 of 56) sorted by relevance

123

/external/v8/src/ia32/
H A Dregister-allocator-ia32.cc42 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate();
60 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate(target);
H A Dvirtual-frame-ia32.cc89 Result temp = cgen()->allocator()->Allocate();
183 // Allocate to a register.
188 Result fresh = cgen()->allocator()->Allocate();
511 Comment cmnt(masm(), "[ Allocate space for locals");
524 Result temp = cgen()->allocator()->Allocate();
533 Result cnt = cgen()->allocator()->Allocate();
534 Result tmp = cgen()->allocator()->Allocate();
565 Result temp = cgen()->allocator()->Allocate();
599 Result fresh = cgen()->allocator()->Allocate();
648 Result fresh = cgen()->allocator()->Allocate();
[all...]
H A Dcodegen-ia32.cc170 // Allocate space for locals and initialize them.
173 // Allocate the local context if needed.
177 // Allocate local context.
227 Result context = allocator_->Allocate();
231 Result scratch = allocator_->Allocate();
552 Result temp = allocator_->Allocate();
560 Result temp = allocator_->Allocate();
1216 Result fresh = allocator_->Allocate();
1220 fresh = allocator_->Allocate();
1235 quotient = allocator_->Allocate(ea
[all...]
/external/v8/src/x64/
H A Dregister-allocator-x64.cc42 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate();
55 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate(target);
H A Dvirtual-frame-x64.cc123 Comment cmnt(masm(), "[ Allocate space for locals");
143 Result cnt = cgen()->allocator()->Allocate();
173 Result temp = cgen()->allocator()->Allocate();
299 Result fresh = cgen()->allocator()->Allocate();
348 Result fresh = cgen()->allocator()->Allocate();
501 // Allocate to a register.
506 Result fresh = cgen()->allocator()->Allocate();
758 Result temp = cgen()->allocator()->Allocate();
783 // Allocate the original to a register.
785 Result temp = cgen()->allocator()->Allocate();
[all...]
H A Dcodegen-x64.cc322 // Allocate space for locals and initialize them.
325 // Allocate the local context if needed.
329 // Allocate local context.
379 Result context = allocator_->Allocate();
383 Result scratch = allocator_->Allocate();
818 // Slow-case: Allocate the arguments object since we know it isn't
2184 Result return_value = allocator_->Allocate(rax);
2389 Result boilerplate = allocator_->Allocate();
2555 Result scratch = allocator_->Allocate();
2721 // Allocate
[all...]
/external/v8/src/
H A Dregister-allocator.cc86 Result RegisterAllocator::Allocate() { function in class:v8::internal::RegisterAllocator
101 Result RegisterAllocator::Allocate(Register target) { function in class:v8::internal::RegisterAllocator
H A Dregister-allocator.h265 // Allocate a free register and return a register result if possible or
267 Result Allocate();
269 // Allocate a specific register if possible, spilling it from the
272 Result Allocate(Register target);
274 // Allocate a free register without spilling any from the current
278 // Allocate a free byte register without spilling any from the current
H A Dglobal-handles.cc225 Node* Allocate() { function in class:v8::internal::BASE_EMBEDDED
285 // Allocate a new node.
286 result = pool_.Allocate();
H A Dheap.cc1264 // Allocate the empty array
1269 obj = Allocate(oddball_map(), OLD_DATA_SPACE);
1273 // Allocate the empty descriptor array.
1462 Object* result = Allocate(map, OLD_DATA_SPACE);
1549 obj = Allocate(oddball_map(), OLD_DATA_SPACE);
1554 // Allocate initial symbol table.
1555 obj = SymbolTable::Allocate(kInitialSymbolTableSize);
1572 // Allocate the null_value
1597 // Allocate the empty string.
1608 // Allocate th
2257 Object* Heap::Allocate(Map* map, AllocationSpace space) { function in class:v8::internal::Heap
[all...]
H A Dserialize.h281 Address Allocate(int space_number, Space* space, int size);
458 int Allocate(int space, int size, bool* new_page_started);
H A Dfactory.cc54 CALL_HEAP_FUNCTION(StringDictionary::Allocate(at_least_space_for),
61 CALL_HEAP_FUNCTION(NumberDictionary::Allocate(at_least_space_for),
68 CALL_HEAP_FUNCTION(DescriptorArray::Allocate(number_of_descriptors),
472 // Allocate the function
529 // Allocate the function
573 // Allocate the new array.
741 // Allocate initial fixed array for active break points before allocating the
874 CALL_HEAP_FUNCTION(MapCache::Allocate(at_least_space_for), MapCache);
897 // Allocate the new map cache for the global context.
H A Dplatform-nullos.cc181 void* OS::Allocate(const size_t requested, function in class:v8::internal::OS
H A Dplatform.h179 // Allocate/Free memory used by JS heap. Pages are readable/writable, but
182 static void* Allocate(const size_t requested,
186 // Get the Alignment guaranteed by Allocate().
196 // has been allocated by Allocate(). This method may conservatively
H A Dserialize.cc518 Address Deserializer::Allocate(int space_index, Space* space, int size) { function in class:v8::internal::Deserializer
647 Address address = Allocate(space_number, space, size);
1178 int offset = serializer_->Allocate(space, size, &start_new_page);
1333 int Serializer::Allocate(int space, int size, bool* new_page) { function in class:v8::internal::Serializer
/external/v8/test/cctest/
H A Dtest-assembler-x64.cc83 // Allocate an executable page of memory.
85 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
104 // Allocate an executable page of memory.
106 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
135 // Allocate an executable page of memory.
137 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
156 // Allocate an executable page of memory.
158 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
183 // Allocate an executable page of memory.
185 byte* buffer = static_cast<byte*>(OS::Allocate(Assemble
[all...]
H A Dtest-macro-assembler-x64.cc129 // Allocate an executable page of memory.
131 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
213 // Allocate an executable page of memory.
216 static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
261 // Allocate an executable page of memory.
263 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
386 // Allocate an executable page of memory.
388 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize,
427 // Allocate an executable page of memory.
429 byte* buffer = static_cast<byte*>(OS::Allocate(Assemble
[all...]
/external/opencore/nodes/streaming/jitterbuffernode/jitterbuffer/common/src/
H A Dpvmf_jb_firewall_pkts_impl.cpp98 bool PVFirewallPacketExchanger::Allocate(PVMFSharedMediaDataPtr& aFireWallPkt, OsclSharedPtr<PVMFMediaDataImpl>& aMediaDataImpl, const int aSize) function in class:PVFirewallPacketExchanger
121 bool retval = Allocate(fireWallPkt, mediaDataImpl, PVMF_JITTER_BUFFER_NODE_MAX_FIREWALL_PKT_SIZE);
143 bool retval = Allocate(fireWallPkt, mediaDataImpl, PVMF_JITTER_BUFFER_NODE_MAX_RTP_FIREWALL_PKT_SIZE);
/external/opencore/nodes/streaming/jitterbuffernode/jitterbuffer/common/include/
H A Dpvmf_jb_firewall_pkts_impl.h107 bool Allocate(PVMFSharedMediaDataPtr& aFireWallPkt, OsclSharedPtr<PVMFMediaDataImpl>& aMediaDataImpl, const int aSize);
/external/stlport/test/eh/
H A Dnc_alloc.cpp115 static void *Allocate(size_t s) { function in class:FastAllocator
175 char * const p = (char*)gFastAllocator.Allocate( s );
/external/opencore/pvmi/pvmf/include/
H A Dpvmf_node_utils.h110 OsclAny* Allocate() function in class:PVMFPortVector
417 static OsclAny* Allocate() function in class:PVMFGenericNodeCommand
/external/libffi/src/s390/
H A Dsysv.S55 ahi %r15,-96-48 # Allocate stack
257 aghi %r15,-160-80 # Allocate stack
/external/opencore/nodes/streaming/medialayernode/include/
H A Dpvmf_medialayer_node.h404 bool Allocate(OsclSharedPtr<PVMFMediaDataImpl>& mediaDataImplOut, PVMFMediaLayerPortContainer* poutPort);
405 bool Allocate(OsclAny*& ptr);
/external/opencore/nodes/streaming/jitterbuffernode/include/
H A Dpvmf_jitter_buffer_node.h445 bool Allocate(PVMFJitterBufferPortParams* it, PVMFSharedMediaDataPtr& fireWallPkt, OsclSharedPtr<PVMFMediaDataImpl>& mediaDataImpl, const int size);
/external/opencore/protocols/systems/3g-324m_pvterminal/h324/srp/include/
H A Dsrp.h352 bool Allocate(OsclSharedPtr<PVMFMediaDataImpl>& data, OsclRefCounterMemFrag& CCSRLFrag);

Completed in 323 milliseconds

123