HomeSort by relevance Sort by last modified time
    Searched refs:CACHE_SIZE (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutCache.java 37 private static final int CACHE_SIZE = 30; // Max number shortcuts we cache.
44 mCachedShortcuts = new LruCache<>(CACHE_SIZE);
  /libcore/ojluni/src/main/java/sun/nio/cs/
ThreadLocalCoders.java 38 private static final int CACHE_SIZE = 3;
88 private static Cache decoderCache = new Cache(CACHE_SIZE) {
112 private static Cache encoderCache = new Cache(CACHE_SIZE) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
CursorObjectAdapter.java 24 private static final int CACHE_SIZE = 100;
27 private final LruCache<Integer, Object> mItemCache = new LruCache<Integer, Object>(CACHE_SIZE);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
NinePatchTexture.java 81 private static final int CACHE_SIZE = 16;
82 private static final int CACHE_SIZE_START_MOVE = CACHE_SIZE / 2;
83 private int[] mKey = new int[CACHE_SIZE];
84 private V[] mValue = (V[]) new Object[CACHE_SIZE];
90 if (mCount == CACHE_SIZE) {
91 V old = mValue[CACHE_SIZE - 1]; // remove the last item
92 mKey[CACHE_SIZE - 1] = key;
93 mValue[CACHE_SIZE - 1] = value;
  /frameworks/base/services/core/java/com/android/server/
AttributeCache.java 38 private static final int CACHE_SIZE = 4;
44 private final LruCache<String, Package> mPackages = new LruCache<>(CACHE_SIZE);
DiskStatsService.java 264 proto.write(DiskStatsAppSizesProto.CACHE_SIZE, cacheSizesArray.getLong(i));
  /packages/services/BuiltInPrintService/src/com/android/bips/ipp/
CapabilitiesCache.java 50 private static final int CACHE_SIZE = 100;
63 super(CACHE_SIZE);
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
MediaSetSource.java 124 private static final int CACHE_SIZE = 32;
130 private MediaItem mCache[] = new MediaItem[CACHE_SIZE];
153 ArrayList<MediaItem> items = mSource.getMediaItem(mCacheStart, CACHE_SIZE);
  /external/strace/
socketutils.c 51 #define CACHE_SIZE 1024U
52 static cache_entry cache[CACHE_SIZE];
53 #define CACHE_MASK (CACHE_SIZE - 1)
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetSlotRenderer.java 36 private static final int CACHE_SIZE = 96;
110 mActivity, model, mLabelSpec, CACHE_SIZE);
AlbumSlotRenderer.java 38 private static final int CACHE_SIZE = 96;
90 mDataWindow = new AlbumSlidingWindow(mActivity, model, CACHE_SIZE);
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 42 private static final int CACHE_SIZE = 32;
45 * A hash function for CACHE_SIZE
131 constInfoCache = new ConstInfo[CACHE_SIZE];
132 constInfoIndexCache = new int[CACHE_SIZE];
144 constInfoCache = new ConstInfo[CACHE_SIZE];
145 constInfoIndexCache = new int[CACHE_SIZE];
155 constInfoCache = new ConstInfo[CACHE_SIZE];
156 constInfoIndexCache = new int[CACHE_SIZE];
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 40 private static final int CACHE_SIZE = 73;
41 private static Object[] sCache = new Object[CACHE_SIZE];
116 int bucket = (kind.hashCode() & 0x7FFFFFFF) % CACHE_SIZE;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
FontFamily_Delegate.java 73 private static final int CACHE_SIZE = 10;
77 new LinkedHashMap<String, FontInfo>(CACHE_SIZE) {
80 return size() > CACHE_SIZE;
  /frameworks/support/compat/java/android/support/v4/util/
SimpleArrayMap.java 57 private static final int CACHE_SIZE = 10;
202 if (mTwiceBaseCacheSize < CACHE_SIZE) {
216 if (mBaseCacheSize < CACHE_SIZE) {
ArraySet.java 64 private static final int CACHE_SIZE = 10;
203 if (sTwiceBaseCacheSize < CACHE_SIZE) {
219 if (sBaseCacheSize < CACHE_SIZE) {
  /libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java 91 private final static int CACHE_SIZE = 1;
93 new BasicLruCache<String, ZoneInfo>(CACHE_SIZE) {
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
URICertStore.java 98 private final static int CACHE_SIZE = 185;
188 certStoreCache = Cache.newSoftMemoryCache(CACHE_SIZE);
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 90 #define CACHE_SIZE 8
91 #define WRITE_DIRECT_SIZE 4 /* Must be smaller than CACHE_SIZE */
92 #define READ_DIRECT_SIZE 4 /* Should be smaller than CACHE_SIZE */
101 struct unix_cache cache[CACHE_SIZE];
327 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
353 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
379 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
426 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
  /frameworks/base/core/java/android/util/
ArrayMap.java 73 private static final int CACHE_SIZE = 10;
231 if (mTwiceBaseCacheSize < CACHE_SIZE) {
245 if (mBaseCacheSize < CACHE_SIZE) {
    [all...]
ArraySet.java 59 private static final int CACHE_SIZE = 10;
214 if (sTwiceBaseCacheSize < CACHE_SIZE) {
230 if (sBaseCacheSize < CACHE_SIZE) {
  /device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/
Mmc.h 277 UINT8 CACHE_SIZE[4]; // Cache size [252:249]
  /external/opencv/cv/src/
cvsmooth.cpp     [all...]
  /prebuilts/gradle-plugin/com/android/tools/common/22.2.0/
common-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.4.0/
common-22.4.0.jar 

Completed in 1131 milliseconds

1 2 3 4 5 6 7