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

1 2 3 4

  /external/chromium_org/v8/test/mjsunit/regress/
regress-319722-TypedArrays.js 30 var maxSize = %_MaxSmi() + 1;
33 new constr(maxSize);
regress-319722-ArrayBuffer.js 29 var maxSize = %_MaxSmi() + 1;
35 ab = new ArrayBuffer(maxSize * k);
45 new constr(ab, 0, maxSize);
  /external/chromium_org/third_party/icu/source/tools/gencmn/
gencmn.c 51 uint32_t maxSize;
75 "%csage: %s [ -h, -?, --help ] [ -v, --verbose ] [ -c, --copyright ] [ -C, --comment comment ] [ -d, --destdir dir ] [ -n, --name filename ] [ -t, --type filetype ] [ -S, --source tocfile ] [ -e, --entrypoint name ] maxsize listfile\n", argc < 0 ? 'u' : 'U', *argv);
79 "file from specified files. Omit any files larger than maxsize, if maxsize > 0.\n");
104 maxSize=(uint32_t)uprv_strtoul(argv[1], NULL, 0);
113 maxSize, sourceTOC, verbose, NULL);
  /external/icu/icu4c/source/tools/gencmn/
gencmn.c 51 uint32_t maxSize;
75 "%csage: %s [ -h, -?, --help ] [ -v, --verbose ] [ -c, --copyright ] [ -C, --comment comment ] [ -d, --destdir dir ] [ -n, --name filename ] [ -t, --type filetype ] [ -S, --source tocfile ] [ -e, --entrypoint name ] maxsize listfile\n", argc < 0 ? 'u' : 'U', *argv);
79 "file from specified files. Omit any files larger than maxsize, if maxsize > 0.\n");
104 maxSize=(uint32_t)uprv_strtoul(argv[1], NULL, 0);
113 maxSize, sourceTOC, verbose, NULL);
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
input_test.cpp 74 int maxSize = 1;
76 EXPECT_EQ(1u, input1.read(buf, maxSize));
78 EXPECT_EQ(1u, input1.read(buf, maxSize));
80 EXPECT_EQ(1u, input1.read(buf, maxSize));
82 EXPECT_EQ(0u, input1.read(buf, maxSize));
84 maxSize = 2;
86 EXPECT_EQ(2u, input2.read(buf, maxSize));
88 EXPECT_EQ(1u, input2.read(buf, maxSize));
90 EXPECT_EQ(0u, input2.read(buf, maxSize));
92 maxSize = 3
    [all...]
  /external/icu/icu4c/source/common/
