Home
last modified time | relevance | path

Searched refs:maxint (Results 1 – 25 of 34) sorted by relevance

12

/external/chromium_org/third_party/cython/src/Cython/Plex/
DTransitions.py8 from sys import maxint as maxint unknown
43 map = [-maxint, {}, maxint]
117 len = len, maxint = maxint): argument
127 if code == maxint:
167 if code == -maxint:
169 elif code == maxint:
209 if code0 == -maxint:
210 if code1 == maxint:
214 elif code1 == maxint:
DMachines.py13 LOWEST_PRIORITY = -sys.maxint
171 def add_transitions(self, state, event, new_state, maxint=sys.maxint): argument
174 if code0 == -maxint:
176 elif code1 != maxint:
DRegexps.py10 from sys import maxint as maxint unknown
469 ranges.insert(0, -maxint)
470 ranges.append(maxint)
/external/chromium_org/third_party/icu/source/test/intltest/
Dpunyref.c103 static const punycode_uint maxint = (punycode_uint) (-1); variable
168 for (m = maxint, j = 0; j < input_length; ++j) { in punycode_encode()
177 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow; in punycode_encode()
262 if (digit > (maxint - i) / w) return punycode_overflow; in punycode_decode()
267 if (w > maxint / (base - t)) return punycode_overflow; in punycode_decode()
276 if (i / (out + 1) > maxint - n) return punycode_overflow; in punycode_decode()
/external/icu/icu4c/source/test/intltest/
Dpunyref.c103 static const punycode_uint maxint = (punycode_uint) (-1); variable
168 for (m = maxint, j = 0; j < input_length; ++j) { in punycode_encode()
177 if (m - n > (maxint - delta) / (h + 1)) return punycode_overflow; in punycode_encode()
262 if (digit > (maxint - i) / w) return punycode_overflow; in punycode_decode()
267 if (w > maxint / (base - t)) return punycode_overflow; in punycode_decode()
276 if (i / (out + 1) > maxint - n) return punycode_overflow; in punycode_decode()
/external/chromium_org/v8/test/webkit/fast/js/kde/
DArray.js158 var maxint = Math.pow(2,32)-1; variable
166 arr[maxint] = "test";
169 delete arr[maxint];
172 arr[maxint-1] = "test2";
DArray-expected.txt96 PASS arr[maxint] is "test"
98 PASS arr[maxint] is undefined
99 PASS arr.length is maxint
100 PASS arr[maxint-1] is "test2"
/external/lldb/test/python_api/default-constructor/
Dsb_module.py13 obj.ResolveFileAddress(sys.maxint)
17 obj.GetSymbolAtIndex(sys.maxint)
Dsb_breakpoint.py11 obj.FindLocationByAddress(sys.maxint)
12 obj.FindLocationIDByAddress(sys.maxint)
Dsb_address.py12 obj.OffsetAddress(sys.maxint)
/external/clang/test/PCH/
Dstmts.h93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; }) macro
95 return maxint(++x, --y); in weird_max()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
Dplatforminfo.py111 return sys.maxint
120 return sys.maxint
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
Dmemorizingfile.py50 def __init__(self, file_, max_memorized_lines=sys.maxint):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
Dmemorizingfile.py50 def __init__(self, file_, max_memorized_lines=sys.maxint):
/external/stlport/test/unit/
Dsstream_test.cpp28 CPPUNIT_TEST(maxint);
48 void maxint();
201 void SstreamTest::maxint() in maxint() function in SstreamTest
/external/chromium_org/media/tools/layout_tests/
Dtest_expectations_history.py80 while gobackdays < sys.maxint:
/external/chromium_org/v8/tools/push-to-trunk/
Dauto_tag.py124 next_svn = sys.maxint
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
Dmetered_stream.py64 self._number_of_columns = sys.maxint
Dprinting_unittest.py206 printer._meter.number_of_columns = lambda: sys.maxint
/external/deqp/modules/gles3/scripts/
Dgen-swizzles.py9 indices = xrange(sys.maxint)
/external/deqp/modules/gles2/scripts/
Dgen-swizzles.py9 indices = xrange(sys.maxint)
/external/chromium_org/tools/clang/blink_gc_plugin/
Dprocess-graph.py114 self.cost = sys.maxint
277 if src.cost < sys.maxint:
/external/sonivox/jet_tools/JetCreator/
DJetCtrls.py124 index = self.InsertStringItem(sys.maxint, row)
182 index = self.InsertStringItem(sys.maxint, row)
231 index = self.InsertStringItem(sys.maxint, str(track.track))
DJetAudition.py214 index = self.segList.InsertStringItem(sys.maxint, StrNoneChk(segment.segname))
329 index = self.queueList.InsertStringItem(sys.maxint, item.name)
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
Dcldutil.h961 static inline int maxint(int a, int b) {return (a > b) ? a: b;} in maxint() function

12