Home
last modified time | relevance | path

Searched refs:allocateGlobal (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
DJITMemoryManagerTest.cpp162 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()
DJITTest.cpp119 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/
DLLVMRoutineManager.hpp43 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned int Alignment);
DLLVMRoutineManager.cpp107 uint8_t *LLVMRoutineManager::allocateGlobal(uintptr_t Size, unsigned Alignment) in allocateGlobal() function in rr::LLVMRoutineManager
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
DJITMemoryManager.h109 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_misc.cpp281 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/
DJITCodeEmitter.h276 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITEmitter.cpp415 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()
DJITMemoryManager.cpp440 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { in allocateGlobal() function in __anone29d22b10211::DefaultJITMemoryManager
DJIT.cpp810 Ptr = (char*)JCE->allocateGlobal(S, A); in getMemoryForGV()