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

1234567891011>>

/openjdk9/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;
/openjdk9/jdk/src/java.base/windows/classes/sun/nio/ch/
H A DNativeThread.java34 static long current() { method in class:NativeThread
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/graph/
H A DFixedNodeProbabilityCache.java86 FixedNode current = findBegin(node);
87 if (current == null) {
92 assert current instanceof AbstractBeginNode;
93 Double cachedValue = cache.get(current);
99 if (current.predecessor() == null) {
100 if (current instanceof AbstractMergeNode) {
101 probability = handleMerge(current, probability);
103 assert current instanceof StartNode;
107 ControlSplitNode split = (ControlSplitNode) current.predecessor();
108 probability = split.probability((AbstractBeginNode) current) * applyAsDoubl
115 handleMerge(FixedNode current, double probability) argument
[all...]
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 DSinglePassNodeIterator.java172 FixedNode current = start;
175 if (current instanceof InvokeWithExceptionNode) {
176 invoke((Invoke) current);
177 queueSuccessors(current);
178 current = nextQueuedNode();
179 } else if (current instanceof LoopBeginNode) {
180 state.loopBegin((LoopBeginNode) current);
181 keepForLater(current, state);
183 loopBegin((LoopBeginNode) current);
184 current
[all...]
H A DPostOrderNodeIterator.java78 FixedNode current = start;
81 if (current instanceof InvokeWithExceptionNode) {
82 invoke((Invoke) current);
83 queueSuccessors(current, null);
84 current = nextQueuedNode();
85 } else if (current instanceof LoopBeginNode) {
86 state.loopBegin((LoopBeginNode) current);
87 nodeStates.put(current, state);
89 loopBegin((LoopBeginNode) current);
90 current
[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...]
/openjdk9/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...]
/openjdk9/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;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DDebugConfigScope.java28 * A utility for scoping a change to the current debug {@linkplain DebugScope#setConfig(DebugConfig)
40 private final DebugConfig current; field in class:DebugConfigScope
43 * Sets the current debug {@linkplain DebugScope#setConfig(DebugConfig) configuration} to a
45 * configuration to the {@linkplain DebugScope#getConfig() current} configuration.
48 this.current = DebugScope.getConfig();
54 DebugScope.getInstance().setConfig(current);
/openjdk9/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...]
/openjdk9/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);
/openjdk9/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;
/openjdk9/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;
/openjdk9/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...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/
H A DComputeInliningRelevance.java120 FixedNode current = loopBegin.forwardEnd();
122 if (current.predecessor() == null) {
123 if (current instanceof LoopBeginNode) {
125 parent = createLoopScope((LoopBeginNode) current, loops);
127 } else if (current instanceof StartNode) {
132 assert current instanceof MergeNode : current;
134 current = ((AbstractMergeNode) current).forwardEndAt(0);
136 } else if (current instanceo
282 getMinPathProbability(FixedNode current, double minPathProbability) argument
[all...]
/openjdk9/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();
/openjdk9/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
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/
H A DGraphCopyBenchmark.java104 Entry current = start;
106 while (current instanceof EntryWithNext) {
107 if (name != null && current.name == name) {
108 current = null;
110 Entry next = ((EntryWithNext) current).next;
111 current = next;
115 if (current != null) {
116 if (current.name.equals(name)) {
117 return current;
120 if (current
[all...]
/openjdk9/langtools/test/tools/javac/linenumbers/
H A DFinallyLineNumberTest.java59 int current = lines[0].line_number;
60 int first = current;
63 current = lines[1].line_number;
64 if (current != first + 2) {
65 throw new Exception("finally line number table incorrect: got=" + current + " expected=" + (first + 2));
69 current = lines[2].line_number;
70 if (current != first) {
71 throw new Exception("finally line number table incorrect: got=" + current + " expected=" + first);
75 current = lines[3].line_number;
76 if (current !
[all...]

Completed in 312 milliseconds

1234567891011>>