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

  /system/core/libcutils/arch-x86/
cache.h 20 #define DATA_CACHE_SIZE (24*1024) /* Silvermont L1 Data Cache */
24 #define DATA_CACHE_SIZE (24*1024) /* Atom L1 Data Cache */
28 #define DATA_CACHE_SIZE_HALF (DATA_CACHE_SIZE / 2)
android_memset32.S 271 #ifdef DATA_CACHE_SIZE
274 cmp $DATA_CACHE_SIZE, %ecx
386 #if defined DATA_CACHE_SIZE || !(defined SHARED || defined __PIC__)
android_memset16.S 357 #ifdef DATA_CACHE_SIZE
360 cmp $DATA_CACHE_SIZE, %ecx
471 #if defined DATA_CACHE_SIZE || !(defined SHARED || defined __PIC__)
  /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 274 cmp $DATA_CACHE_SIZE, %ecx
  /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 195 mov $DATA_CACHE_SIZE, %ebx
  /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)
  /system/core/libcutils/arch-x86_64/
cache.h 19 #define DATA_CACHE_SIZE (24*1024) /* Silvermont L1 Data Cache */
22 #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);
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/
ArmLibPrivate.h 42 #define DATA_CACHE_SIZE(x) (SIZE_FIELD_TO_CACHE_SIZE(DATA_CACHE_SIZE_FIELD(x)))

Completed in 264 milliseconds