Searched defs:first (Results 76 - 100 of 162) sorted by relevance

1234567

/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp211 void set_pair( VMReg second, VMReg first ) { _second= second; _first= first; }
241 VMReg first() const { return _first; } function in class:VMRegPair
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsatbQueue.cpp36 // first before we flush it, otherwise we might end up with an
116 // This method will first apply the above filtering to the buffer. If
221 void SATBMarkQueueSet::dump_active_values(JavaThread* first, argument
228 for (JavaThread* t = first; t; t = t->next()) {
239 JavaThread* first = Threads::first(); local
243 dump_active_values(first, expected_active);
256 for (JavaThread* t = first; t; t = t->next()) {
260 dump_active_values(first, expected_active);
276 for(JavaThread* t = Threads::first();
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dheap.hpp144 size_t alignment_offset() const; // offset of first byte of any block, within the enclosing alignment unit
154 // returns the first block or NULL
155 void* first() const { return next_free(first_block()); } function in class:CodeHeap
/openjdk7/jdk/src/share/classes/java/awt/
H A DCardLayout.java42 * a stack of cards. The first component added to a
44 * container is first displayed.
409 * Flips to the first card of the container.
413 public void first(Container parent) { method in class:CardLayout
435 * first card in the layout.
460 * currently visible card is the first one, this method flips to the
495 * @see java.awt.CardLayout#first
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp213 int first = (_next + _length - _num) % _length; local
216 double y = _sequence[(first + i) % _length];
H A DgrowableArray.hpp230 E first() const { function in class:GrowableArray
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DAbstractAxisImpl.java72 protected final Iterator<T> union(Iterator<? extends T> first, Iterator<? extends T> second) { argument
73 return new Iterators.Union<T>(first,second);
/openjdk7/jdk/test/java/io/File/
H A DGetXSpace.java69 private static Throwable first; field in class:GetXSpace
76 if (first == null)
84 if (first == null)
92 if (first == null)
102 first = x;
385 + fail + " failure(s), first", first);
/openjdk7/jdk/test/java/nio/file/Path/
H A DPathOps.java39 private PathOps(String first, String... more) { argument
41 input = first;
43 path = FileSystems.getDefault().getPath(first, more);
44 out.format("%s -> %s", first, path);
47 out.format("%s -> %s", first, x);
208 static PathOps test(String first, String... more) { argument
209 return new PathOps(first, more);
/openjdk7/jdk/test/java/nio/file/spi/
H A DTestProvider.java226 public Path getPath(String first, String... more) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DListBuffer.java185 /** The first element in this buffer.
187 public A first() { method in class:ListBuffer
191 /** Return first element in this buffer and remove
264 return first();
/openjdk7/jdk/src/share/instrument/
H A DPathCharsValidator.c75 * between first and last, inclusive
77 static jlong lowMaskRange(char first, char last) { argument
79 int f = max(min(first, 63), 0);
91 * between first and last, inclusive
93 static jlong highMaskRange(char first, char last) { argument
95 int f = max(min(first, 127), 64) - 64;
173 /* initialize on first usage */
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DObjectIdentifier.java90 * Therfore, for the first 3 cases, exact compatibility is preserved. In
150 int first = 0, second;
170 first = bignum.intValue();
173 checkSecondComponent(first, bignum);
174 bignum = bignum.add(BigInteger.valueOf(40*first));
184 first = num;
187 checkSecondComponent(first, num);
188 num += 40 * first;
427 if (fromPos != 0) { // not the first segment
433 // first sectio
623 checkFirstComponent(int first) argument
629 checkFirstComponent(BigInteger first) argument
636 checkSecondComponent(int first, int second) argument
642 checkSecondComponent(int first, BigInteger second) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DAssembler.java60 Label first = new Label(); field in class:Assembler
61 Instruction last = first;
204 Instruction prev = first;
206 for (Instruction inst = first.next ; inst != null ; inst = inst.next) {
215 first.pc = NOTREACHED;
227 optimize(env, first);
250 for (Instruction inst = first ; inst != null ; inst = inst.next) {
396 balance(first, 0);
405 for (Instruction inst = first ; inst != null ; inst = inst.next) {
424 for (Instruction inst = first
439 writeExceptions(Environment env, DataOutputStream out, ConstantPool tab, Instruction first, Instruction last) argument
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextConstructionTests.java374 * @return the first character in the text, or DONE if the text is empty
377 public char first() { method in class:TextConstructionTests.ArrayCI
465 * Returns the end index of the text. This index is the index of the first
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java265 public final Path getPath(String first, String... more) { argument
268 path = first;
271 sb.append(first);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionFactory.java292 private static final ArithmeticInstruction createBinaryIntOp(char first, String op) { argument
293 switch(first) {
309 private static final ArithmeticInstruction createBinaryLongOp(char first, String op) { argument
310 switch(first) {
352 char first = op.toCharArray()[0];
358 case Constants.T_CHAR: return createBinaryIntOp(first, op);
359 case Constants.T_LONG: return createBinaryLongOp(first, op);
360 case Constants.T_FLOAT: return createBinaryFloatOp(first);
361 case Constants.T_DOUBLE: return createBinaryDoubleOp(first);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java455 private boolean readImage(boolean first, int disposal_method, int delay) argument
505 // transfer that byte as the first colormap byte
541 if (first) {
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedBreakIterator.java70 * long as those substitutions have been defined first. Substitutions are generally used to
120 * * and the first group of characters following the *.&nbsp; When there is this kind of
125 * but &quot;x[xy]*?x&quot; will only match the first two xes (&quot;<strong>xx</strong>yxyyyxyxyxxyxyxyy&quot;).</td>
573 public int first() { method in class:RuleBasedBreakIterator
576 t.first();
618 * @return The position of the first boundary after this one.
756 * Sets the iterator to refer to the first boundary position following
759 * @return The position of the first break after the current position.
775 // otherwise, we have to sync up first. Use handlePrevious() to back
781 // we stop on will be the first brea
1071 public char first() { method in class:RuleBasedBreakIterator.SafeCharIterator
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DLinkedList.java88 * Pointer to first node.
89 * Invariant: (first == null && last == null) ||
90 * (first.prev == null && first.item != null)
92 transient Node<E> first; field in class:LinkedList
96 * Invariant: (first == null && last == null) ||
121 * Links e as first element.
124 final Node<E> f = first;
126 first = newNode;
143 first
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedBlockingDeque.java93 * self-link implicitly means to jump to "first" (for next links)
135 * Pointer to first node.
136 * Invariant: (first == null && last == null) ||
137 * (first.prev == null && first.item != null)
139 transient Node<E> first; field in class:LinkedBlockingDeque
143 * Invariant: (first == null && last == null) ||
212 * Links node as first element, or returns false if full.
218 Node<E> f = first;
220 first
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp495 int first = true; local
496 for (int ll = lo; ll <= hi; ll++, first = false) {
498 const char *format = first ? " %d:" INT32_FORMAT " (delta: %d)" :
516 bool first = true; local
517 for (int ll = 0; ll < len; ll++, first = false) {
518 const char *format = first ? " " INT32_FORMAT ":" INT32_FORMAT :
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp78 // breadth-first approach but it was worse (showed O(n^2) in the
142 OptoReg::Name first = regalloc->get_reg_first(n); local
144 _defs[first] = n;
156 _callees[first] = tmp_first;
159 assert( _callees[first] == _callees[regalloc->get_reg_first(n->in(1))], "" );
161 assert( _callees[first] == _callees[regalloc->get_reg_first(n->in(n->req()-1))], "" );
164 _callees[first] = OptoReg::Bad; // No longer holding a callee-save value
169 if( OptoReg::is_reg(first) &&
170 regalloc->_matcher.is_save_on_entry(first) )
171 _callees[first]
459 int first = regalloc->get_reg_first(n); local
478 int first = regalloc->get_reg_first(def); local
[all...]
H A Dpostaloc.cpp302 Node* first = x->fast_out(i); i++; local
305 if (use != first) ignore_self = false;
/openjdk7/hotspot/src/share/vm/runtime/
H A DcompilationPolicy.cpp291 return compile_queue->first();
447 RFrame* first = new InterpretedRFrame(triggerVF->fr(), thread, m); local
449 if (first->top_method()->code() != NULL) {
451 if (TraceCompilationPolicy) tty->print_cr(" --> " INTPTR_FORMAT, first->top_method()->code());
455 stack->push(first);

Completed in 3064 milliseconds

1234567