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

1 2

  /external/okhttp/okio/src/main/java/okio/
SegmentPool.java 27 static final long MAX_SIZE = 64 * 1024; // 64 KiB.
54 if (byteCount + Segment.SIZE > MAX_SIZE) return; // Pool is full.
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_rotation.c 48 #define MAX_SIZE 100
55 opus_val16 x0[MAX_SIZE];
56 opus_val16 x1[MAX_SIZE];
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
BaseKeyPool.java 10 private static final int MAX_SIZE = 20;
15 keyPool = new ArrayDeque<T>(MAX_SIZE);
30 if (keyPool.size() < MAX_SIZE) {
  /external/libopus/celt/tests/
test_unit_rotation.c 48 #define MAX_SIZE 100
55 opus_val16 x0[MAX_SIZE];
56 opus_val16 x1[MAX_SIZE];
  /external/glide/library/src/main/java/com/bumptech/glide/util/
ByteArrayPool.java 13 private static final int MAX_SIZE = 512 * 1024;
14 private static final int MAX_BYTE_ARRAY_COUNT = MAX_SIZE / TEMP_BYTES_SIZE;
  /external/chromium_org/third_party/skia/tests/
StreamTest.cpp 19 #define MAX_SIZE (256 * 1024)
BBoxHierarchyTest.cpp 23 static const int MAX_SIZE = 1000;
33 rect.fLeft = rand.nextS() % MAX_SIZE;
34 rect.fRight = rand.nextS() % MAX_SIZE;
35 rect.fTop = rand.nextS() % MAX_SIZE;
36 rect.fBottom = rand.nextS() % MAX_SIZE;
174 SkIRect::MakeLTRB(-MAX_SIZE, -MAX_SIZE, MAX_SIZE, MAX_SIZE)));
180 SkIRect::MakeLTRB(-MAX_SIZE, -MAX_SIZE, MAX_SIZE, MAX_SIZE)))
    [all...]
  /external/skia/tests/
StreamTest.cpp 19 #define MAX_SIZE (256 * 1024)
BBoxHierarchyTest.cpp 23 static const int MAX_SIZE = 1000;
33 rect.fLeft = rand.nextS() % MAX_SIZE;
34 rect.fRight = rand.nextS() % MAX_SIZE;
35 rect.fTop = rand.nextS() % MAX_SIZE;
36 rect.fBottom = rand.nextS() % MAX_SIZE;
174 SkIRect::MakeLTRB(-MAX_SIZE, -MAX_SIZE, MAX_SIZE, MAX_SIZE)));
180 SkIRect::MakeLTRB(-MAX_SIZE, -MAX_SIZE, MAX_SIZE, MAX_SIZE)))
    [all...]
  /art/test/114-ParallelGC/src/
Main.java 28 public final static long MAX_SIZE = 1000; // Maximum size of array-list to allocate.
123 // This is the first stage, try to allocate up till MAX_SIZE.
124 boolean oom = i >= MAX_SIZE;
  /cts/tests/tests/net/src/android/net/ipv6/cts/
PingTest.java 54 private static final int MAX_SIZE = 4096;
110 ByteBuffer responseBuffer = ByteBuffer.allocate(MAX_SIZE);
157 byte[] packet = pingPacket((int) (Math.random() * MAX_SIZE));
  /external/guava/guava-tests/test/com/google/common/cache/
CacheEvictionTest.java 41 static final int MAX_SIZE = 100;
68 .maximumSize(MAX_SIZE)
70 for (int i = 0; i < 2 * MAX_SIZE; i++) {
72 assertEquals(Math.min(i + 1, MAX_SIZE), cache.size());
75 assertEquals(MAX_SIZE, cache.size());
83 .maximumWeight(2 * MAX_SIZE)
86 for (int i = 0; i < 2 * MAX_SIZE; i++) {
88 assertEquals(Math.min(i + 1, MAX_SIZE), cache.size());
91 assertEquals(MAX_SIZE, cache.size());
99 .maximumSize(MAX_SIZE)
    [all...]
  /frameworks/av/media/libmedia/
MemoryLeakTrackUtil.cpp 41 static const size_t MAX_SIZE = 256 * 1024;
44 : mPtr((char *)malloc(MAX_SIZE)) {
53 strncat(mPtr, s, MAX_SIZE - size() - 1);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 40 public final static int MAX_SIZE = 65536 * 32;
129 if (size > MAX_SIZE) throw new DirectoryFullException(
130 "directory would grow beyond " + MAX_SIZE + " bytes",
  /external/chromium_org/net/disk_cache/blockfile/
backend_impl_v3.h 35 MAX_SIZE = 1 << 1, // A maximum size was provided.
  /external/conscrypt/src/main/java/org/conscrypt/
FileClientSessionCache.java 39 public static final int MAX_SIZE = 12; // ~72k
49 * <p>When the number of session files exceeds MAX_SIZE, we delete the
114 MAX_SIZE, 0.75f, true /* access order */);
248 if (size <= MAX_SIZE) {
255 int removals = size - MAX_SIZE;
  /frameworks/base/services/core/java/com/android/server/
AssetAtlasService.java 82 private static final int MAX_SIZE = 2048;
400 new ComputeWorker(MIN_SIZE, MAX_SIZE, STEP, bitmaps, pixelCount, results, null).run();
403 int end = MAX_SIZE - (cpuCount - 1) * STEP;
529 int width = readInt(reader, MIN_SIZE, MAX_SIZE);
530 int height = readInt(reader, MIN_SIZE, MAX_SIZE);
683 while (threshold > MAX_SIZE * MAX_SIZE) {
696 for (int height = MIN_SIZE; height < MAX_SIZE; height += STEP) {
  /frameworks/base/core/java/android/widget/
GridLayout.java 231 static final int MAX_SIZE = 100000;
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 217 static final int MAX_SIZE = 100000;
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
guava-13.0.1.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 

Completed in 2201 milliseconds

1 2