HomeSort by relevance Sort by last modified time
    Searched refs:maxint (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/PCH/
stmts.h 93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; }) macro
95 return maxint(++x, --y);
  /external/lldb/test/python_api/default-constructor/
sb_breakpoint.py 11 obj.FindLocationByAddress(sys.maxint)
12 obj.FindLocationIDByAddress(sys.maxint)
sb_module.py 13 obj.ResolveFileAddress(sys.maxint)
17 obj.GetSymbolAtIndex(sys.maxint)
sb_address.py 12 obj.OffsetAddress(sys.maxint)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sysconfig.py 147 maxint = sys.maxint
149 sys.maxint = 2147483647
151 sys.maxint = 9223372036854775807
154 sys.maxint = maxint
167 maxint = sys.maxint
169 sys.maxint = 2147483647
171 sys.maxint = 922337203685477580
    [all...]
test_xrange.py 111 self.assertEqual(len(xrange(0, sys.maxint, sys.maxint-1)), 2)
113 self.assertRaises(OverflowError, xrange, -sys.maxint, sys.maxint)
114 self.assertRaises(OverflowError, xrange, 0, 2*sys.maxint)
116 r = xrange(-sys.maxint, sys.maxint, 2)
117 self.assertEqual(len(r), sys.maxint)
118 self.assertRaises(OverflowError, xrange, -sys.maxint-1, sys.maxint, 2
    [all...]
test_list.py 23 # This assumes that the max data size (sys.maxint) == max
33 self.assertRaises(MemoryError, list, xrange(sys.maxint // 2))
56 n = int((sys.maxint*2+2) // len(lst))
test_macostools.py 54 if sys.maxint < 2**32:
60 if sys.maxint < 2**32:
string_tests.py 126 self.checkequal(0, '', 'count', '', sys.maxint, 0)
130 self.checkequal(0, '', 'count', 'xx', sys.maxint, 0)
183 self.checkequal(-1, '', 'find', '', sys.maxint, 0)
187 self.checkequal(-1, '', 'find', 'xx', sys.maxint, 0)
328 if sys.maxint < (1 << 32) and struct.calcsize('P') == 4:
330 '\ta\n\tb', 'expandtabs', sys.maxint)
343 sys.maxint-1)
368 sys.maxint-2)
387 sys.maxint-10)
430 sys.maxint-20
    [all...]
test_enumerate.py 238 enum = lambda self, i: enumerate(i, start=sys.maxint+1)
239 seq, res = 'abc', [(sys.maxint+1,'a'), (sys.maxint+2,'b'),
240 (sys.maxint+3,'c')]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sysconfig.py 147 maxint = sys.maxint
149 sys.maxint = 2147483647
151 sys.maxint = 9223372036854775807
154 sys.maxint = maxint
167 maxint = sys.maxint
169 sys.maxint = 2147483647
171 sys.maxint = 922337203685477580
    [all...]
test_xrange.py 111 self.assertEqual(len(xrange(0, sys.maxint, sys.maxint-1)), 2)
113 self.assertRaises(OverflowError, xrange, -sys.maxint, sys.maxint)
114 self.assertRaises(OverflowError, xrange, 0, 2*sys.maxint)
116 r = xrange(-sys.maxint, sys.maxint, 2)
117 self.assertEqual(len(r), sys.maxint)
118 self.assertRaises(OverflowError, xrange, -sys.maxint-1, sys.maxint, 2
    [all...]
test_list.py 23 # This assumes that the max data size (sys.maxint) == max
33 self.assertRaises(MemoryError, list, xrange(sys.maxint // 2))
56 n = int((sys.maxint*2+2) // len(lst))
test_macostools.py 54 if sys.maxint < 2**32:
60 if sys.maxint < 2**32:
string_tests.py 126 self.checkequal(0, '', 'count', '', sys.maxint, 0)
130 self.checkequal(0, '', 'count', 'xx', sys.maxint, 0)
183 self.checkequal(-1, '', 'find', '', sys.maxint, 0)
187 self.checkequal(-1, '', 'find', 'xx', sys.maxint, 0)
328 if sys.maxint < (1 << 32) and struct.calcsize('P') == 4:
330 '\ta\n\tb', 'expandtabs', sys.maxint)
343 sys.maxint-1)
368 sys.maxint-2)
387 sys.maxint-10)
430 sys.maxint-20
    [all...]
test_enumerate.py 238 enum = lambda self, i: enumerate(i, start=sys.maxint+1)
239 seq, res = 'abc', [(sys.maxint+1,'a'), (sys.maxint+2,'b'),
240 (sys.maxint+3,'c')]
  /external/chromium_org/third_party/icu/source/test/intltest/
punyref.c 102 /* maxint is the maximum value of a punycode_uint variable: */
103 static const punycode_uint maxint = (punycode_uint) (-1); variable
104 /* Because maxint is unsigned, -1 becomes the maximum value. */
168 for (m = maxint, j = 0; j < input_length; ++j) {
177 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
262 if (digit > (maxint - i) / w) return punycode_overflow;
267 if (w > maxint / (base - t)) return punycode_overflow;
276 if (i / (out + 1) > maxint - n) return punycode_overflow;
  /external/icu/icu4c/source/test/intltest/
punyref.c 102 /* maxint is the maximum value of a punycode_uint variable: */
103 static const punycode_uint maxint = (punycode_uint) (-1); variable
104 /* Because maxint is unsigned, -1 becomes the maximum value. */
168 for (m = maxint, j = 0; j < input_length; ++j) {
177 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
262 if (digit > (maxint - i) / w) return punycode_overflow;
267 if (w > maxint / (base - t)) return punycode_overflow;
276 if (i / (out + 1) > maxint - n) return punycode_overflow;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
memorizingfile.py 50 def __init__(self, file_, max_memorized_lines=sys.maxint):
57 Default: sys.maxint.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
memorizingfile.py 50 def __init__(self, file_, max_memorized_lines=sys.maxint):
57 Default: sys.maxint.
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Array.js 158 var maxint = Math.pow(2,32)-1; variable
166 arr[maxint] = "test";
168 shouldBe("arr[maxint]","\"test\"");
169 delete arr[maxint];
171 shouldBe("arr[maxint]","undefined");
172 arr[maxint-1] = "test2";
173 shouldBe("arr.length","maxint");
174 shouldBe("arr[maxint-1]","\"test2\"");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 65 def count(self, sub, start=0, end=sys.maxint):
83 def endswith(self, suffix, start=0, end=sys.maxint):
87 def find(self, sub, start=0, end=sys.maxint):
89 def index(self, sub, start=0, end=sys.maxint):
109 def rfind(self, sub, start=0, end=sys.maxint):
111 def rindex(self, sub, start=0, end=sys.maxint):
123 def startswith(self, prefix, start=0, end=sys.maxint):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 65 def count(self, sub, start=0, end=sys.maxint):
83 def endswith(self, suffix, start=0, end=sys.maxint):
87 def find(self, sub, start=0, end=sys.maxint):
89 def index(self, sub, start=0, end=sys.maxint):
109 def rfind(self, sub, start=0, end=sys.maxint):
111 def rindex(self, sub, start=0, end=sys.maxint):
123 def startswith(self, prefix, start=0, end=sys.maxint):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 98 """Returns sys.maxint if the width cannot be determined."""
111 return sys.maxint
120 return sys.maxint
  /frameworks/base/tools/layoutlib/rename_font/
build_font_single.py 123 last_name_id = sys.maxint
151 last_name_id = sys.maxint

Completed in 403 milliseconds

1 2 3 4 5 6 7