Searched refs:current (Results 1 - 25 of 841) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/
H A DPredicatedProxyNodeIterator.java41 while ((current == null || !current.isAlive() || !predicate.apply(current)) && iterator.hasNext()) {
42 current = iterator.next();
44 if (current != null && (!current.isAlive() || !predicate.apply(current))) {
45 current = null;
H A DNodeIterator.java32 protected T current; field in class:NodeIterator
39 return current != null;
45 T ret = current;
46 if (current == null) {
49 current = null;
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/ch/
H A DNativeThread.java34 static long current() { method in class:NativeThread
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseTraversers.java206 * Traverse to the next node after the current node.
209 * @param current The current node of the iteration.
213 public int next(int context, int current) argument
215 return getParent(current);
219 * Traverse to the next node after the current node that is matched
223 * @param current The current node of the iteration.
228 public int next(int context, int current, int expandedTypeID) argument
231 current
296 next(int context, int current) argument
312 next(int context, int current, int expandedTypeID) argument
462 next(int context, int current) argument
477 next(int context, int current, int expandedTypeID) argument
703 next(int context, int current) argument
732 next(int context, int current, int expandedTypeID) argument
807 next(int context, int current) argument
928 next(int context, int current) argument
960 next(int context, int current, int expandedTypeID) argument
996 next(int context, int current) argument
1011 next(int context, int current, int expandedTypeID) argument
1038 next(int context, int current) argument
1056 next(int context, int current, int expandedTypeID) argument
1089 next(int context, int current) argument
1107 next(int context, int current, int expandedTypeID) argument
1162 first(int current, int expandedTypeID) argument
1185 next(int context, int current) argument
1203 next(int context, int current, int expandedTypeID) argument
1247 next(int context, int current) argument
1276 next(int context, int current, int expandedTypeID) argument
1311 next(int context, int current) argument
1339 next(int context, int current, int expandedTypeID) argument
1372 next(int context, int current) argument
1387 next(int context, int current, int expandedTypeID) argument
1445 next(int context, int current) argument
1460 next(int context, int current, int expandedTypeID) argument
1506 next(int context, int current) argument
1532 next(int context, int current, int expandedTypeID) argument
1581 next(int context, int current) argument
1596 next(int context, int current, int expandedTypeID) argument
[all...]
/openjdk10/hotspot/src/cpu/arm/vm/
H A DnativeInst_arm_64.hpp137 const RawNativeInstruction* current = this; local
139 if (!current->is_stp_preindex()) return false; current = current->next_raw();
141 if (!current->is_stp_preindex()) return false; current = current->next_raw();
144 if (!current->is_adr_aligned()) return false; current = current
153 const RawNativeInstruction* current = this; local
165 const RawNativeInstruction* current = this; local
176 const RawNativeInstruction* current = this; local
192 const RawNativeInstruction* current = this; local
218 const RawNativeInstruction* current = this; local
250 const RawNativeInstruction* current = this; local
260 const RawNativeInstruction* current = this; local
283 const RawNativeInstruction* current = this; local
[all...]
/openjdk10/jdk/test/java/lang/management/ThreadMXBean/
H A DResetPeakThreadCount.java75 long current = previous;
78 resetPeak(current);
81 current = startThreads(0, DAEMON_THREADS_1, EXPECTED_PEAK_DELTA_1);
83 checkThreadCount(previous, current, DAEMON_THREADS_1);
84 previous = current;
87 current = terminateThreads(0, TERMINATE_1);
89 checkThreadCount(previous, current, TERMINATE_1 * -1);
91 previous = current;
95 current = startThreads(DAEMON_THREADS_1, DAEMON_THREADS_2,
98 checkThreadCount(previous, current, DAEMON_THREADS_
235 checkThreadCount(long previous, long current, int expectedDelta) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDeepNodeListImpl.java41 * current state of the document tree. To put it another way, the
56 * getElementsByTagName case. The current solution is for Nodes to
167 protected Node nextMatchingElementAfter(Node current) { argument
170 while (current != null) {
172 if (current.hasChildNodes()) {
173 current = (current.getFirstChild());
177 else if (current != rootNode && null != (next = current.getNextSibling())) {
178 current
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/
H A DStatelessPostOrderNodeIterator.java59 FixedNode current = start;
62 if (current instanceof LoopBeginNode) {
63 loopBegin((LoopBeginNode) current);
64 current = ((LoopBeginNode) current).next();
65 assert current != null;
66 } else if (current instanceof LoopEndNode) {
67 loopEnd((LoopEndNode) current);
68 assert !visitedEnds.isMarked(current);
69 visitedEnds.mark(current);
[all...]
H A DPostOrderNodeIterator.java79 FixedNode current = start;
82 if (current instanceof InvokeWithExceptionNode) {
83 invoke((Invoke) current);
84 queueSuccessors(current, null);
85 current = nextQueuedNode();
86 } else if (current instanceof LoopBeginNode) {
87 state.loopBegin((LoopBeginNode) current);
88 nodeStates.put(current, state);
90 loopBegin((LoopBeginNode) current);
91 current
[all...]
H A DFixedNodeProbabilityCache.java89 FixedNode current = findBegin(node);
90 if (current == null) {
95 assert current instanceof AbstractBeginNode;
96 Double cachedValue = cache.get(current);
102 if (current.predecessor() == null) {
103 if (current instanceof AbstractMergeNode) {
104 probability = handleMerge(current, probability);
106 assert current instanceof StartNode;
110 ControlSplitNode split = (ControlSplitNode) current.predecessor();
111 probability = multiplyProbabilities(split.probability((AbstractBeginNode) current), applyAsDoubl
118 handleMerge(FixedNode current, double probability) argument
[all...]
H A DScopedPostOrderNodeIterator.java68 FixedNode current;
71 while ((current = nextQueuedNode()) != null) {
72 assert current.isAlive();
74 if (current instanceof Invoke) {
75 invoke((Invoke) current);
76 queueSuccessors(current);
77 } else if (current instanceof LoopBeginNode) {
78 queueLoopBeginSuccessors((LoopBeginNode) current);
79 } else if (current instanceof LoopExitNode) {
80 queueLoopExitSuccessors((LoopExitNode) current);
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/
H A DLoopUnroll.java35 int current = input;
37 ret *= 2 + current;
38 current /= 50;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DChunkInputStream.java38 Chunk current; field in class:ChunkInputStream
46 this.current = startPos;
47 len = current.data.size();
48 buf = current.data.read();
72 * Gets to the next chunk if we are done with the current one.
76 if (current == null) {
80 while(!part.parsed && current.next == null) {
83 current = current.next;
85 if (current
[all...]
/openjdk10/hotspot/src/os/windows/vm/
H A DthreadLocalStorage_windows.cpp50 // the initialization process, which is using Thread::current without
53 Thread* current = (Thread*) TlsGetValue(_thread_key); local
54 assert(current != 0 || GetLastError() == ERROR_SUCCESS,
56 return current;
59 void ThreadLocalStorage::set_thread(Thread* current) { argument
61 BOOL res = TlsSetValue(_thread_key, current);
/openjdk10/test/failure_handler/src/share/classes/jdk/test/failurehandler/jtreg/
H A DOS.java30 private static OS current; field in class:OS
32 public static OS current() { method in class:OS
33 if (current == null) {
35 current = new OS(name);
37 return current;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DNodeUsageIterator.java32 Node current; field in class:NodeUsageIterator
35 current = null;
38 current = node.usage0;
40 current = node.usage1;
44 current = node.extraUsages[relativeIndex];
56 return current != null;
61 Node result = current;
H A DTypedGraphNodeIterator.java32 private final Node[] current; field in class:TypedGraphNodeIterator
41 current = new Node[ids.length];
49 Node c = current();
60 return current();
68 if (current() == null) {
71 next = graph.getIterableNodeNext(current().typeCacheNext);
89 private Node current() { method in class:TypedGraphNodeIterator
90 return current[currentIdIndex];
94 current[currentIdIndex] = n;
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DStringConcatHelper.java50 * Mix value length into current length
51 * @param current current length
55 static int mixLen(int current, boolean value) { argument
56 return checkOverflow(current + (value ? 4 : 5));
60 * Mix value length into current length
61 * @param current current length
65 static int mixLen(int current, byte value) { argument
66 return mixLen(current, (in
75 mixLen(int current, char value) argument
85 mixLen(int current, short value) argument
95 mixLen(int current, int value) argument
105 mixLen(int current, long value) argument
115 mixLen(int current, String value) argument
125 mixCoder(byte current, char value) argument
135 mixCoder(byte current, String value) argument
145 mixCoder(byte current, boolean value) argument
156 mixCoder(byte current, byte value) argument
167 mixCoder(byte current, short value) argument
178 mixCoder(byte current, int value) argument
189 mixCoder(byte current, long value) argument
[all...]
/openjdk10/langtools/test/tools/javac/linenumbers/
H A DFinallyLineNumberTest.java58 int current = lines[0].line_number;
59 int first = current;
62 current = lines[1].line_number;
63 if (current != first + 2) {
64 throw new Exception("finally line number table incorrect: got=" + current + " expected=" + (first + 2));
68 current = lines[2].line_number;
69 if (current != first) {
70 throw new Exception("finally line number table incorrect: got=" + current + " expected=" + first);
74 current = lines[3].line_number;
75 if (current !
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/
H A DComputeInliningRelevance.java122 FixedNode current = loopBegin.forwardEnd();
124 if (current.predecessor() == null) {
125 if (current instanceof LoopBeginNode) {
127 parent = createLoopScope((LoopBeginNode) current, loops, topScope);
129 } else if (current instanceof StartNode) {
134 assert current instanceof MergeNode : current;
136 current = ((AbstractMergeNode) current).forwardEndAt(0);
138 } else if (current instanceo
284 getMinPathProbability(FixedNode current, double minPathProbability) argument
[all...]
H A DInliningIterator.java66 FixedNode current;
69 while ((current = nextQueuedNode()) != null) {
70 assert current.isAlive();
72 if (current instanceof Invoke && ((Invoke) current).callTarget() instanceof MethodCallTargetNode) {
73 if (current != start) {
74 invokes.addLast((Invoke) current);
76 queueSuccessors(current);
77 } else if (current instanceof LoopBeginNode) {
78 queueSuccessors(current);
[all...]
/openjdk10/hotspot/test/serviceability/tmtools/jstat/
H A DGcTest02.java41 new GarbageProducerTest(new JstatGcTool(ProcessHandle.current().pid())).run();
H A DGcCauseTest02.java41 new GarbageProducerTest(new JstatGcCauseTool(ProcessHandle.current().pid())).run();
/openjdk10/jdk/src/java.base/unix/classes/sun/nio/ch/
H A DNativeThread.java36 // On systems that do not require this type of signalling, the current() method
46 public static native long current(); method in class:NativeThread
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/
H A DDTMAxisTraverser.java85 * Traverse to the next node after the current node.
89 * @param current The current node of the traversal. This is the last known
92 * should be set equal to current. Note that in order to test whether
98 public abstract int next(int context, int current); argument
101 * Traverse to the next node after the current node that is matched
106 * @param current The current node of the traversal. This is the last known
109 * should be set equal to current. Note that in order to test whether
116 public abstract int next(int context, int current, in argument
[all...]

Completed in 355 milliseconds

1234567891011>>