HomeSort by relevance Sort by last modified time
    Searched refs:maxsize (Results 51 - 75 of 183) sorted by null

1 23 4 5 6 7 8

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_memoryview.py 39 self.assertRaises(IndexError, lambda: m[sys.maxsize])
40 self.assertRaises(IndexError, lambda: m[-sys.maxsize])
106 self.assertRaises(IndexError, setitem, sys.maxsize, b"a")
107 self.assertRaises(IndexError, setitem, -sys.maxsize, b"a")
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)
test_xrange.py 129 M = min(sys.maxint, sys.maxsize)
154 # Valid xranges have at most min(sys.maxint, sys.maxsize) elements.
155 M = min(sys.maxint, sys.maxsize)
test_itertools.py 13 maxsize = test_support.MAX_Py_ssize_t variable
14 minsize = -maxsize-1
339 self.assertEqual(list(islice(count(maxsize-5), 10)), range(maxsize-5, maxsize+5))
340 self.assertEqual(list(islice(count(-maxsize-5), 10)), range(-maxsize-5, -maxsize+5))
371 self.assertEqual(take(20, count(maxsize-15, 3)), take(20, range(maxsize-15, maxsize+100, 3))
    [all...]
  /bionic/libc/tzcode/
strftime.c 135 strftime(char * const s, const size_t maxsize, const char *const format,
146 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn);
163 if (p == s + maxsize)
  /external/eigen/test/
triangular.cpp 211 int maxsize = (std::min)(EIGEN_TEST_MAX_SIZE,20); local
214 int r = internal::random<int>(2,maxsize); TEST_SET_BUT_UNUSED_VARIABLE(r)
215 int c = internal::random<int>(2,maxsize); TEST_SET_BUT_UNUSED_VARIABLE(c)
  /external/chromium_org/third_party/skia/src/xml/
SkJS.cpp 67 size_t strftime(char *strDest, size_t maxsize, const char *format,
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
parser.c 152 yylval.extop.maxsize);
re.h 11 int maxsize; member in struct:extop
  /external/skia/src/xml/
SkJS.cpp 67 size_t strftime(char *strDest, size_t maxsize, const char *format,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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)
test_xrange.py 129 M = min(sys.maxint, sys.maxsize)
154 # Valid xranges have at most min(sys.maxint, sys.maxsize) elements.
155 M = min(sys.maxint, sys.maxsize)
test_itertools.py 13 maxsize = test_support.MAX_Py_ssize_t variable
14 minsize = -maxsize-1
339 self.assertEqual(list(islice(count(maxsize-5), 10)), range(maxsize-5, maxsize+5))
340 self.assertEqual(list(islice(count(-maxsize-5), 10)), range(-maxsize-5, -maxsize+5))
371 self.assertEqual(take(20, count(maxsize-15, 3)), take(20, range(maxsize-15, maxsize+100, 3))
    [all...]
  /external/svox/pico/lib/
picoos.c 844 void picoos_emGetExceptionMessage(picoos_ExceptionManager this, picoos_char * msg, picoos_uint16 maxsize)
846 picoos_strlcpy(msg,this->curExceptionMessage,maxsize);
886 void picoos_emGetWarningMessage(picoos_ExceptionManager this, picoos_uint8 index, picoos_char * msg, picoos_uint16 maxsize)
889 picoos_strlcpy(msg,this->curWarningMessage[index],maxsize);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 1404 int maxsize = 0; local
1649 int maxsize = 0; local
    [all...]
  /external/libnl/lib/
addr.c 161 * @arg maxsize Maximum size of the binary address.
164 struct nl_addr *nl_addr_alloc(size_t maxsize)
168 addr = calloc(1, sizeof(*addr) + maxsize);
173 addr->a_maxsize = maxsize;
  /external/ppp/pppd/plugins/radius/
radiusclient.h 375 int maxsize, size; member in struct:env
  /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/pcre/dist/
pcretest.c 295 #define PCRE_JIT_STACK_ALLOC8(startsize, maxsize) \
296 pcre_jit_stack_alloc(startsize, maxsize)
389 #define PCRE_JIT_STACK_ALLOC16(startsize, maxsize) \
390 (pcre_jit_stack *)pcre16_jit_stack_alloc(startsize, maxsize)
481 #define PCRE_JIT_STACK_ALLOC32(startsize, maxsize) \
482 (pcre_jit_stack *)pcre32_jit_stack_alloc(startsize, maxsize)
677 #define PCRE_JIT_STACK_ALLOC(startsize, maxsize) \
679 PCRE_JIT_STACK_ALLOC32(startsize, maxsize) \
681 PCRE_JIT_STACK_ALLOC16(startsize, maxsize) \
682 : PCRE_JIT_STACK_ALLOC8(startsize, maxsize))
    [all...]
  /build/tools/droiddoc/templates-sdk/
sample.cs 56 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
  /build/tools/droiddoc/templates-sdk-dyn/
sample.cs 56 <?cs # embed image/videos if below maxsize (show message otherwise), else display source code ?>
  /build/tools/releasetools/
sign_target_files_apks 149 maxsize = max([len(os.path.basename(i.filename))
193 print " signing: %-*s (%s)" % (maxsize, name, key)

Completed in 2467 milliseconds

1 23 4 5 6 7 8