Searched refs:allocateGlobal (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/ |
D | JITMemoryManagerTest.cpp | 162 uint8_t *a = (uint8_t *)MemMgr->allocateGlobal(8, 0); in TEST() 163 uint16_t *b = (uint16_t*)MemMgr->allocateGlobal(16, 2); in TEST() 164 uint32_t *c = (uint32_t*)MemMgr->allocateGlobal(32, 4); in TEST() 165 uint64_t *d = (uint64_t*)MemMgr->allocateGlobal(64, 8); in TEST() 210 uint64_t *a = (uint64_t*)MemMgr->allocateGlobal(64, 8); in TEST() 211 uint8_t *g = MemMgr->allocateGlobal(Size, 8); in TEST() 212 uint64_t *b = (uint64_t*)MemMgr->allocateGlobal(64, 8); in TEST() 248 MemMgr->allocateGlobal(Size, 8); in TEST() 253 MemMgr->allocateGlobal(Size, 8); in TEST()
|
D | JITTest.cpp | 119 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in __anona47825790111::RecordingJITMemoryManager 120 return Base->allocateGlobal(Size, Alignment); in allocateGlobal()
|
/external/swiftshader/src/Reactor/ |
D | LLVMRoutineManager.hpp | 43 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned int Alignment);
|
D | LLVMRoutineManager.cpp | 107 uint8_t *LLVMRoutineManager::allocateGlobal(uintptr_t Size, unsigned Alignment) in allocateGlobal() function in rr::LLVMRoutineManager
|
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/ |
D | JITMemoryManager.h | 109 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_misc.cpp | 281 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in DelegatingJITMemoryManager 282 return mgr()->allocateGlobal(Size, Alignment); in allocateGlobal()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | JITCodeEmitter.h | 276 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JITEmitter.cpp | 415 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment); 1062 void* JITEmitter::allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in JITEmitter 1064 return MemMgr->allocateGlobal(Size, Alignment); in allocateGlobal()
|
D | JITMemoryManager.cpp | 440 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in __anone29d22b10211::DefaultJITMemoryManager
|
D | JIT.cpp | 810 Ptr = (char*)JCE->allocateGlobal(S, A); in getMemoryForGV()
|