Searched refs:at (Results 276 - 300 of 391) sorted by relevance

<<111213141516

/openjdk7/jdk/test/com/sun/jdi/
H A DJdbMethodExitTest.sh154 // The debugger will stop at the start of main,
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c46 * injections can happen at the same time.
112 #define LARGEST_INJECTION (12*3) /* 3 injections at same site */
159 char* call_name; /* Method name to call at offset 0 */
711 snprintf(message, BUFSIZE, "Unknown tag: %d, at ipos %hu", tag, ipos);
867 /* Called to create injection code at entry to a method */
946 inject_bytecodes(MethodImage *mi, ByteOffset at, argument
954 CRW_ASSERT(ci, at <= mi->code_len);
956 injection = mi->injections[at];
970 mi->injections[at] = injection;
1045 /* Starting at origina
1053 adjust_map(MethodImage *mi, ByteOffset at, ByteOffset offset) argument
1064 widen(MethodImage *mi, ByteOffset at, ByteOffset len) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp146 // It must hold at least 16 bits, but must also be fast to load and store.
309 // Does the node have an out at this position? (Used for iteration.)
315 // Iterate over the out-edges of this node, deleting one at a time.
328 // Does the node have an out at this position? (Used for iteration.)
341 // Iterate over the out-edges of this node, deleting one at a time.
360 // Delete out edge at position 'i' by moving last out edge to position 'i'
837 // Return the set of values this Node can take on at runtime.
921 // Emit bytes starting at parameter 'ptr'
1077 // Allows deletion from the out array only at the current point.
1088 // or else you must delete all copies at onc
1315 Node *at( uint i ) const { assert(i<_max,"oob"); return _nodes[i]; } function in class:Node_Array
[all...]
H A DphaseX.cpp318 Node *n = at(i);
388 // to each SafePointNode at a backward branch. Inserted in add_safepoint().
406 // Remove edges from "root" to each SafePoint at a backward branch.
482 // (For example, a phi node at the beginning of loop parsing is not ready.)
796 Node *n = _table.at(i);
809 Node *n = _worklist.at(j);
950 Node* pushed = _worklist.at(wlsize++);
1093 // See what kind of values 'k' takes on at runtime
1220 // (Rather than pushing all the outs at once, we push one at
[all...]
H A Dblock.hpp223 // Loop_alignment will be set for blocks which are at the top of loops.
445 // Check for NeverBranch at block end. This needs to become a GOTO to the
550 assert(_members.at(0)->is_block(), "head must be a block");
551 Block* hd = _members.at(0)->as_Block();
695 // Append a block at the end of this trace
H A DbytecodeInfo.cpp157 // Not hot. Check for medium-sized pre-existing nmethod at cold sites.
268 // Do not inline StringCache::profile() method used only at the beginning.
450 // Certain methods cannot be parsed at all:
576 // total execution time used at this call site.
619 InlineTree* sub = _subtrees.at(i);
674 _subtrees.at(i)->print_impl(st, indent + 2);
H A Dsuperword.hpp134 DepMem* dep(Node* node) { return _map.at(node->_idx); }
282 int bb_idx(Node* n) { assert(in_bb(n), "must be"); return _bb_idx.at(n->_idx); }
329 // Return a memory slice (node list) in predecessor order starting at "start"
331 // Can s1 and s2 be in a pack with s1 immediately preceding s2 and s1 aligned at "align"
333 // Does s exist in a pack at position pos?
396 // Remove the pack at position pos in the packset
413 // Is the use of d1 in u1 at the same operand position as d2 in u2?
H A Dblock.cpp99 // all possible gain (a "do not align at all" heuristic has a
412 // at the beginning when idx == 0.
456 // i.e., it splits at the source (via an IF or SWITCH) and merges
457 // at the destination (via a many-input Region).
473 // Check if it the fist node pushed on stack at the beginning.
559 // Check for NeverBranch at block end. This needs to become a GOTO to the
674 // Check for NeverBranch at block end. This needs to become a GOTO to the
919 // Uses must follow their definition if they are at the same block.
976 // Force the Union-Find mapping to be at least this large
1034 CFGEdge *e = edges->at(
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java219 * perpendicular to the baseline at 'x' (positive y is 90 degrees
1089 AffineTransform at = values.isNonDefault(ETRANSFORM)
1116 at.preConcatenate(AffineTransform.getTranslateInstance(0, trans));
1117 at.scale(scale, scale);
1127 // and descent, and then the x position at each for each vector along its
1134 at.scale(values.getWidth(), 1f);
1137 return at;
1691 * at <code>readObject</code> time than at
2042 * starting at <cod
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DRasterPrinterJob.java298 * "region" is an area at as a high a resolution as possible.
299 * The redrawing code needs to look at sx, sy to calculate the scale
393 * to the current page. The band is placed at the
409 public void saveState(AffineTransform at, Shape clip, argument
412 gstate.theTransform = at;
1348 //There is already file read/write access so at this point
1731 * Called by the print() method at the start of
1737 * Called by the print() method at the end of
1788 synchronized void setGraphicsConfigInfo(AffineTransform at, argument
1791 at
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLScanner.java10 * You may obtain a copy of the License at
385 * at the time of calling is lost.
561 * at the time of calling is lost.
719 * at the time of calling is lost.
769 * at the time of calling is lost.
984 * anything in them at the time of calling is lost.
1064 * <strong>Note:</strong> This method uses fStringBuffer, anything in it at
1187 * at the time of calling is lost.
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java1184 // having a center at 0,0 and a radius of 0.5.
1417 * @param at an optional <CODE>AffineTransform</CODE> to be applied
1424 public PathIterator getPathIterator(AffineTransform at) { argument
1425 return new ArcIterator(this, at);
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.cpp135 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
162 PreviousVersionNode * pv_node = ik->previous_versions()->at(i);
196 jweak method_ref = method_refs->at(j);
440 // dictionary entries are only removed at a safepoint (when only one
/openjdk7/hotspot/make/windows/
H A Dbuild.bat85 echo J2SE version found at %4\bin\java:
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp185 // hashmap already at maximum capacity
235 // internal remove function - remove an entry at a given position in the
816 ClassFieldDescriptor* field_at(int i) { return _fields->at(i); }
830 delete _fields->at(i);
995 instanceKlass* ik = _class_list->at(i);
1578 (*object_result_ptr)[i] = _object_results->at(i);
1593 (*tag_result_ptr)[i] = (jlong)_tag_results->at(i);
1708 oop o = _saved_oop_stack->at(i);
1709 markOop mark = _saved_mark_stack->at(i);
3132 if (locals->at(slo
[all...]
H A DjvmtiRawMonitor.cpp41 JvmtiRawMonitor *rmonitor = monitors()->at(i);
/openjdk7/hotspot/src/share/vm/runtime/
H A Djava.cpp160 methodOop m = collected_invoked_methods->at(index);
196 methodOop m = collected_profiled_methods->at(index);
441 // are trying to shutdown the VM at the same time, only one thread
500 // JVM will be taken down at a safepoint when such threads are inactive --
H A DperfData.hpp195 * pointer at this time due to security concerns.
205 * address at a regular interval. The interval is defined by the
225 * will be called by the StatSampler at a regular interval, defined
298 // sample the data item given at creation time and write its value
589 * iterators and the at(int index) method. However, the GrowableArray
637 // change in the length of the container. The at(int index)
652 PerfData* at(int index) { return _set->at(index); } function in class:PerfDataList
H A Dframe.hpp94 // pc: Returns the pc at which this frame will continue normally.
95 // It must point at the beginning of the next instruction to execute.
101 // hardware would want to see in the native frame. The only user (at this point)
190 intptr_t at(int index) const { return *addr_at(index); } function in class:VALUE_OBJ_CLASS_SPEC
341 // Should only be called when at method exit when the method is not
537 // all (callee-saved) registers. Notice: If a thread is stopped at
H A Dsignature.cpp263 _names->at(i)->decrement_refcount();
332 // Save names for cleaning up reference count at the end of
H A Dvm_operations.cpp100 assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
103 // thrown at a thread.
344 instanceHandle th = _threads->at(i);
385 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
401 // VM exits at safepoint. This function must be called at the final safepoint
403 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint already");
416 int max_wait_user_thread = 30; // at least 300 milliseconds
417 int max_wait_compiler_thread = 1000; // at least 10 seconds
454 // still executing native code after the wait will be stopped at
[all...]
/openjdk7/jdk/test/sun/java2d/pipe/
H A DRegionOps.java269 dx+", "+dy+" at "+x+", "+y);
291 error(a, b, "union failed at "+x+", "+y);
314 error(a, b, "difference failed at "+x+", "+y);
336 error(a, b, "intersection failed at "+x+", "+y);
358 error(a, b, "xor failed at "+x+", "+y);
411 AffineTransform at = AffineTransform.getTranslateInstance(dx, dy);
412 return new AreaImpl(theArea.createTransformedArea(at));
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCode.java286 // This linear search is at its worst case for indexes in the beginning
335 return Instruction.at(bytes, pc);
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp356 const char *name (intptr_t index);// Return name at index in list
441 // Return element at "position", else NULL
443 Component *at(int position) { return (*this)[position]; } function in class:ComponentList
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.cpp186 // The code in JavaCalls::call() checks that there is at least n pages
204 // Need at least one stack bang at end of shadow zone.
381 branch_loc = _patch_overflow->at(i - PatchCacheSize);

Completed in 128 milliseconds

<<111213141516