OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CACHE_SIZE
(Results
1 - 25
of
29
) 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
...]
/prebuilts/devtools/tools/lib/
common.jar
/prebuilts/gradle-plugin/com/android/tools/common/22.2.0/
common-22.2.0.jar
/external/robolectric/lib/main/
h2-1.2.147.jar
sqlite-jdbc-3.7.2.jar
javassist-3.14.0-GA.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0.jar
/prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar
/prebuilts/tools/darwin-x86/swt/
swt.jar
/prebuilts/tools/darwin-x86_64/swt/
swt.jar
/prebuilts/tools/linux-x86/swt/
swt.jar
/prebuilts/tools/linux-x86_64/swt/
swt.jar
/prebuilts/tools/windows/swt/
swt.jar
/prebuilts/tools/windows-x86_64/swt/
swt.jar
Completed in 97 milliseconds
1
2