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

  /system/core/libcutils/arch-x86/
cache_wrapper.S 23 #define DATA_CACHE_SIZE (24*1024) /* Silvermont L1 Data Cache */
27 #define DATA_CACHE_SIZE (24*1024) /* Atom L1 Data Cache */
31 #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 || defined __PIC__)
sse2-memset16-atom.S 360 #ifdef DATA_CACHE_SIZE
363 cmp $DATA_CACHE_SIZE, %ecx
474 #if defined DATA_CACHE_SIZE || !(defined SHARED || defined __PIC__)
  /system/core/libcutils/arch-x86_64/
cache.h 23 #define DATA_CACHE_SIZE (24*1024) /* Silvermont L1 Data Cache */
27 #define DATA_CACHE_SIZE (24*1024) /* Atom L1 Data Cache */
31 #define DATA_CACHE_SIZE_HALF (DATA_CACHE_SIZE / 2)
  /bionic/libc/arch-x86/atom/string/
cache.h 33 #define DATA_CACHE_SIZE (24*1024) /* Atom L1 Data Cache */
36 #define DATA_CACHE_SIZE_HALF (DATA_CACHE_SIZE / 2)
sse2-memset-atom.S 335 #ifdef DATA_CACHE_SIZE
338 cmp $DATA_CACHE_SIZE, %ecx
445 #if defined DATA_CACHE_SIZE || !(defined SHARED || defined __PIC__)
  /bionic/libc/arch-x86/silvermont/string/
cache.h 33 #define DATA_CACHE_SIZE (24*1024) /* Silvermont L1 Data Cache */
36 #define DATA_CACHE_SIZE_HALF (DATA_CACHE_SIZE / 2)
sse2-memset-slm.S 257 #ifdef DATA_CACHE_SIZE
259 mov $DATA_CACHE_SIZE, %ebx
302 #if defined DATA_CACHE_SIZE || !(defined SHARED || defined __PIC__)
325 #if defined DATA_CACHE_SIZE || !(defined SHARED || defined __PIC__)
  /bionic/libc/arch-x86_64/string/
cache.h 33 #define DATA_CACHE_SIZE (24*1024) /* Silvermont L1 Data Cache */
36 #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];
144 MediaItem item = mData[i % DATA_CACHE_SIZE];
172 clearSlot(i % DATA_CACHE_SIZE);
176 clearSlot(i % DATA_CACHE_SIZE);
179 clearSlot(i % DATA_CACHE_SIZE);
263 int index = i % DATA_CACHE_SIZE;
307 int index = i % DATA_CACHE_SIZE;
    [all...]
PhotoDataAdapter.java 63 private static final int DATA_CACHE_SIZE = 256;
105 // The MediaItems are stored in the mData array, which has DATA_CACHE_SIZE
107 // mContentEnd - mContentStart <= DATA_CACHE_SIZE, so we can use
108 // (i % DATA_CACHE_SIZE) as index to the array.
111 // smaller than DATA_CACHE_SIZE because we only update the window and reload
114 private final MediaItem mData[] = new MediaItem[DATA_CACHE_SIZE];
224 return mData[index % DATA_CACHE_SIZE];
390 return mData[index % DATA_CACHE_SIZE];
400 MediaItem item = mData[index % DATA_CACHE_SIZE];
570 return mData[index % 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;
481 mActivity, mMediaSet, DATA_CACHE_SIZE);

Completed in 131 milliseconds