HomeSort by relevance Sort by last modified time
    Searched refs:routineCache (Results 1 - 12 of 12) sorted by null

  /external/swiftshader/src/Device/
SetupProcessor.cpp 62 routineCache = nullptr;
68 delete routineCache;
69 routineCache = nullptr;
149 Routine *routine = routineCache->query(state);
158 routineCache->add(state, routine);
166 delete routineCache;
167 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536), precacheSetup ? "sw-setup" : 0);
SetupProcessor.hpp 19 #include "RoutineCache.hpp"
89 RoutineCache<State> *routineCache;
VertexProcessor.cpp 84 routineCache = nullptr;
90 delete routineCache;
91 routineCache = nullptr;
385 delete routineCache;
386 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536), precacheVertex ? "sw-vertex" : 0);
444 Routine *routine = routineCache->query(state);
453 routineCache->add(state, routine);
PixelProcessor.cpp 70 routineCache = nullptr;
76 delete routineCache;
77 routineCache = nullptr;
620 delete routineCache;
621 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536), precachePixel ? "sw-pixel" : 0);
770 Routine *routine = routineCache->query(state);
780 routineCache->add(state, routine);
VertexProcessor.hpp 20 #include "RoutineCache.hpp"
209 RoutineCache<State> *routineCache;
PixelProcessor.hpp 19 #include "RoutineCache.hpp"
286 RoutineCache<State> *routineCache;
  /external/swiftshader/src/Renderer/
SetupProcessor.cpp 62 routineCache = 0;
68 delete routineCache;
69 routineCache = 0;
228 Routine *routine = routineCache->query(state);
237 routineCache->add(state, routine);
245 delete routineCache;
246 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536), precacheSetup ? "sw-setup" : 0);
SetupProcessor.hpp 19 #include "RoutineCache.hpp"
101 RoutineCache<State> *routineCache;
VertexProcessor.cpp 121 routineCache = 0;
127 delete routineCache;
128 routineCache = 0;
901 delete routineCache;
902 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536), precacheVertex ? "sw-vertex" : 0);
1094 Routine *routine = routineCache->query(state);
1113 routineCache->add(state, routine);
PixelProcessor.cpp 75 routineCache = 0;
81 delete routineCache;
82 routineCache = 0;
935 delete routineCache;
936 routineCache = new RoutineCache<State>(clamp(cacheSize, 1, 65536), precachePixel ? "sw-pixel" : 0);
    [all...]
VertexProcessor.hpp 20 #include "RoutineCache.hpp"
331 RoutineCache<State> *routineCache;
PixelProcessor.hpp 19 #include "RoutineCache.hpp"
338 RoutineCache<State> *routineCache;

Completed in 438 milliseconds