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

  /bionic/libc/arch-x86/string/
cache_wrapper.S 33 #define DATA_CACHE_SIZE (24*1024) /* Atom L1 Data Cache */
35 #define DATA_CACHE_SIZE_HALF (DATA_CACHE_SIZE / 2)
  /system/core/libcutils/arch-x86/
cache_wrapper.S 22 #define DATA_CACHE_SIZE (24*1024) /* Atom L1 Data Cache */
24 #define DATA_CACHE_SIZE_HALF (DATA_CACHE_SIZE / 2)
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumDataLoader.java 40 private static final int DATA_CACHE_SIZE = 1000;
81 mData = new MediaItem[DATA_CACHE_SIZE];
82 mItemVersion = new long[DATA_CACHE_SIZE];
83 mSetVersion = new long[DATA_CACHE_SIZE];
145 MediaItem item = mData[i % DATA_CACHE_SIZE];
173 clearSlot(i % DATA_CACHE_SIZE);
177 clearSlot(i % DATA_CACHE_SIZE);
180 clearSlot(i % DATA_CACHE_SIZE);
264 int index = i % DATA_CACHE_SIZE;
308 int index = i % DATA_CACHE_SIZE;
    [all...]
ManageCachePage.java 62 private static final int DATA_CACHE_SIZE = 256;
281 mActivity, mMediaSet, DATA_CACHE_SIZE);
AlbumSetPage.java 78 private static final int DATA_CACHE_SIZE = 256;
485 mActivity, mMediaSet, DATA_CACHE_SIZE);
PhotoDataAdapter.java 64 private static final int DATA_CACHE_SIZE = 256;
106 // The MediaItems are stored in the mData array, which has DATA_CACHE_SIZE
108 // mContentEnd - mContentStart <= DATA_CACHE_SIZE, so we can use
109 // (i % DATA_CACHE_SIZE) as index to the array.
112 // smaller than DATA_CACHE_SIZE because we only update the window and reload
115 private final MediaItem mData[] = new MediaItem[DATA_CACHE_SIZE];
225 return mData[index % DATA_CACHE_SIZE];
391 return mData[index % DATA_CACHE_SIZE];
401 MediaItem item = mData[index % DATA_CACHE_SIZE];
572 return mData[index % DATA_CACHE_SIZE];
    [all...]

Completed in 185 milliseconds