HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 226 - 250 of 573) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gl.py 48 'makeobj', 'maketag', 'mapcolor', 'mapw', 'mapw2', 'maxsize',
test_mmap.py 685 if sys.maxsize < 0x180000000:
686 # On 32 bit platforms the file is larger than sys.maxsize so
711 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
715 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
test_str.py 46 format_string = "%{}f".format(sys.maxsize + 1)
387 format_string = ".{}f".format(sys.maxsize + 1)
392 format_string = "{}f".format(sys.maxsize + 1)
397 format_string = "{{{}:.6f}}".format(sys.maxsize + 1)
test_struct.py 11 IS32BIT = sys.maxsize == 0x7fffffff
550 hugecount = '{}b'.format(sys.maxsize+1)
553 hugecount2 = '{}b{}H'.format(sys.maxsize//2, sys.maxsize//2)
  /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 688 * @param maxSize the maximum size of a packet
692 public static int findHeaderEnd(byte[] headerArray, int start, int maxSize) {
699 while ((fullLength < maxSize) && (index < headerArray.length)) {
745 * header is less then maxSize. If it is, return the length of the
749 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/icu4c/test/cintltst/
callcoll.c 474 int32_t maxSize = 100;
478 OrderAndOffset *orders =(OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
484 if (size == maxSize)
486 maxSize *= 2;
487 temp = (OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize);
502 if (maxSize > size && size > 0)
    [all...]
  /build/tools/releasetools/
sign_target_files_apks 143 maxsize = max([len(os.path.basename(i.filename))
154 print " signing: %-*s (%s)" % (maxsize, name, key)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 131 static inline LayoutUnit resolveLengthAttributeForSVG(const Length& length, float scale, float maxSize, RenderView* renderView)
133 return static_cast<LayoutUnit>(valueForLength(length, maxSize, renderView) * (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/clang/include/clang/AST/
APValue.h 112 MaxSize = (sizeof(ComplexAPSInt) > sizeof(ComplexAPFloat) ?
118 char Data[MaxSize];
  /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/libs/hwui/
PathCache.cpp 195 void PathCache::setMaxSize(uint32_t maxSize) {
196 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 493 public MessageItemCache(int maxSize) {
494 super(maxSize);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
time.h 198 Write no more than MAXSIZE characters and return the number
199 of characters written, or 0 if it would exceed MAXSIZE. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
time.h 198 Write no more than MAXSIZE characters and return the number
199 of characters written, or 0 if it would exceed MAXSIZE. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
time.h 198 Write no more than MAXSIZE characters and return the number
199 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")

Completed in 1750 milliseconds

1 2 3 4 5 6 7 8 91011>>