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

  /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;
  /system/extras/tests/memtest/
memtest.cpp 144 const int MAX_SIZE = 1024*1024; // 1MB
147 char* src = (char*)malloc(MAX_SIZE+4+8+32);
148 char* dst = (char*)malloc(MAX_SIZE+4+8+32);
149 memset(src, 0, MAX_SIZE+4+8+32);
150 memset(dst, 0, MAX_SIZE+4+8+32);
158 static int FAST_SIZES[] = { 1024, DCACHE_SIZE/2, DCACHE_SIZE, DCACHE_SIZE*2, MAX_SIZE };
175 if (size > MAX_SIZE) {
212 for (int i=0 ; i<MAX_SIZE ; i++) {
273 const int MAX_SIZE = 1024*1024; // 1MB
276 char* dst = (char*)malloc(MAX_SIZE+4+8)
    [all...]
  /libcore/luni/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCacheTest.java 36 final int iterations = FileClientSessionCache.MAX_SIZE * 10;
55 assertEquals(FileClientSessionCache.MAX_SIZE, cacheDir.list().length);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 41 static final int MAX_SIZE = 12; // ~72k
55 * <p>When the number of session files exceeds MAX_SIZE, we delete the
117 MAX_SIZE, 0.75f, true /* access order */);
247 if (size <= MAX_SIZE) {
254 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));
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp 376 static const size_t MAX_SIZE = 256 * 1024;
379 : mPtr((char *)malloc(MAX_SIZE)) {
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 549 milliseconds