/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);
|
/dalvik/vm/mterp/armv5te/ |
OP_DOUBLE_TO_INT.S | 17 mov r2, #0x80000000 @ maxint, as a double (low word) 20 mvn r3, #0xbe000000 @ maxint, as a double (high word) 24 bl __aeabi_dcmpge @ is arg >= maxint? 26 mvnne r0, #0x80000000 @ return maxint (0x7fffffff)
|
OP_FLOAT_TO_INT.S | 17 mov r1, #0x4f000000 @ (float)maxint 19 bl __aeabi_fcmpge @ is arg >= maxint? 21 mvnne r0, #0x80000000 @ return maxint (7fffffff)
|
/dalvik/vm/mterp/armv6t2/ |
OP_DOUBLE_TO_INT.S | 17 mov r2, #0x80000000 @ maxint, as a double (low word) 20 mvn r3, #0xbe000000 @ maxint, as a double (high word) 24 bl __aeabi_dcmpge @ is arg >= maxint? 26 mvnne r0, #0x80000000 @ return maxint (0x7fffffff)
|
OP_FLOAT_TO_INT.S | 17 mov r1, #0x4f000000 @ (float)maxint 19 bl __aeabi_fcmpge @ is arg >= maxint? 21 mvnne r0, #0x80000000 @ return maxint (7fffffff)
|
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_FLOAT_TO_INT_VFP.S | 9 li a1, 0x4f000000 # (float)maxint 11 JAL(__gesf2) # is arg >= maxint? 13 li v0, ~0x80000000 # return maxint (7fffffff)
|
TEMPLATE_DOUBLE_TO_INT_VFP.S | 19 JAL(__gedf2) # is arg >= maxint? 22 li v0, ~0x80000000 # return maxint (7fffffff)
|
/dalvik/vm/mterp/mips/ |
OP_FLOAT_TO_INT.S | 10 li a1, 0x4f000000 # (float)maxint 12 JAL(__gesf2) # is arg >= maxint? 14 li v0, ~0x80000000 # return maxint (7fffffff)
|
OP_DOUBLE_TO_INT.S | 20 JAL(__gedf2) # is arg >= maxint? 23 li v0, ~0x80000000 # return maxint (7fffffff)
|
/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...] |
/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:
|
/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/icu4c/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):
|