HomeSort by relevance Sort by last modified time
    Searched defs:maxint (Results 1 - 9 of 9) sorted by null

  /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/icu/icu4c/source/test/intltest/
punyref.cpp 104 /* maxint is the maximum value of a punycode_uint variable: */
105 static const punycode_uint maxint = (punycode_uint) (-1); variable
106 /* Because maxint is unsigned, -1 becomes the maximum value. */
170 for (m = maxint, j = 0; j < input_length; ++j) {
179 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
264 if (digit > (maxint - i) / w) return punycode_overflow;
269 if (w > maxint / (base - t)) return punycode_overflow;
278 if (i / (out + 1) > maxint - n) return punycode_overflow;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
PunycodeReference.java 118 /* maxint is the maximum value of a punycode_uint variable: */
119 private static long maxint = 0xFFFFFFFFL; field in class:PunycodeReference
120 /* Because maxint is unsigned, -1 becomes the maximum value. */
180 for (m = maxint, j = 0; j < input_length; ++j) {
189 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
349 if (digit > (maxint - i) / w) return punycode_overflow;
354 if (w > maxint / (base - t)) return punycode_overflow;
363 if (i / (out + 1) > maxint - n) return punycode_overflow;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
PunycodeReference.java 115 /* maxint is the maximum value of a punycode_uint variable: */
116 private static long maxint = 0xFFFFFFFFL; field in class:PunycodeReference
117 /* Because maxint is unsigned, -1 becomes the maximum value. */
177 for (m = maxint, j = 0; j < input_length; ++j) {
186 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow;
346 if (digit > (maxint - i) / w) return punycode_overflow;
351 if (w > maxint / (base - t)) return punycode_overflow;
360 if (i / (out + 1) > maxint - n) return punycode_overflow;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_struct.c 844 unsigned long maxint = 1; local
845 maxint <<= (unsigned long)(i * 8);
846 if (x >= maxint)
1064 unsigned long maxint = 1; local
1065 maxint <<= (unsigned long)(i * 8);
1066 if (x >= maxint)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_struct.c 844 unsigned long maxint = 1; local
845 maxint <<= (unsigned long)(i * 8);
846 if (x >= maxint)
1064 unsigned long maxint = 1; local
1065 maxint <<= (unsigned long)(i * 8);
1066 if (x >= maxint)
    [all...]
  /external/python/cpython2/Modules/
_struct.c 844 unsigned long maxint = 1; local
845 maxint <<= (unsigned long)(i * 8);
846 if (x >= maxint)
1064 unsigned long maxint = 1; local
1065 maxint <<= (unsigned long)(i * 8);
1066 if (x >= maxint)
    [all...]
  /external/python/cpython3/Modules/
_struct.c 898 unsigned long maxint = 1; local
899 maxint <<= (unsigned long)(i * 8);
900 if (x >= maxint)
901 RANGE_ERROR(x, f, 1, maxint - 1);
1117 unsigned long maxint = 1; local
1118 maxint <<= (unsigned long)(i * 8);
1119 if (x >= maxint)
1120 RANGE_ERROR(x, f, 1, maxint - 1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
Enquire.c 952 int maxint; variable
    [all...]

Completed in 411 milliseconds