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

  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewModel.java 48 private static final int MAX_CACHE_SIZE = 100;
52 = new LruCache<Pair<String, Long>, ConversationItemViewModel>(MAX_CACHE_SIZE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 74 private static final int MAX_CACHE_SIZE = 50;
76 new LruCache<>(MAX_CACHE_SIZE);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urlparse.py 65 MAX_CACHE_SIZE = 20
178 if len(_parse_cache) >= MAX_CACHE_SIZE: # avoid runaway growth
  /prebuilts/gdb/linux-x86/lib/python2.7/
urlparse.py 65 MAX_CACHE_SIZE = 20
178 if len(_parse_cache) >= MAX_CACHE_SIZE: # avoid runaway growth
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urlparse.py 65 MAX_CACHE_SIZE = 20
178 if len(_parse_cache) >= MAX_CACHE_SIZE: # avoid runaway growth
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urlparse.py 65 MAX_CACHE_SIZE = 20
178 if len(_parse_cache) >= MAX_CACHE_SIZE: # avoid runaway growth
  /external/opencv3/modules/ml/src/
svm.cpp 443 enum { MIN_CACHE_SIZE = (40 << 20) /* 40Mb */, MAX_CACHE_SIZE = (500 << 20) /* 500Mb */ };
518 csize = std::min(csize, (int64)(MAX_CACHE_SIZE/sizeof(Qfloat)) );
519 max_cache_size = (int)((csize + sample_count-1)/sample_count);
520 max_cache_size = std::min(std::max(max_cache_size, 1), sample_count);
526 lru_cache_data.create(max_cache_size, sample_count, QFLOAT_TYPE);
537 if( cache_size < max_cache_size )
    [all...]

Completed in 290 milliseconds