Searched refs:end (Results 101 - 125 of 1325) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/native/utilities/
H A Dtest_bitMap_search.cpp52 TestIteratorFn(size_t start, size_t end, size_t left, size_t right);
69 TestIteratorFn::TestIteratorFn(size_t start, size_t end, argument
71 _index(0), _count(0), _start(start), _end(end), _left(left), _right(right)
134 // Test searches with various start and end ranges.
151 idx_t end = c_end * search_chunk_size + search_offsets[o_end]; local
152 // Similarly to start and left, terminate end iteration if
153 // end is more than two full chunks beyond right.
154 if (right + 2 * search_chunk_size < end) {
161 if (MAX2(start, left) + 2 * search_chunk_size < end) {
162 if (end
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/text/
H A DSupplementaryCharacterData.java79 int end = dataTable[k+1] >> 8;
83 } else if (index > (end-1)) {
/openjdk10/jdk/src/java.desktop/macosx/native/libosxapp/
H A DNSApplicationAWT.h51 @end
58 @end
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/
H A DSpans.java69 * but not including {@code end}.
71 public void add(float start, float end) { argument
74 mSpans.add(new Span(start, end));
98 * but not including, {@code end} intersects
101 public boolean intersects(float start, float end) { argument
120 new Span(start, end),
235 * {@code end}.
237 Span(float start, float end) { argument
239 mEnd = end;
252 * Return the end o
272 setEnd(float end) argument
[all...]
/openjdk10/jdk/test/java/awt/geom/Path2D/
H A DPath2DGrow.java98 long start, end;
105 end = System.nanoTime();
107 + (1e-6 * (end - start)) + " ms.");
111 end = System.nanoTime();
113 + (1e-6 * (end - start)) + " ms.");
117 end = System.nanoTime();
119 + (1e-6 * (end - start)) + " ms.");
123 end = System.nanoTime();
125 + (1e-6 * (end - start)) + " ms.");
129 end
[all...]
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DpsMarkSweepDecorator.cpp103 HeapWord* compact_end = dest->space()->end();
110 HeapWord* first_dead = space()->end(); /* The first dead object. */
139 compact_end = dest->space()->end();
163 assert(compact_top <= dest->space()->end(),
170 HeapWord* end = q; local
172 /* prefetch beyond end */
173 Prefetch::write(end, interval);
174 end += oop(end)->size();
175 } while (end <
285 HeapWord* end = _first_dead; local
338 HeapWord* const end = _first_dead; local
[all...]
/openjdk10/hotspot/src/share/vm/utilities/
H A DbitMap.hpp93 // Utilities for ranges of bits. Ranges are half-open [beg, end).
96 bm_word_t inverted_bit_mask_for_range(idx_t beg, idx_t end) const;
97 void set_range_within_word (idx_t beg, idx_t end);
98 void clear_range_within_word (idx_t beg, idx_t end);
99 void par_put_range_within_word (idx_t beg, idx_t end, bool value);
102 void set_range_of_words (idx_t beg, idx_t end);
103 void clear_range_of_words (idx_t beg, idx_t end);
104 void set_large_range_of_words (idx_t beg, idx_t end);
105 void clear_large_range_of_words (idx_t beg, idx_t end);
107 static void clear_range_of_words(bm_word_t* map, idx_t beg, idx_t end);
[all...]
H A Dticks.cpp43 Tickspan::Tickspan(const Ticks& end, const Ticks& start) { argument
44 assert(end.value() != Ticks::invalid_time_stamp, "end is unstamped!");
47 assert(end >= start, "negative time!");
49 _span_ticks = end.value() - start.value();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DMarkBits.java42 end = reserved.end();
43 long numOopHandles = end.minus(start) / VM.getVM().getOopSize();
92 private Address end; field in class:MarkBits
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DSpace.java40 <P> Invariant: bottom() and end() are on page_size boundaries and: </P>
42 <P> bottom() <= top() <= end() </P>
44 <P> top() is inclusive and end() is exclusive. </P> */
70 public Address end() { return endField.getValue(addr); } method in class:Space
75 return new MemRegion(bottom(), end());
96 public long capacity() { return end().minus(bottom()); }
104 return (bottom().lessThanOrEqual(p) && end().greaterThan(p));
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/
H A DSAEditorPane.java55 int end = getSelectionEnd();
69 if (rangeEnd < start || rangeStart > end) continue;
70 if (end < rangeEnd) rangeEnd = end;
90 // put the cursor at the top instead of leaving it at the end.
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/parallel/
H A DImmutableSpace.java60 public Address end() { return endField.getValue(addr); } method in class:ImmutableSpace
65 return new MemRegion(bottom(), end());
79 public long capacity() { return end().minus(bottom()); }
85 return (bottom().lessThanOrEqual(p) && end().greaterThan(p));
/openjdk10/hotspot/test/compiler/codegen/aes/
H A DTestAESMain.java115 long end = System.nanoTime();
116 System.out.println("TestAESEncode runtime was " + (double) ((end - start) / 1000000.0) + " ms");
130 end = System.nanoTime();
131 System.out.println("TestAESDecode runtime was " + (double) ((end - start) / 1000000.0) + " ms");
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDateTimeDV.java63 int end = indexOf (str, 0, len, 'T');
66 int dateEnd = getDate(str, 0, end, date);
67 getTime(str, end+1, len, date);
70 if (dateEnd != end) {
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DCR6652519Test.java61 long end = System.currentTimeMillis();
62 System.out.println("Test2:Total Time Taken=" + (end - start));
74 long end = System.currentTimeMillis();
75 System.out.println("Test1: Total Time Taken=" + (end - start));
/openjdk10/jdk/src/java.desktop/macosx/native/include/
H A Djawt_md.h70 @end
/openjdk10/jdk/src/java.desktop/macosx/native/libawt_lwawt/awt/
H A DAWTSurfaceLayers.h35 * @end
49 @end
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/peer/
H A DTextAreaPeer.java56 * @param end the end of the range to replace
60 void replaceRange(String text, int start, int end); argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DClip.java186 * @param end the loop's ending position, in sample frames (zero-based), or
192 void setLoopPoints(int start, int end); argument
196 * to the loop's end point, then loop back to the loop start point
197 * {@code count} times, and finally continue playback to the end of the
201 * loop end point, playback simply continues to the end of the clip without
205 * cease and playback should continue to the end of the clip. The behavior
214 * loop's end position to the loop's start position, or
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-buffer-private.hh135 unsigned int end = start + count; local
136 assert (end <= 8);
137 unsigned int bits = (1u<<end) - (1u<<start);
145 unsigned int end = start + count; local
146 assert (end <= 8);
147 unsigned int bits = (1u<<end) - (1u<<start);
155 unsigned int end = start + count; local
156 assert (end <= 8);
157 unsigned int bits = (1u<<end) - (1u<<start);
184 HB_INTERNAL void reverse_range (unsigned int start, unsigned int end);
240 merge_clusters(unsigned int start, unsigned int end) argument
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/handler/
H A DHandlerProcessor.java262 private boolean callHandleMessage(C context, int start, int end) { argument
272 if (start > end) {
273 while (i >= end) {
281 while (i <= end) {
305 private boolean callHandleMessageReverse(C context, int start, int end) { argument
315 if (start > end) {
316 while (i >= end) {
325 while (i <= end) {
343 private boolean callHandleFault(C context, int start, int end) { argument
352 if (start > end) {
387 closeHandlers(MessageContext context, int start, int end) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DAppendable.java77 * <p> An invocation of this method of the form {@code out.append(csq, start, end)}
82 * out.append(csq.subSequence(start, end)) </pre>
93 * @param end
100 * If {@code start} or {@code end} are negative, {@code start}
101 * is greater than {@code end}, or {@code end} is greater than
107 Appendable append(CharSequence csq, int start, int end) throws IOException; argument
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/server/
H A DDeserializationChecker.java92 public default void end(int callID) {} method in interface:DeserializationChecker
/openjdk10/jdk/test/java/time/test/java/time/format/
H A DMockIOExceptionAppendable.java77 public Appendable append(CharSequence csq, int start, int end) argument
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DRegex.java88 public Regex(final char[] chars, final int p, final int end) { argument
89 this(chars, p, end, 0);
92 public Regex(final char[] chars, final int p, final int end, final int option) { argument
93 this(chars, p, end, option, Syntax.RUBY, WarnCallback.DEFAULT);
97 public Regex(final char[] chars, final int p, final int end, final int option, final Syntax syntax) { argument
98 this(chars, p, end, option, Config.ENC_CASE_FOLD_DEFAULT, syntax, WarnCallback.DEFAULT);
101 public Regex(final char[]chars, final int p, final int end, final int option, final WarnCallback warnings) { argument
102 this(chars, p, end, option, Syntax.RUBY, warnings);
106 public Regex(final char[] chars, final int p, final int end, final int option, final Syntax syntax, final WarnCallback warnings) { argument
107 this(chars, p, end, optio
111 Regex(final char[] chars, final int p, final int end, final int optionp, final int caseFoldFlag, final Syntax syntax, final WarnCallback warnings) argument
139 matcher(final char[] chars, final int p, final int end) argument
[all...]

Completed in 302 milliseconds

1234567891011>>