Home
last modified time | relevance | path

Searched refs:RoutineCache (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/src/Device/
DRoutineCache.hpp27 using RoutineCache = LRUCache<State, RoutineT<FunctionType>>; typedef
DBlitter.hpp195 RoutineCache<State, BlitFunction::CFunctionType> blitCache GUARDED_BY(blitMutex);
198RoutineCache<State, CornerUpdateFunction::CFunctionType> cornerUpdateCache GUARDED_BY(cornerUpdate…
DSetupProcessor.hpp85 using RoutineCacheType = RoutineCache<State, SetupFunction::CFunctionType>;
DVertexProcessor.hpp104 using RoutineCacheType = RoutineCache<State, VertexRoutineFunction::CFunctionType>;
DCMakeLists.txt44 RoutineCache.hpp
DPixelProcessor.hpp165 using RoutineCacheType = RoutineCache<State, RasterizerFunction::CFunctionType>;
/external/swiftshader/src/Renderer/
DRoutineCache.hpp27 using RoutineCache = LRUCache<State, std::shared_ptr<Routine>>; typedef
DSetupProcessor.hpp101 RoutineCache<State> *routineCache;
DBlitter.hpp117 RoutineCache<State> *blitCache;
DCMakeLists.txt53 RoutineCache.hpp
DSetupProcessor.cpp244 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536)); in setRoutineCacheSize()
DVertexProcessor.hpp333 RoutineCache<State> *routineCache;
DPixelProcessor.hpp341 RoutineCache<State> *routineCache;
DVertexProcessor.cpp911 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536)); in setRoutineCacheSize()
DPixelProcessor.cpp945 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536)); in setRoutineCacheSize()
DBlitter.cpp28 blitCache = new RoutineCache<State>(1024); in Blitter()