Home
last modified time | relevance | path

Searched refs:moduleKey (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/PC/
Dimport_nt.c23 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/
DLLVMRoutine.hpp62 : entry(ent), dtor(callback), reactorJIT(jit), moduleKey(key)
77 uint64_t moduleKey;
DLLVMRoutine.cpp49 dtor(reactorJIT, moduleKey);
DLLVMReactor.cpp627 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);