Searched refs:maxSize (Results 76 - 100 of 132) sorted by relevance

123456

/external/deqp/framework/common/
H A DtcuTestLog.cpp144 static Vector<int, Size> computeScaledSize (const Vector<int, Size>& imageSize, int maxSize) argument
148 allInRange = allInRange && (imageSize[i] <= maxSize);
156 d = de::max(d, (float)imageSize[i] / (float)maxSize);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcallcoll.c475 int32_t maxSize = 100; local
479 OrderAndOffset *orders =(OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
485 if (size == maxSize)
487 maxSize *= 2;
488 temp = (OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
503 if (maxSize > size && size > 0)
/external/icu/icu4c/source/test/cintltst/
H A Dcallcoll.c475 int32_t maxSize = 100; local
479 OrderAndOffset *orders =(OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
485 if (size == maxSize)
487 maxSize *= 2;
488 temp = (OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
503 if (maxSize > size && size > 0)
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinitionUtil.cpp798 int maxSize = 0; local
802 maxSize = de::max(maxSize, getBufferSize(shader->getDefaultBlock().interfaceBlocks[ndx], shader->getDefaultBlock().interfaceBlocks[ndx].layout.matrixOrder));
804 return (int)maxSize;
836 int maxSize = 0; local
856 maxSize = de::max<int>(maxSize, it->second);
858 return maxSize;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpResponseCache.java139 public HttpResponseCache(File directory, long maxSize) throws IOException { argument
140 cache = DiskLruCache.open(directory, VERSION, ENTRY_COUNT, maxSize);
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Ddisplay_options.js219 var maxSize = 0;
221 maxSize = Math.max(maxSize, optionTitles[i].clientWidth);
223 optionTitles[i].style.width = maxSize + 'px';
/external/chromium_org/third_party/WebKit/public/web/
H A DWebView.h301 const WebSize& maxSize) = 0;
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_bitmap.c418 GLuint maxSize; local
451 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
453 assert(width <= (GLsizei)maxSize);
454 assert(height <= (GLsizei)maxSize);
/external/deqp/modules/gles2/functional/
H A Des2fBufferWriteTests.cpp433 const int maxSize = 32*1024; local
469 const int size = rnd.getInt(minSize, maxSize);
665 const int maxSize = 65536; local
677 spec->size = rnd.getInt(minSize, maxSize);
H A Des2fUniformApiTests.cpp831 // \note minSize and maxSize are for arrays and can be distinct since implementations are allowed, but not required, to trim the inactive end indices of arrays.
833 int maxSize; member in struct:deqp::UniformCase::BasicUniformReportRef
838 : name(name_), minSize(minS), maxSize(maxS), type(type_), isUsedInShader(used) { DE_ASSERT(minSize <= maxSize); }
840 : name(name_), minSize(1), maxSize(1), type(type_), isUsedInShader(used) {}
1316 DE_ASSERT(reference.minSize <= reference.maxSize);
1331 if (reportedSize < reference.minSize || reportedSize > reference.maxSize)
1335 << (reference.minSize == reference.maxSize ? de::toString(reference.minSize) : "in the range [" + de::toString(reference.minSize) + ", " + de::toString(reference.maxSize) + "]")
/external/deqp/modules/gles3/functional/
H A Des3fBufferWriteTests.cpp433 const int maxSize = 32*1024; local
481 const int size = rnd.getInt(minSize, maxSize);
665 const int maxSize = 65536; local
677 spec->size = rnd.getInt(minSize, maxSize);
H A Des3fUniformApiTests.cpp996 // \note minSize and maxSize are for arrays and can be distinct since implementations are allowed, but not required, to trim the inactive end indices of arrays.
998 int maxSize; member in struct:deqp::UniformCase::BasicUniformReportRef
1003 : name(name_), minSize(minS), maxSize(maxS), type(type_), isUsedInShader(used) { DE_ASSERT(minSize <= maxSize); }
1005 : name(name_), minSize(1), maxSize(1), type(type_), isUsedInShader(used) {}
1513 DE_ASSERT(reference.minSize <= reference.maxSize);
1528 if (reportedSize < reference.minSize || reportedSize > reference.maxSize)
1532 << (reference.minSize == reference.maxSize ? de::toString(reference.minSize) : "in the range [" + de::toString(reference.minSize) + ", " + de::toString(reference.maxSize) + "]")
1622 DE_ASSERT(reference.minSize <= reference.maxSize);
[all...]
/external/lzma/C/
H A DXz.h21 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value);
H A DXzDec.c30 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value) argument
34 limit = (maxSize > 9) ? 9 : (int)maxSize;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_bitmap.c418 GLuint maxSize; local
451 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
453 assert(width <= (GLsizei)maxSize);
454 assert(height <= (GLsizei)maxSize);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL.cpp369 int maxSize = this->caps()->maxTextureSize(); local
370 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
986 int maxSize = this->caps()->maxTextureSize(); local
987 if (glTexDesc.fWidth > maxSize || glTexDesc.fHeight > maxSize) {
1083 int maxSize = this->caps()->maxTextureSize(); local
1084 if (glTexDesc.fWidth > maxSize || glTexDesc.fHeight > maxSize) {
/external/libnfc-nxp/src/
H A DphFriNfc_NdefMap.h1238 NFCSTATUS phFriNfc_NdefMap_GetContainerSize(const phFriNfc_NdefMap_t *NdefMap,uint32_t *maxSize, uint32_t *actualSize);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DFlameChart.js1067 * @param {number} maxSize
1070 _prepareText: function(context, title, maxSize)
1073 if (maxSize >= titleWidth)
1080 if (this._measureWidth(context, title.trimMiddle(m)) <= maxSize)
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java1079 * @param maxSize the maximum distinct elements the set may have
1081 public Multiset(int maxSize) { argument
1082 reg = new int[maxSize];
1083 count = new int[maxSize];
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DHeapSnapshotView.js1808 var maxSize = 0;
1836 maxSize = Math.max(maxSize, size);
1841 var yScaleFactor = this._yScale.nextScale(maxSize ? height / (maxSize * 1.1) : 0.0);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.h228 void enableAutoSizeMode(const IntSize& minSize, const IntSize& maxSize);
/external/skia/src/gpu/gl/
H A DGrGpuGL.cpp366 int maxSize = this->caps()->maxTextureSize(); local
367 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
991 int maxSize = this->caps()->maxTextureSize(); local
992 if (glTexDesc.fWidth > maxSize || glTexDesc.fHeight > maxSize) {
1088 int maxSize = this->caps()->maxTextureSize(); local
1089 if (glTexDesc.fWidth > maxSize || glTexDesc.fHeight > maxSize) {
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDexWriter.java632 int maxSize = fields.size() * 8 + methods.size() * 16;
633 if (maxSize > tempBuffer.capacity()) {
634 tempBuffer = ByteBuffer.allocate(maxSize);

Completed in 627 milliseconds

123456