/third_party/icu/icu4c/source/test/intltest/ |
D | punyref.cpp | 105 static const punycode_uint maxint = (punycode_uint) (-1); variable 170 for (m = maxint, j = 0; j < input_length; ++j) { in punycode_encode() 179 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow; in punycode_encode() 264 if (digit > (maxint - i) / w) return punycode_overflow; in punycode_decode() 269 if (w > maxint / (base - t)) return punycode_overflow; in punycode_decode() 278 if (i / (out + 1) > maxint - n) return punycode_overflow; in punycode_decode()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
D | PunycodeReference.java | 116 private static long maxint = 0xFFFFFFFFL; field in PunycodeReference 177 for (m = maxint, j = 0; j < input_length; ++j) { in encode() 186 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow; in encode() 346 if (digit > (maxint - i) / w) return punycode_overflow; in decode() 351 if (w > maxint / (base - t)) return punycode_overflow; in decode() 360 if (i / (out + 1) > maxint - n) return punycode_overflow; in decode()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
D | PunycodeReference.java | 119 private static long maxint = 0xFFFFFFFFL; field in PunycodeReference 180 for (m = maxint, j = 0; j < input_length; ++j) { in encode() 189 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow; in encode() 349 if (digit > (maxint - i) / w) return punycode_overflow; in decode() 354 if (w > maxint / (base - t)) return punycode_overflow; in decode() 363 if (i / (out + 1) > maxint - n) return punycode_overflow; in decode()
|
/third_party/node/deps/openssl/openssl/crypto/ |
D | punycode.c | 23 static const unsigned int maxint = 0xFFFFFFFF; variable 163 if ((unsigned int)digit > (maxint - i) / w) in ossl_punycode_decode() 172 if (w > maxint / (base - t)) in ossl_punycode_decode() 178 if (i / (written_out + 1) > maxint - n) in ossl_punycode_decode()
|
/third_party/openssl/crypto/ |
D | punycode.c | 23 static const unsigned int maxint = 0xFFFFFFFF; variable 163 if ((unsigned int)digit > (maxint - i) / w) in ossl_punycode_decode() 172 if (w > maxint / (base - t)) in ossl_punycode_decode() 178 if (i / (written_out + 1) > maxint - n) in ossl_punycode_decode()
|
/third_party/python/Lib/ctypes/test/ |
D | test_memfunctions.py | 15 lambda: wstring_at(u"foo", sys.maxint - 1)) 17 lambda: string_at("foo", sys.maxint - 1))
|
/third_party/python/Lib/test/ |
D | test_sysconfig.py | 173 maxint = sys.maxsize 180 sys.maxsize = maxint 191 maxint = sys.maxsize 198 sys.maxsize = maxint
|
/third_party/python/Lib/lib2to3/tests/data/ |
D | py2_test_grammar.py | 35 from sys import maxint 36 if maxint == 2147483647: 46 elif maxint == 9223372036854775807: 57 self.fail('Weird maxint value %r' % maxint)
|
/third_party/python/Modules/ |
D | _struct.c | 918 unsigned long maxint = 1; in bp_uint() local 919 maxint <<= (unsigned long)(i * 8); in bp_uint() 920 if (x >= maxint) in bp_uint() 921 RANGE_ERROR(state, x, f, 1, maxint - 1); in bp_uint() 1133 unsigned long maxint = 1; in lp_uint() local 1134 maxint <<= (unsigned long)(i * 8); in lp_uint() 1135 if (x >= maxint) in lp_uint() 1136 RANGE_ERROR(state, x, f, 1, maxint - 1); in lp_uint()
|
/third_party/vk-gl-cts/modules/gles3/scripts/ |
D | gen-swizzles.py | 31 indices = xrange(sys.maxint)
|
D | gen-conversions.py | 31 indices = xrange(sys.maxint)
|
/third_party/vk-gl-cts/modules/gles2/scripts/ |
D | gen-swizzles.py | 31 indices = xrange(sys.maxint)
|
D | gen-conversions.py | 31 indices = xrange(sys.maxint)
|
/third_party/python/Doc/library/ |
D | 2to3.rst | 391 Changes :data:`sys.maxint` to :data:`sys.maxsize`.
|
/third_party/python/Doc/whatsnew/ |
D | 3.0.rst | 217 * The :data:`sys.maxint` constant was removed, since there is no 221 and is typically the same as :data:`sys.maxint` in previous releases
|
/third_party/python/Misc/ |
D | HISTORY | 12345 1900 through maxint. The range for time.ctime is the same as for 17130 - Removed sys.maxint, use sys.maxsize instead. 17774 - Bug #1441486: The literal representation of -(sys.maxint - 1) 17993 an integer close to ``sys.maxint``. This was repaired by patch 18824 - Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint 21647 larger than sys.maxint, as long as the total length of the sequence 21919 range sys.maxint+1 through sys.maxint*2+1, inclusive; these have 22889 - random.randrange(-sys.maxint-1, sys.maxint) no longer raises 25467 xrange(sys.maxint) can be used on 64-bit platforms. There's still a 25468 limitation that in this case len(xrange(sys.maxint)) can't be [all …]
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 125760 rawparse: increase framerate to maxint
|