Home
last modified time | relevance | path

Searched refs:allocateGlobal (Results 1 – 9 of 9) 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 __anon1b8d59500111::RecordingJITMemoryManager
120 return Base->allocateGlobal(Size, Alignment); in allocateGlobal()
/external/swiftshader/src/Reactor/
DRoutineManager.hpp41 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned int Alignment);
DRoutineManager.cpp105 uint8_t *RoutineManager::allocateGlobal(uintptr_t Size, unsigned Alignment) in allocateGlobal() function in sw::RoutineManager
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
DJITMemoryManager.h109 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
/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 __anon99ff5b280211::DefaultJITMemoryManager
DJIT.cpp810 Ptr = (char*)JCE->allocateGlobal(S, A); in getMemoryForGV()