lrucache.h 39 LRUCache(int32_t maxSize, UErrorCode &status);
69 int32_t maxSize;
81 int32_t maxSize,
84 LRUCache(maxSize, status), createFunc(cf) {
  /external/aac/libAACenc/src/
aacEnc_ram.h 156 #define maxSize(a,b) ( ((a)>(b)) ? (a) : (b) )
177 #define BUF_SIZE_1 ( ALIGN_SIZE(maxSize(sizeof(PSY_DYNAMIC), \
  /external/chromium_org/third_party/skia/tests/
PackBitsTest.cpp 52 size_t maxSize = SkPackBits::ComputeMaxSize16(size);
53 REPORTER_ASSERT(reporter, maxSize >= dstSize);
87 size_t maxSize = SkPackBits::ComputeMaxSize8(gTests[i].fCount);
90 REPORTER_ASSERT(reporter, dstSize <= maxSize);
106 size_t maxSize = SkPackBits::ComputeMaxSize8(size);
107 REPORTER_ASSERT(reporter, maxSize >= dstSize);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSignatureRawRSA.java 100 int maxSize = NativeCrypto.RSA_size(key.getPkeyContext());
101 inputBuffer = new byte[maxSize];
118 int maxSize = NativeCrypto.RSA_size(key.getPkeyContext());
119 inputBuffer = new byte[maxSize];
  /external/deqp/framework/opengl/
gluFboRenderContext.cpp 197 int maxSize = 0;
198 gl.getIntegerv(GL_MAX_RENDERBUFFER_SIZE, &maxSize);
200 width = (width == glu::RenderConfig::DONT_CARE) ? maxSize : width;
201 height = (height == glu::RenderConfig::DONT_CARE) ? maxSize : height;
  /external/glide/library/src/main/java/com/bumptech/glide/util/
LruCache.java 15 private int maxSize;
21 this.maxSize = size;
28 maxSize = Math.round(initialMaxSize * multiplier);
52 if (itemSize >= maxSize) {
90 trimToSize(maxSize);
  /external/chromium_org/chrome/installer/util/
lzma_util.cc 26 DWORD maxSize = *size;
29 BOOL res = ReadFile(file, data, maxSize, &processedLoc, NULL);
31 maxSize -= processedLoc;
39 } while (maxSize > 0);
  /external/eigen/test/
nomalloc.cpp 104 const int maxSize = 16;
110 maxSize, maxSize> Matrix;
115 maxSize, 1> Vector;
120 maxSize, maxSize> ComplexMatrix;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
LruBitmapPool.java 15 private int maxSize;
23 LruBitmapPool(int maxSize, LruPoolStrategy strategy) {
24 this.initialMaxSize = maxSize;
25 this.maxSize = maxSize;
29 public LruBitmapPool(int maxSize) {
30 initialMaxSize = maxSize;
31 this.maxSize = maxSize;
41 maxSize = Math.round(initialMaxSize * sizeMultiplier)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskLruCacheWrapper.java 36 * @param maxSize The max size for the disk cache
39 public synchronized static DiskCache get(File directory, int maxSize) {
41 WRAPPER = new DiskLruCacheWrapper(directory, maxSize);
47 private final int maxSize;
51 protected DiskLruCacheWrapper(File directory, int maxSize) {
53 this.maxSize = maxSize;
59 diskLruCache = DiskLruCache.open(directory, APP_VERSION, VALUE_COUNT, maxSize);
MemorySizeCalculator.java 33 final int maxSize = getMaxSize(activityManager);
41 if (targetMemoryCacheSize + targetPoolSize <= maxSize) {
45 int part = Math.round((float) maxSize / (BITMAP_POOL_TARGET_SCREENS + MEMORY_CACHE_TARGET_SCREENS));
52 + " memory class limited? " + (targetMemoryCacheSize + targetPoolSize > maxSize) + " max size: "
53 + toMb(maxSize) + " memoryClass: " + activityManager.getMemoryClass() + " isLowMemoryDevice: "
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
StaticMetadataTest.java 485 Size maxSize = CameraTestUtils.getMaxSize(sizes);
486 Long minDuration = minFrameDurationMap.get(maxSize);
488 Log.v(TAG, "min frame duration for size " + maxSize + " is " + minDuration);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 354 int maxSize = mSettings.getDefaultFontSize();
356 assertTrue(maxSize > defaultSize);
361 assertTrue(minSize < maxSize);
375 int maxSize = mSettings.getDefaultFixedFontSize();
377 assertTrue(maxSize > defaultSize);
382 assertTrue(minSize < maxSize);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/extension_action/
browser_action_apitest.cc 348 gfx::Size maxSize = BrowserActionTestUtil::GetMaxPopupSize();
351 ASSERT_GT(minSize.height() + growFactor * 2, maxSize.height());
352 ASSERT_GT(minSize.width() + growFactor * 2, maxSize.width());
366 EXPECT_EQ(maxSize, actions_bar.GetPopupBounds().size());
  /external/chromium_org/third_party/angle/src/compiler/translator/
OutputGLSLBase.cpp 250 int maxSize;
257 maxSize = leftType.getArraySize() - 1;
261 maxSize = leftType.getNominalSize() - 1;
265 out << "), 0.0, float(" << maxSize << ")))]";
267 out << ", 0, " << maxSize << ")]";
  /external/chromium_org/third_party/icu/source/test/intltest/
tscoll.cpp 503 int32_t maxSize = 100;
505 LocalArray<Order> orders(new Order[maxSize]);
512 if (size == maxSize)
514 maxSize *= 2;
515 Order *temp = new Order[maxSize];
528 if (maxSize > size)
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_gencmn.c 77 static uint32_t maxSize;
134 maxSize = max_size;
458 /* do not add files that are longer than maxSize */
459 if(maxSize && length>maxSize) {
461 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
  /external/chromium_org/third_party/mesa/src/src/glx/
glxext.c 1073 GLint maxSize;
1081 maxSize = (ctx->bufSize + sz_xGLXRenderReq) - sz_xGLXRenderLargeReq;
1082 totalRequests = 1 + (dataLen / maxSize);
1083 if (dataLen % maxSize)
1089 assert(headerLen <= maxSize);
1097 __glXSendLargeChunk(ctx, requestNumber, totalRequests, data, maxSize);
1098 data = (const GLvoid *) (((const GLubyte *) data) + maxSize);
1099 dataLen -= maxSize;
1103 assert(dataLen <= maxSize);
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcShader.cpp 335 const int maxSize = 65535;
337 return bm.width() > maxSize || bm.height() > maxSize;
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
jitter_buffer_unittest.cc     [all...]

Completed in 1924 milliseconds

1 2 3 4