Searched refs:moduleKey (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/PC/ |
D | import_nt.c | 23 char *moduleKey; in PyWin_FindRegisteredModule() local 51 moduleKey = alloca(bufSize); in PyWin_FindRegisteredModule() 52 PyOS_snprintf(moduleKey, bufSize, in PyWin_FindRegisteredModule() 58 regStat = RegQueryValue(keyBase, moduleKey, pathBuf, &modNameSize); in PyWin_FindRegisteredModule() 64 regStat = RegQueryValue(keyBase, moduleKey, in PyWin_FindRegisteredModule()
|
/external/swiftshader/src/Reactor/ |
D | LLVMRoutine.hpp | 62 : entry(ent), dtor(callback), reactorJIT(jit), moduleKey(key) 77 uint64_t moduleKey;
|
D | LLVMRoutine.cpp | 49 dtor(reactorJIT, moduleKey);
|
D | LLVMReactor.cpp | 627 auto moduleKey = session.allocateVModule(); 628 llvm::cantFail(compileLayer.addModule(moduleKey, std::move(mod))); 636 llvm::JITSymbol symbol = compileLayer.findSymbolIn(moduleKey, mangledName, false); 645 return new LLVMRoutine(addr, releaseRoutineCallback, this, moduleKey); 678 void releaseRoutineModule(llvm::orc::VModuleKey moduleKey) 680 llvm::cantFail(compileLayer.removeModule(moduleKey)); 683 static void releaseRoutineCallback(LLVMReactorJIT *jit, uint64_t moduleKey) 685 jit->releaseRoutineModule(moduleKey);
|