HomeSort by relevance Sort by last modified time
    Searched full:allocatespace (Results 1 - 14 of 14) sorted by null

  /external/v8/src/
v8threads.h 60 void AllocateSpace();
v8threads.cc 235 void ThreadState::AllocateSpace() {
261 new_thread_state->AllocateSpace();
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 253 /// allocateSpace - Allocate a block of space in the current output buffer,
256 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment) {
273 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
MachineCodeEmitter.h 253 /// allocateSpace - Allocate a block of space in the current output buffer,
256 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment) {
  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 104 /// allocateSpace - Allocate a memory block of the given size. This method
106 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) = 0;
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 408 /// allocateSpace - Reserves space in the current block if any, or
410 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment);
412 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
    [all...]
JITDwarfEmitter.cpp 490 JCE->allocateSpace(4, 0);
548 JCE->allocateSpace(4, 0);
JITMemoryManager.cpp 415 /// allocateSpace - Allocate a memory block of the given size. This method
417 uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) {
JIT.cpp 808 Ptr = (char*)JCE->allocateSpace(S, A);
  /frameworks/compile/libbcc/lib/CodeGen/
CodeMemoryManager.cpp 175 uint8_t *CodeMemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) {
CodeEmitter.h 191 // Allocate memory for a global. Unlike allocateSpace, this method does not
CodeMemoryManager.h 187 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment);
CodeEmitter.cpp 747 mpConstantPoolBase = allocateSpace(Size, Align);
793 mpJumpTableBase = allocateSpace(NumEntries * EntrySize,
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 116 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) {
117 return Base->allocateSpace(Size, Alignment);

Completed in 206 milliseconds