HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 276 - 300 of 706) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 1404 int maxsize = 0; local
1649 int maxsize = 0; local
    [all...]
  /frameworks/base/obex/javax/obex/
ObexHelper.java 694 * @param maxSize the maximum size of a packet
698 public static int findHeaderEnd(byte[] headerArray, int start, int maxSize) {
705 while ((fullLength < maxSize) && (index < headerArray.length)) {
751 * header is less then maxSize. If it is, return the length of the
755 if (fullLength < maxSize) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 37 from sys import maxsize namespace
38 if maxsize == 2147483647:
50 elif maxsize == 9223372036854775807:
63 self.fail('Weird maxsize value %r' % maxsize)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 37 from sys import maxsize namespace
38 if maxsize == 2147483647:
50 elif maxsize == 9223372036854775807:
63 self.fail('Weird maxsize value %r' % maxsize)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c 210 GLsizei MaxSize; /**< Max possible texture size */
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 210 GLsizei MaxSize; /**< Max possible texture size */
    [all...]
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /external/icu/icu4c/source/test/cintltst/
callcoll.c 475 int32_t maxSize = 100;
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)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fUniformApiTests.cpp 996 // \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;
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) {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 116 static inline LayoutUnit resolveLengthAttributeForSVG(const Length& length, float scale, float maxSize)
118 return static_cast<LayoutUnit>(valueForLength(length, maxSize) * (length.isFixed() ? scale : 1));
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_points.c 68 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize);
547 ctx->Point.MaxSize);
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinitionUtil.cpp 798 int maxSize = 0;
802 maxSize = de::max(maxSize, getBufferSize(shader->getDefaultBlock().interfaceBlocks[ndx], shader->getDefaultBlock().interfaceBlocks[ndx].layout.matrixOrder));
804 return (int)maxSize;
836 int maxSize = 0;
856 maxSize = de::max<int>(maxSize, it->second);
858 return maxSize;
    [all...]
  /external/jsoncpp/src/lib_json/
json_writer.cpp 129 std::string::size_type maxsize = strlen(value)*2 + 3; // allescaped+quotes+NULL
131 result.reserve(maxsize); // to avoid lots of mallocs
  /external/mesa3d/src/mesa/swrast/
s_points.c 68 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize);
547 ctx->Point.MaxSize);
  /external/srec/portable/src/
plog.c 523 * @param maxsize The maximum number of bytes that the file may have.
527 unsigned int maxsize,
  /frameworks/base/core/tests/coretests/src/android/util/
LruCacheTest.java 146 assertEquals("LruCache[maxSize=3,hits=0,misses=0,hitRate=0%]", cache.toString());
159 assertEquals("LruCache[maxSize=3,hits=3,misses=2,hitRate=60%]", cache.toString());
  /frameworks/base/docs/html/training/volley/
request.jd 187 public LruBitmapCache(int maxSize) {
188 super(maxSize);
  /frameworks/base/libs/hwui/
PathCache.cpp 188 void PathCache::setMaxSize(uint32_t maxSize) {
189 mMaxSize = maxSize;
TessellationCache.cpp 338 void TessellationCache::setMaxSize(uint32_t maxSize) {
339 mMaxSize = maxSize;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CachingPipeline.java 361 float maxSize = Math.max(iconBounds.width(), iconBounds.height());
362 float scale = maxSize / minSize;
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 495 public MessageItemCache(int maxSize) {
496 super(maxSize);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
time.h 197 Write no more than MAXSIZE characters and return the number
198 of characters written, or 0 if it would exceed MAXSIZE. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
time.h 197 Write no more than MAXSIZE characters and return the number
198 of characters written, or 0 if it would exceed MAXSIZE. */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_marshal.py 274 pointer_size = 8 if sys.maxsize > 0xFFFFFFFF else 4
276 @unittest.skipIf(LARGE_SIZE > sys.maxsize, "test cannot run on 32-bit systems")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_marshal.py 274 pointer_size = 8 if sys.maxsize > 0xFFFFFFFF else 4
276 @unittest.skipIf(LARGE_SIZE > sys.maxsize, "test cannot run on 32-bit systems")

Completed in 1507 milliseconds

<<11121314151617181920>>