OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RoutineCache
(Results
1 - 18
of
18
) sorted by null
/external/swiftshader/src/Device/
RoutineCache.hpp
27
class
RoutineCache
: public LRUCache<State, Routine>
30
RoutineCache
(int n, const char *precache = 0);
31
~
RoutineCache
();
41
RoutineCache
<State>::
RoutineCache
(int n, const char *precache) : LRUCache<State, Routine>(n), precache(precache)
46
RoutineCache
<State>::~
RoutineCache
()
SetupProcessor.hpp
19
#include "
RoutineCache
.hpp"
89
RoutineCache
<State> *
routineCache
;
Blitter.hpp
19
#include "
RoutineCache
.hpp"
116
RoutineCache
<State> *blitCache;
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);
VertexProcessor.hpp
20
#include "
RoutineCache
.hpp"
209
RoutineCache
<State> *
routineCache
;
PixelProcessor.hpp
19
#include "
RoutineCache
.hpp"
286
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);
Blitter.cpp
26
blitCache = new
RoutineCache
<State>(1024);
[
all
...]
/external/swiftshader/src/Renderer/
RoutineCache.hpp
27
class
RoutineCache
: public LRUCache<State, Routine>
30
RoutineCache
(int n, const char *precache = nullptr);
31
~
RoutineCache
();
41
RoutineCache
<State>::
RoutineCache
(int n, const char *precache) : LRUCache<State, Routine>(n), precache(precache)
46
RoutineCache
<State>::~
RoutineCache
()
SetupProcessor.hpp
19
#include "
RoutineCache
.hpp"
101
RoutineCache
<State> *
routineCache
;
Blitter.hpp
19
#include "
RoutineCache
.hpp"
116
RoutineCache
<State> *blitCache;
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);
VertexProcessor.hpp
20
#include "
RoutineCache
.hpp"
331
RoutineCache
<State> *
routineCache
;
PixelProcessor.hpp
19
#include "
RoutineCache
.hpp"
338
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
...]
Blitter.cpp
28
blitCache = new
RoutineCache
<State>(1024);
[
all
...]
Completed in 1321 milliseconds