Searched defs:limit (Results 1 - 25 of 170) sorted by relevance

1234567

/openjdk7/hotspot/test/compiler/6885584/
H A DTest6885584.java40 static int limit = Integer.MAX_VALUE - 8; field in class:Test6885584
54 if (k <= limit) break;
/openjdk7/jdk/test/java/io/charStreams/
H A DStringGenerator.java31 private int limit; field in class:StringGenerator
34 public StringGenerator(IntGenerator ig, CharGenerator cg, int limit) { argument
37 this.limit = limit;
44 public StringGenerator(IntGenerator ig, int limit) { argument
45 this(ig, new CharGenerator(ig), limit);
52 public StringGenerator(int limit) { argument
53 this(new IntGenerator(), limit);
61 if ((count >= limit) && (limit >
[all...]
H A DLineGenerator.java31 int limit; field in class:LineGenerator
33 public LineGenerator(IntGenerator ig, StringGenerator sg, int limit) { argument
36 this.limit = limit;
42 this.limit = -1;
50 if ((count >= limit) && (limit >= 0))
H A DStringConvert.java37 static int limit = 500; field in class:StringConvert
58 sg = new StringGenerator(ig, cg, limit);
84 sg = new StringGenerator(ig, cg, limit);
100 sg = new StringGenerator(ig, cg, limit);
118 sg = new StringGenerator(ig, cg, limit);
135 sg = new StringGenerator(ig, cg, limit);
H A DLineNumbers.java36 static int limit = 500; field in class:LineNumbers
53 Thread t1 = new Thread(new RandomLineSource(w, limit));
54 Thread t2 = new Thread(new LineNumberSink(r, limit, log));
67 int limit; field in class:LineNumberSink
70 LineNumberSink(LineNumberReader r, int limit, PrintWriter log) { argument
72 this.limit = limit;
91 if (n != limit)
H A DRandomLineSource.java37 public RandomLineSource(OutputStream us, BufferedWriter ts, int limit, argument
44 lg = new LineGenerator(ig, new StringGenerator(ig), limit);
48 public RandomLineSource(OutputStream us, BufferedWriter ts, int limit) { argument
49 this(us, ts, limit, null);
52 public RandomLineSource(BufferedWriter ts, int limit) { argument
53 this(null, ts, limit);
/openjdk7/jdk/src/share/classes/sun/font/
H A DTextRecord.java39 public int limit; field in class:TextRecord
43 public void init(char[] text, int start, int limit, int min, int max) { argument
46 this.limit = limit;
H A DBidiUtils.java55 int limit = start + bidi.getLength();
57 if (start < 0 || limit > levels.length) {
59 " start: " + start + " limit: " + limit);
187 * Compute a contiguous order for the range start, limit.
190 int limit) {
192 int[] result = new int[limit-start];
239 * Return an array containing the data in the values array from start up to limit,
240 * normalized to fall within the range from 0 up to limit - start.
247 * @param limit th
189 computeContiguousOrder(int[] values, int start, int limit) argument
250 createNormalizedMap(int[] values, byte[] levels, int start, int limit) argument
[all...]
/openjdk7/jdk/test/java/io/Serializable/readPastObject/
H A DReadPastObject.java33 int limit; field in class:LimitInputStream
37 limit = b.length;
41 if (limit < 1)
42 throw new Error("limit exceeded");
45 limit--;
54 if (limit < len)
55 throw new Error("limit exceeded");
58 limit -= n;
/openjdk7/jdk/test/java/net/URL/
H A DB6529759.java49 protected void parseURL(java.net.URL u, String spec, int start, int limit) { argument
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DspaceDecorator.cpp100 void SpaceMangler::check_mangled_unused_area(HeapWord* limit) { argument
104 // space is beyond the specified limit;
105 if (end() > limit) return;
128 HeapWord* limit = end(); local
131 while (q < limit) {
/openjdk7/hotspot/src/share/vm/memory/
H A DpermGen.hpp50 void set_capacity_expansion_limit(size_t limit) { argument
52 _capacity_expansion_limit = limit;
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextJustifier.java53 private int limit; field in class:TextJustifier
59 * glyph. Start and limit indicate the range of the array to examine.
61 TextJustifier(GlyphJustificationInfo[] info, int start, int limit) { argument
64 this.limit = limit;
67 System.out.println("start: " + start + ", limit: " + limit);
68 for (int i = start; i < limit; i++) {
111 for (int i = start; i < limit; i++) {
133 if (i + 1 != limit) { // ignor
[all...]
/openjdk7/hotspot/test/compiler/6891750/
H A DTest6891750.java46 static int limit = 400000; field in class:Test6891750
68 for (int i = 0; i < limit; i++) {
/openjdk7/hotspot/test/compiler/7052494/
H A DTest7052494.java36 static int test1(int i, int limit) { argument
39 if (result >= limit)
46 static int test2(int i, int limit) { argument
49 if (result <= limit)
56 static void test3(int i, int limit, int arr[]) { argument
58 if (arr[i-1] >= limit)
64 static void test4(int i, int limit, int arr[]) { argument
66 if (arr[arr.length + i + 1] <= limit)
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_GDIObject.cpp48 * Default GDI Object limit for win2k and XP is 10,000
49 * Set our limit much lower than that to allow a buffer for objects
63 * Sets up max GDI limit; we query the registry key that
75 int limit = MAX_GDI_OBJECTS; local
86 // Set limit to 90% of the actual limit to account for other
88 limit = (int)(regValue * .9);
98 return limit;
103 * create a new GDI object. If the limit has been reached, skip the
150 // have hit the limit
[all...]
/openjdk7/jdk/test/java/io/BufferedReader/
H A DReadLine.java119 private int limit; field in class:ReadLine.BoundedReader
123 this.limit = content.length();
124 this.content = new char[limit];
125 content.getChars(0, limit, this.content, 0);
129 if (pos >= limit)
130 throw new RuntimeException("Read past limit");
H A DReady.java66 private int limit; field in class:Ready.BoundedReader
70 this.limit = content.length();
71 this.content = new char[limit];
72 content.getChars(0, limit, this.content, 0);
76 if (pos >= limit)
84 if (pos >= limit)
87 int readlen = (length > (limit - pos)) ? (limit - pos) : length;
98 if (pos < limit)
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DScriptAndLanguage.cpp93 le_uint16 limit = ((SWAPW(scriptRecordArray[0].offset) - sizeof(ScriptListTable)) / sizeof(scriptRecordArray)) + ANY_NUMBER; local
97 if (count > limit) {
99 // because limit may still be too large.
100 LEReferenceToArrayOf<ScriptRecord> scriptRecordArrayRef(base, success, &scriptRecordArray[0], limit);
101 for(le_int32 s = 0; (s < limit)&&LE_SUCCESS(success); s += 1) {
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiRun.java50 * <p>The &quot;limit&quot; of the run is the position just after the
61 int limit; /* last visual position of the run +1 */ field in class:BidiRun
69 * Note that members start and limit of a run instance have different
75 * - limit is one after the last visual position of the run.
78 * - limit is one after the last logical position of the run.
88 BidiRun(int start, int limit, byte embeddingLevel) argument
91 this.limit = limit;
101 this.limit = run.limit;
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DRangeValueIterator.java46 * <start, limit, value> where</p>
49 * <li> limit is 1 after the maximum integer that follows start, such that
50 * all integers between start and (limit - 1), inclusive, have the same
52 * <li> value is the integer value that all integers from start to (limit - 1)
57 * value(limit - 1). However value(start -1) != value(start) and
58 * value(limit) != value(start).
71 * Integer.toHexString(result.limit - 1) +
84 * Stores the start and limit of the continous result range and the
85 * common value all integers between [start, limit - 1] has.
103 public int limit; field in class:RangeValueIterator.Element
[all...]
H A DSymbolTable.java112 * @param limit the index after the last character to be parsed.
118 String parseReference(String text, ParsePosition pos, int limit); argument
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/mailto/
H A DHandler.java47 // int limit = s.length();
48 // char d[] = new char[limit];
50 // for (int sp = 0; sp < limit; sp++) {
52 // if (c == '%' && sp + 2 < limit) {
114 * @param limit the character position to stop parsing at.
116 public void parseURL(URL u, String spec, int start, int limit) { argument
123 if (start < limit) {
124 file = spec.substring(start, limit);
/openjdk7/hotspot/src/share/vm/ci/
H A DciExceptionHandler.hpp53 int start, int limit,
57 _limit = limit;
64 int limit() { return _limit; } function in class:ciExceptionHandler
73 return start() <= bci && bci < limit();
52 ciExceptionHandler(ciInstanceKlass* loading_klass, int start, int limit, int handler_bci, int klass_index) argument
/openjdk7/hotspot/test/compiler/5091921/
H A DTest5091921.java38 public static int test_ge1(int limit) { argument
41 for (indx = 500; indx >= limit; indx -= 2) {
49 public static int test_le1(int limit) { argument
52 for (indx = -500; indx <= limit; indx += 2)
61 /* limit reset to ((limit-init+stride-1)/stride)*stride+init */
64 public static int test_wrap1(int limit) argument
68 for (indx = 0xffffffff; indx < limit; indx += 0x20000000)
76 scale*i+offset<limit where offset is not 0 */
78 public static int test_rce5(int[] b, int limit) argument
112 test_rce6(int[] b, int limit) argument
[all...]

Completed in 109 milliseconds

1234567