HomeSort by relevance Sort by last modified time
    Searched defs:MAX_SIZE (Results 1 - 8 of 8) sorted by null

  /packages/apps/Browser/src/com/android/browser/
SnapshotByteArrayOutputStream.java 26 private static final int MAX_SIZE = 1700000;
30 mStream = new ByteArrayOutputStream(MAX_SIZE);
46 if ((size() + expandBy) > MAX_SIZE) {
  /external/skia/tests/
StreamTest.cpp 5 #define MAX_SIZE (256 * 1024)
17 SkAutoMalloc am(MAX_SIZE * 2);
19 char* storage2 = storage + MAX_SIZE;
21 random_fill(rand, storage, MAX_SIZE);
24 int size = rand.nextU() % MAX_SIZE;
26 size = MAX_SIZE;
  /frameworks/base/media/libmedia/
MemoryLeakTrackUtil.cpp 40 static const size_t MAX_SIZE = 256 * 1024;
43 : mPtr((char *)malloc(MAX_SIZE)) {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 41 public static final int MAX_SIZE = 12; // ~72k
51 * <p>When the number of session files exceeds MAX_SIZE, we delete the
116 MAX_SIZE, 0.75f, true /* access order */);
240 if (size <= MAX_SIZE) {
247 int removals = size - MAX_SIZE;
  /development/apps/FontLab/src/com/android/fontlab/
FontLab.java 35 private static final int MAX_SIZE = 60;
310 size = Math.min(MAX_SIZE, Math.max(MIN_SIZE, size));
  /system/extras/tests/memtest/
memtest.cpp 146 const int MAX_SIZE = 1024*1024; // 1MB
149 char* src = (char*)malloc(MAX_SIZE+4+8+32);
150 char* dst = (char*)malloc(MAX_SIZE+4+8+32);
151 memset(src, 0, MAX_SIZE+4+8+32);
152 memset(dst, 0, MAX_SIZE+4+8+32);
160 static int FAST_SIZES[] = { 1024, DCACHE_SIZE/2, DCACHE_SIZE, DCACHE_SIZE*2, MAX_SIZE };
177 if (size > MAX_SIZE) {
214 for (int i=0 ; i<MAX_SIZE ; i++) {
275 const int MAX_SIZE = 1024*1024; // 1MB
278 char* dst = (char*)malloc(MAX_SIZE+4+8)
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 210 static final int MAX_SIZE = 100000;
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 6250 milliseconds