Searched refs:cur (Results 1 - 25 of 191) sorted by relevance

12345678

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/
H A DTypeWriter.java62 long cur = value;
64 if (cur >= -64 && cur < 64) {
65 putU1(cur & 0x7f);
68 putU1(0x80 | (cur & 0x7f));
69 cur = cur >> 7;
77 long cur = value;
79 assert cur >= 0;
80 if (cur < 12
[all...]
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/ldap/
H A DRfc2253Parser.java41 private int cur = 0; // index of first unconsumed char in "chars" field in class:Rfc2253Parser
58 cur = 0;
71 while (cur < len) {
72 if (chars[cur] == ',' || chars[cur] == ';') {
73 ++cur;
94 if (cur < len) {
106 while (cur < len) {
110 if (cur >= len || chars[cur] !
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/
H A DNestedBoxingTest.java35 Integer cur = 1;
39 Integer next = prev + cur;
40 prev = cur;
41 cur = next;
43 return cur;
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Dc1_LinearScan_aarch64.hpp61 inline bool LinearScanWalker::pd_init_regs_for_alloc(Interval* cur) { argument
62 if (allocator()->gen()->is_vreg_flag_set(cur->reg_num(), LIRGenerator::callee_saved)) {
63 assert(cur->type() != T_FLOAT && cur->type() != T_DOUBLE, "cpu regs only");
67 } else if (cur->type() == T_INT || cur->type() == T_LONG || cur->type() == T_OBJECT || cur->type() == T_ADDRESS || cur->type() == T_METADATA) {
/openjdk10/hotspot/src/cpu/sparc/vm/
H A Dc1_LinearScan_sparc.hpp56 inline bool LinearScanWalker::pd_init_regs_for_alloc(Interval* cur) { argument
57 if (allocator()->gen()->is_vreg_flag_set(cur->reg_num(), LIRGenerator::callee_saved)) {
58 assert(cur->type() != T_FLOAT && cur->type() != T_DOUBLE, "cpu regs only");
62 } else if (cur->type() == T_INT || cur->type() == T_LONG || cur->type() == T_OBJECT || cur->type() == T_ADDRESS || cur->type() == T_METADATA) {
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DMediaTracker.java321 MediaEntry cur = head;
323 while (cur != null) {
324 if ((cur.getStatus(load, verify) & DONE) == 0) {
327 cur = cur.next;
341 MediaEntry cur = head;
342 while (cur != null) {
343 if ((cur.getStatus(false, true) & ERRORED) != 0) {
346 cur = cur
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DCharSequence.java135 int cur = 0;
138 return cur < length();
143 return charAt(cur++);
151 for (; cur < length(); cur++) {
152 block.accept(charAt(cur));
185 int cur = 0;
190 int i = cur;
207 cur = i;
212 return cur < lengt
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/lsra/
H A DFixedInterval.java173 FixedRange cur = first;
175 while (cur != FixedRange.EndMarker && cur.to < opId) {
176 cur = cur.next;
178 if (cur != FixedRange.EndMarker) {
179 assert cur.to != cur.next.from : "ranges not separated";
182 return cur.from <= opId && opId < cur
[all...]
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_LinearScan_ppc.hpp57 inline bool LinearScanWalker::pd_init_regs_for_alloc(Interval* cur) { argument
58 if (allocator()->gen()->is_vreg_flag_set(cur->reg_num(), LIRGenerator::callee_saved)) {
59 assert(cur->type() != T_FLOAT && cur->type() != T_DOUBLE, "cpu regs only");
64 } else if (cur->type() == T_INT || cur->type() == T_LONG || cur->type() == T_OBJECT ||
65 cur->type() == T_ADDRESS || cur->type() == T_METADATA) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/contract/
H A DVerifyNodeCosts.java50 boolean cyclesSet = walkCHUntil(getType(clazz), getType(nodeClass), cur -> {
51 return cur.cycles() != NodeCycles.CYCLES_UNSET;
53 boolean sizeSet = walkCHUntil(getType(clazz), getType(nodeClass), cur -> {
54 return cur.size() != NodeSize.SIZE_UNSET;
80 NodeClass<?> cur = start;
81 while (cur != until && cur != null) {
82 if (p.test(cur)) {
85 cur = cur
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp490 void count_edges(BlockBegin* cur, BlockBegin* parent);
499 void compute_dominator(BlockBegin* cur, BlockBegin* parent);
500 int compute_weight(BlockBegin* cur);
501 bool ready_for_processing(BlockBegin* cur);
503 void append_block(BlockBegin* cur);
571 void ComputeLinearScanOrder::count_edges(BlockBegin* cur, BlockBegin* parent) { argument
572 TRACE_LINEAR_SCAN(3, tty->print_cr("Enter count_edges for block B%d coming from B%d", cur->block_id(), parent != NULL ? parent->block_id() : -1));
573 assert(cur->dominator() == NULL, "dominator already initialized");
575 if (is_active(cur)) {
577 assert(is_visited(cur), "bloc
663 BlockBegin* cur = _work_list.pop(); local
722 BlockBegin* cur = _work_list.pop(); local
772 compute_dominator(BlockBegin* cur, BlockBegin* parent) argument
796 compute_weight(BlockBegin* cur) argument
841 ready_for_processing(BlockBegin* cur) argument
853 sort_into_work_list(BlockBegin* cur) argument
888 append_block(BlockBegin* cur) argument
936 BlockBegin* cur = _work_list.pop(); local
1044 BlockBegin* cur = _linear_scan_order->at(block_idx); local
1057 BlockBegin* cur = _linear_scan_order->at(block_idx); local
1112 BlockBegin* cur = _linear_scan_order->at(i); local
[all...]
/openjdk10/hotspot/src/share/vm/logging/
H A DlogOutputList.cpp84 for (LogOutputNode* cur = _level_start[LogLevel::Last]; cur != NULL; cur = cur->_next) {
85 if (cur->_next == node) {
87 cur->_next = node->_next;
116 for (LogOutputNode* cur = _level_start[LogLevel::Last]; cur != NULL; cur = cur
[all...]
/openjdk10/hotspot/test/compiler/gcbarriers/
H A DG1CrashTest.java58 Object cur = set[index];
59 if (cur == null)
62 insertKeyRehash(key, index, hash, cur);
65 static void insertKeyRehash(Object key, int index, int hash, Object cur) { argument
69 if (cur == "dead")
74 cur = set[index];
75 if (cur == null) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.verifier/src/org/graalvm/compiler/replacements/verifier/
H A DAPHotSpotSignature.java51 int cur = 1;
52 while (cur < signature.length() && signature.charAt(cur) != ')') {
53 int nextCur = parseSignature(signature, cur);
54 arguments.add(signature.substring(cur, nextCur));
55 cur = nextCur;
58 cur++;
59 int nextCur = parseSignature(signature, cur);
60 returnType = signature.substring(cur, nextCur);
70 int cur
[all...]
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A Dgenerator.js50 var cur = 1;
52 yield cur;
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/geom/
H A DCrossings.java420 public void remove(int cur) { argument
422 int rem = limit - cur;
424 System.arraycopy(yranges, cur+2, yranges, cur, rem);
425 System.arraycopy(crosscounts, cur/2+1,
426 crosscounts, cur/2,
431 public void insert(int cur, double lo, double hi, int dir) { argument
432 int rem = limit - cur;
437 System.arraycopy(oldranges, 0, yranges, 0, cur);
439 System.arraycopy(oldcounts, 0, crosscounts, 0, cur/
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/cms/
H A DCompactibleFreeListSpace.java108 Address cur = addr.addOffsetTo( indexedFreeListField.getOffset() );
109 cur = cur.addOffsetTo(IndexSetStart*AdaptiveFreeList.sizeOf());
111 AdaptiveFreeList freeList = (AdaptiveFreeList) VMObjectFactory.newObject(AdaptiveFreeList.class, cur);
113 cur= cur.addOffsetTo(IndexSetStride*AdaptiveFreeList.sizeOf());
162 Address cur = bottom();
163 Address regionStart = cur;
167 for (; cur.lessThan(limit);) {
168 Address k = cur
[all...]
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DLdapName.java394 private int cur = 0; // index of first unconsumed char in "chars" field in class:LdapName.DnParser
412 cur = 0;
420 while (cur < len) {
421 if (chars[cur] == ',' || chars[cur] == ';') {
422 ++cur;
436 if (cur < len) {
449 while (cur < len) {
453 if (cur >= len || chars[cur] !
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/
H A DLinearScanIntervalDumper.java56 Range cur = interval.first();
57 while (!cur.isEndMarker()) {
58 visitor.visitRange(cur.from, cur.to);
59 cur = cur.next;
60 assert cur != null : "range list not closed with range sentinel";
H A DInterval.java132 Interval cur = list;
133 while (cur.currentFrom() < interval.currentFrom()) {
134 prev = cur;
135 cur = cur.next;
142 // add before 'cur'
145 interval.next = cur;
159 Interval cur = list;
160 while (cur.from() < interval.from() || (cur
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/
H A DCSV.java89 StringBuilder cur = new StringBuilder();
98 cur.append(',');
101 result.add(cur.toString());
102 cur.setLength(0);
118 cur.append('"');
135 cur.append(ch);
144 result.add(cur.toString());
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/gbind/
H A DElement.java153 for(Element cur=this; cur!=cur.prevPostOrder; cur=cur.prevPostOrder) {
155 if(visitedElements.contains(cur)) {
156 // if I've already processed cur element, I'm in a loop
159 visitedElements.add(cur);
162 if(cur.belongsToSCC())
169 cur
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotSignature.java54 int cur = 1;
55 while (cur < signature.length() && signature.charAt(cur) != ')') {
56 int nextCur = parseSignature(signature, cur);
57 parameters.add(signature.substring(cur, nextCur));
58 cur = nextCur;
61 cur++;
62 int nextCur = parseSignature(signature, cur);
63 returnType = signature.substring(cur, nextCur);
89 int cur
[all...]
/openjdk10/hotspot/src/share/vm/prims/
H A DprivilegedStack.cpp47 PrivilegedElement *cur = this; local
49 f->do_oop((oop*) &cur->_privileged_context);
50 cur = cur->_next;
51 } while(cur != NULL);
/openjdk10/hotspot/src/jdk.hotspot.agent/test/libproc/
H A DLibprocClient.java52 for (JavaThread cur = threads.first(); cur != null; cur = cur.next()) {
53 if (cur.isJavaThread()) {
54 String name = cur.getThreadName();
56 for (JavaVFrame vf = getLastJavaVFrame(cur); vf != null; vf = vf.javaSender()) {
62 checkMainThread(cur);
83 private static JavaVFrame getLastJavaVFrame(JavaThread cur) { argument
84 RegisterMap regMap = cur
[all...]

Completed in 161 milliseconds

12345678