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

1 2

  /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/core/java/com/android/internal/util/
ArrayUtils.java 32 private static final int CACHE_SIZE = 73;
33 private static Object[] sCache = new Object[CACHE_SIZE];
110 int bucket = ((System.identityHashCode(kind) / 8) & 0x7FFFFFFF) % 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);
  /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/android/util/
ArraySet.java 59 private static final int CACHE_SIZE = 10;
191 if (mTwiceBaseCacheSize < CACHE_SIZE) {
205 if (mBaseCacheSize < CACHE_SIZE) {
ArrayMap.java 58 private static final int CACHE_SIZE = 10;
203 if (mTwiceBaseCacheSize < CACHE_SIZE) {
217 if (mBaseCacheSize < CACHE_SIZE) {
  /frameworks/support/v4/java/android/support/v4/util/
SimpleArrayMap.java 44 private static final int CACHE_SIZE = 10;
175 if (mTwiceBaseCacheSize < CACHE_SIZE) {
189 if (mBaseCacheSize < CACHE_SIZE) {
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 79 #define CACHE_SIZE 8
80 #define WRITE_DIRECT_SIZE 4 /* Must be smaller than CACHE_SIZE */
81 #define READ_DIRECT_SIZE 4 /* Should be smaller than CACHE_SIZE */
90 struct unix_cache cache[CACHE_SIZE];
303 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
331 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
357 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
404 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 110 private static final int CACHE_SIZE = 50;
135 mMessageItemCache = new MessageItemCache(CACHE_SIZE);
  /external/opencv/cv/src/
cvsmooth.cpp     [all...]