HomeSort by relevance Sort by last modified time
    Searched defs:allocateSpace (Results 1 - 6 of 6) sorted by null

  /frameworks/compile/libbcc/lib/CodeGen/
CodeMemoryManager.cpp 175 uint8_t *CodeMemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) {
  /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/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 415 /// allocateSpace - Allocate a memory block of the given size. This method
417 uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) {
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...]
  /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 235 milliseconds