Home
last modified time | relevance | path

Searched refs:ProgramCache (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dprogram_cache.h35 class ProgramCache {
37 ProgramCache() = default;
39 ProgramCache(ProgramCache&& program_cache);
40 ProgramCache& operator=(ProgramCache&& program_cache);
41 ProgramCache(const ProgramCache&) = delete;
42 ProgramCache& operator=(const ProgramCache&) = delete;
Dprogram_cache.cc32 ProgramCache::ProgramDescriptor::ProgramDescriptor(const std::string& code_text, in ProgramDescriptor()
44 ProgramCache::ProgramDescriptor::ProgramDescriptor(uint64_t fingerprints) in ProgramDescriptor()
47 ProgramCache::ProgramCache(ProgramCache&& program_cache) in ProgramCache() function in tflite::gpu::cl::ProgramCache
51 ProgramCache& ProgramCache::operator=(ProgramCache&& program_cache) { in operator =()
59 absl::Status ProgramCache::GetOrCreateCLKernel( in GetOrCreateCLKernel()
78 absl::Status ProgramCache::GetOrCreateCLKernel(const std::string& code, in GetOrCreateCLKernel()
86 absl::Status ProgramCache::AddSerializedCache( in AddSerializedCache()
122 absl::Status ProgramCache::GetSerializedCache( in GetSerializedCache()
Denvironment.h52 ProgramCache* program_cache() { return &program_cache_; } in program_cache()
53 const ProgramCache* program_cache() const { return &program_cache_; } in program_cache()
75 ProgramCache program_cache_;
Dcl_operation.h39 ProgramCache* cache;
/external/skia/src/gpu/gl/
DGrGLGpuProgramCache.cpp20 struct GrGLGpu::ProgramCache::Entry {
31 GrGLGpu::ProgramCache::ProgramCache(int runtimeProgramCacheSize) in ProgramCache() function in GrGLGpu::ProgramCache
35 GrGLGpu::ProgramCache::~ProgramCache() {} in ~ProgramCache()
37 void GrGLGpu::ProgramCache::abandon() { in abandon()
47 void GrGLGpu::ProgramCache::reset() { in reset()
51 sk_sp<GrGLProgram> GrGLGpu::ProgramCache::findOrCreateProgram(GrDirectContext* dContext, in findOrCreateProgram()
72 sk_sp<GrGLProgram> GrGLGpu::ProgramCache::findOrCreateProgram(GrDirectContext* dContext, in findOrCreateProgram()
86 sk_sp<GrGLProgram> GrGLGpu::ProgramCache::findOrCreateProgramImpl(GrDirectContext* dContext, in findOrCreateProgramImpl()
121 bool GrGLGpu::ProgramCache::precompileShader(GrDirectContext* dContext, in precompileShader()
DGrGLGpu.h361 class ProgramCache : public GrThreadSafePipelineBuilder {
363 ProgramCache(int runtimeProgramCacheSize);
364 ~ProgramCache() override;
515 sk_sp<ProgramCache> fProgramCache;
DGrGLGpu.cpp342 , fProgramCache(new ProgramCache(dContext->priv().options().fRuntimeProgramCacheSize)) in GrGLGpu()
/external/skqp/src/gpu/gl/
DGrGLGpuProgramCache.cpp25 struct GrGLGpu::ProgramCache::Entry {
31 GrGLGpu::ProgramCache::ProgramCache(GrGLGpu* gpu) in ProgramCache() function in GrGLGpu::ProgramCache
41 GrGLGpu::ProgramCache::~ProgramCache() { in ~ProgramCache()
58 void GrGLGpu::ProgramCache::abandon() { in abandon()
71 GrGLProgram* GrGLGpu::ProgramCache::refProgram(GrGLGpu* gpu, in refProgram()
DGrGLGpu.h301 class ProgramCache : public ::SkNoncopyable {
303 ProgramCache(GrGLGpu* gpu);
304 ~ProgramCache();
421 ProgramCache* fProgramCache;
DGrGLGpu.cpp335 , fProgramCache(new ProgramCache(this)) in GrGLGpu()
/external/rust/crates/regex/src/
Dpool.rs287 use exec::ProgramCache; in oibits()
290 has_oibits::<Pool<ProgramCache>>(); in oibits()
Dbacktrack.rs19 use exec::ProgramCache;
86 cache: &ProgramCache, in exec() argument
Dpikevm.rs20 use exec::ProgramCache;
90 cache: &ProgramCache, in exec() argument
Ddfa.rs45 use exec::ProgramCache;
449 cache: &ProgramCache, in forward() argument
479 cache: &ProgramCache, in reverse() argument
509 cache: &ProgramCache, in forward_many() argument
Dexec.rs46 pool: Box<Pool<ProgramCache>>,
57 cache: PoolGuard<'c, ProgramCache>,
1456 fn new_pool(ro: &Arc<ExecReadOnly>) -> Box<Pool<ProgramCache>> { in new_pool() argument
1524 pub type ProgramCache = AssertUnwindSafe<RefCell<ProgramCacheInner>>; typedef