HomeSort by relevance Sort by last modified time
    Searched refs:DATA_CACHE_SIZE (Results 1 - 9 of 9) 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)
sse2-memset5-atom.S 329 #ifdef DATA_CACHE_SIZE
332 cmp $DATA_CACHE_SIZE, %ecx
439 #if defined DATA_CACHE_SIZE || !(defined SHARED || defined __PIC__)
  /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)
sse2-memset32-atom.S 274 #ifdef DATA_CACHE_SIZE
277 cmp $DATA_CACHE_SIZE, %ecx
389 #if defined DATA_CACHE_SIZE || !defined SHARED
sse2-memset16-atom.S 360 #ifdef DATA_CACHE_SIZE
363 cmp $DATA_CACHE_SIZE, %ecx
474 #if defined DATA_CACHE_SIZE || !defined SHARED
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumDataLoader.java 41 private static final int DATA_CACHE_SIZE = 1000;
80 mData = new MediaItem[DATA_CACHE_SIZE];
81 mItemVersion = new long[DATA_CACHE_SIZE];
82 mSetVersion = new long[DATA_CACHE_SIZE];
156 clearSlot(i % DATA_CACHE_SIZE);
160 clearSlot(i % DATA_CACHE_SIZE);
163 clearSlot(i % DATA_CACHE_SIZE);
241 int index = i % DATA_CACHE_SIZE;
278 int index = i % DATA_CACHE_SIZE;
PhotoDataAdapter.java 64 private static final int DATA_CACHE_SIZE = 32;
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];
220 return mData[index % DATA_CACHE_SIZE];
378 return mData[index % DATA_CACHE_SIZE];
388 MediaItem item = mData[index % DATA_CACHE_SIZE];
520 return mData[index % DATA_CACHE_SIZE];
    [all...]
ManageCachePage.java 61 private static final int DATA_CACHE_SIZE = 256;
275 mActivity, mMediaSet, DATA_CACHE_SIZE);
AlbumSetPage.java 72 private static final int DATA_CACHE_SIZE = 256;
363 mActivity, mMediaSet, DATA_CACHE_SIZE);

Completed in 164 milliseconds