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

1 2 3 4 5 6 7 8

  /external/ltp/testcases/kernel/syscalls/getrandom/
getrandom03.c 37 #define MAX_SIZE 256
53 char buf[MAX_SIZE];
  /external/okhttp/okio/okio/src/main/java/okio/
SegmentPool.java 25 static final long MAX_SIZE = 64 * 1024; // 64 KiB.
53 if (byteCount + Segment.SIZE > MAX_SIZE) return; // Pool is full.
  /external/valgrind/memcheck/tests/solaris/
brk.c 44 #define MAX_SIZE 8192
46 for (i = 0; i < MAX_SIZE; i++) {
52 for (i = 0; i < MAX_SIZE; i++) {
53 tmp = syscall(SYS_brk, begin + MAX_SIZE - 1 - i);
56 #undef MAX_SIZE
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
BaseKeyPool.java 8 private static final int MAX_SIZE = 20;
9 private final Queue<T> keyPool = Util.createQueue(MAX_SIZE);
20 if (keyPool.size() < MAX_SIZE) {
  /external/libopus/celt/tests/
test_unit_rotation.c 46 #define MAX_SIZE 100
53 opus_val16 x0[MAX_SIZE];
54 opus_val16 x1[MAX_SIZE];
  /external/ltp/testcases/kernel/syscalls/readlink/
readlink01.c 80 #define MAX_SIZE 256
95 char buffer[MAX_SIZE]; /* temporary buffer to hold symlink contents */
readlink04.c 50 #define MAX_SIZE 256
53 static char buffer[MAX_SIZE];
144 memset(buffer, 0, MAX_SIZE);
readlink03.c 62 #define MAX_SIZE 256
155 char buffer[MAX_SIZE];
  /packages/apps/ExactCalculator/src/com/android/calculator2/
BoundedRational.java 40 private static final int MAX_SIZE = 10000; // total, in bits
242 return (mNum.bitLength() + mDen.bitLength() > MAX_SIZE);
543 if (den.bitLength() > MAX_SIZE) {
  /external/glide/library/src/main/java/com/bumptech/glide/util/
ByteArrayPool.java 15 private static final int MAX_SIZE = 2 * 1048 * 1024;
16 private static final int MAX_BYTE_ARRAY_COUNT = MAX_SIZE / TEMP_BYTES_SIZE;
  /art/test/114-ParallelGC/src/
Main.java 28 private final static long MAX_SIZE = 1000; // Maximum size of array-list to allocate.
104 for (int i = 0; i < MAX_SIZE; i++) {
  /external/guava/guava/src/com/google/common/base/
SmallCharMatcher.java 33 static final int MAX_SIZE = 1023;
  /cts/tests/tests/net/src/android/net/ipv6/cts/
PingTest.java 54 private static final int MAX_SIZE = 4096;
113 ByteBuffer responseBuffer = ByteBuffer.allocate(MAX_SIZE);
161 byte[] packet = pingPacket((int) (Math.random() * (MAX_SIZE - ICMP_HEADER_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/base/packages/PrintSpooler/src/com/android/printspooler/model/
CustomPrinterIconCache.java 44 private final static int MAX_SIZE = 1024;
154 removeOldFiles(MAX_SIZE);
  /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/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapAttribute.java 145 static final int MAX_SIZE = 65535;
193 boolean isExtCodeSize = cr.readInt(codeOff + 4) > MAX_SIZE;
194 boolean isExtLocals = cr.readUnsignedShort(codeOff + 2) > MAX_SIZE;
195 boolean isExtStack = cr.readUnsignedShort(codeOff) > MAX_SIZE;
283 if (max > StackMapAttribute.MAX_SIZE) {
320 if (code != null && code.length > MAX_SIZE) { // TODO verify value
  /external/conscrypt/common/src/main/java/org/conscrypt/
FileClientSessionCache.java 46 public static final int MAX_SIZE = 12; // ~72k
56 * <p>When the number of session files exceeds MAX_SIZE, we delete the
119 return new LinkedHashMap<String, File>(MAX_SIZE, 0.75f, true /* access order */);
252 if (size <= MAX_SIZE) {
259 int removals = size - MAX_SIZE;
  /external/skia/src/core/
SkCoverageDelta.h 120 static constexpr int MAX_SIZE = MAX_MASK_SIZE * (sizeof(SkFixed) + sizeof(SkAlpha));
  /external/skqp/src/core/
SkCoverageDelta.h 120 static constexpr int MAX_SIZE = MAX_MASK_SIZE * (sizeof(SkFixed) + sizeof(SkAlpha));
  /external/skqp/tests/
StreamTest.cpp 24 #define MAX_SIZE (256 * 1024)
  /frameworks/base/core/java/android/util/
MemoryIntArray.java 53 private static final int MAX_SIZE = 1024;
69 if (size > MAX_SIZE) {
70 throw new IllegalArgumentException("Max size is " + MAX_SIZE);
238 return MAX_SIZE;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
FalsingLog.java 58 private static final int MAX_SIZE = SystemProperties.getInt("debug.falsing_log_size", 100);
62 private final ArrayDeque<String> mLog = new ArrayDeque<>(MAX_SIZE);
114 if (sInstance.mLog.size() >= MAX_SIZE) {
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_ppc64le.s 35 #define MAX_SIZE 32*1024
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32_ppc64le.s 35 #define MAX_SIZE 32*1024

Completed in 906 milliseconds

1 2 3 4 5 6 7 8