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

  /frameworks/ml/nn/driver/cache/nnCache/
nnCache.h 118 // mMaxValueSize is the maximum value size that will be cached.
119 size_t mMaxValueSize;
nnCache.cpp 44 mMaxKeySize(0), mMaxValueSize(0), mMaxTotalSize(0),
63 mMaxValueSize = maxValueSize;
142 mBlobCache.reset(new BlobCache(mMaxKeySize, mMaxValueSize, mMaxTotalSize, mPolicy));
  /frameworks/native/opengl/libs/EGL/
BlobCache.h 218 // mMaxValueSize is the maximum value size that will be cached. Calls to
219 // BlobCache::set with a valueSize parameter larger than mMaxValueSize will
221 const size_t mMaxValueSize;
BlobCache.cpp 40 mMaxValueSize(maxValueSize),
61 if (mMaxValueSize < valueSize) {
63 valueSize, mMaxValueSize);
  /frameworks/ml/nn/driver/cache/BlobCache/
BlobCache.cpp 62 mMaxValueSize(maxValueSize),
86 if (mMaxValueSize < valueSize) {
88 valueSize, mMaxValueSize);
BlobCache.h 314 // mMaxValueSize is the maximum value size that will be cached. Calls to
315 // BlobCache::set with a valueSize parameter larger than mMaxValueSize will
317 const size_t mMaxValueSize;

Completed in 2093 milliseconds