Searched defs:maxint (Results 1 - 5 of 5) sorted by relevance
/external/clang/test/PCH/ |
H A D | stmts.h | 93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; }) macro 95 return maxint(++x, --y);
|
/external/v8/test/webkit/fast/js/kde/ |
H A D | 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\"");
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
H A D | PunycodeReference.java | 114 /* maxint is the maximum value of a punycode_uint variable: */ 115 private static long maxint = 0xFFFFFFFFL; field in class:PunycodeReference 116 /* Because maxint is unsigned, -1 becomes the maximum value. */ 176 for (m = maxint, j = 0; j < input_length; ++j) { 185 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow; 345 if (digit > (maxint - i) / w) return punycode_overflow; 350 if (w > maxint / (base - t)) return punycode_overflow; 359 if (i / (out + 1) > maxint - n) return punycode_overflow;
|
/external/icu/icu4c/source/test/intltest/ |
H A D | 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/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
H A D | PunycodeReference.java | 113 /* maxint is the maximum value of a punycode_uint variable: */ 114 private static long maxint = 0xFFFFFFFFL; field in class:PunycodeReference 115 /* Because maxint is unsigned, -1 becomes the maximum value. */ 175 for (m = maxint, j = 0; j < input_length; ++j) { 184 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow; 344 if (digit > (maxint - i) / w) return punycode_overflow; 349 if (w > maxint / (base - t)) return punycode_overflow; 358 if (i / (out + 1) > maxint - n) return punycode_overflow;
|
Completed in 129 milliseconds