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

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
SimpleCache.java 27 private int mMaxEntries;
31 mMaxEntries = maxEntries;
36 return super.size() > mMaxEntries;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 112 private int mMaxEntries;
212 mMaxEntries = readInt(buf, IH_MAX_ENTRIES);
225 if (mMaxEntries <= 0) {
237 if (mActiveEntries < 0 || mActiveEntries > mMaxEntries) {
246 INDEX_HEADER_SIZE + mMaxEntries * 12 * 2) {
294 mInactiveHashStart += mMaxEntries * 12;
296 mActiveHashStart += mMaxEntries * 12;
354 for (int count = mMaxEntries * 12; count > 0;) {
368 || mActiveEntries * 2 >= mMaxEntries) {
461 || mActiveEntries * 2 >= mMaxEntries) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
BlobCache.java 113 private int mMaxEntries;
213 mMaxEntries = readInt(buf, IH_MAX_ENTRIES);
226 if (mMaxEntries <= 0) {
238 if (mActiveEntries < 0 || mActiveEntries > mMaxEntries) {
247 INDEX_HEADER_SIZE + mMaxEntries * 12 * 2) {
295 mInactiveHashStart += mMaxEntries * 12;
297 mActiveHashStart += mMaxEntries * 12;
355 for (int count = mMaxEntries * 12; count > 0;) {
369 || mActiveEntries * 2 >= mMaxEntries) {
452 || mActiveEntries * 2 >= mMaxEntries) {
    [all...]

Completed in 76 milliseconds