Searched refs:counted (Results 1 - 11 of 11) sorted by relevance

/openjdk9/hotspot/test/compiler/c2/
H A DTest6559156.java54 int counted;
55 for (counted = 0;
56 (counted <= max) && (counted < expected);
57 counted += 1) {
59 if (counted != expected) {
62 " counted=" + counted +
68 int counted;
69 for (counted
[all...]
H A DTest6992759.java54 int counted;
55 for (counted = 0;
56 (counted <= max) && (counted < expected);
57 counted += 1) {
59 if (counted != expected) {
62 " counted=" + counted +
/openjdk9/jdk/test/javax/management/monitor/
H A DThreadPoolTest.java208 counted++;
210 if (counted == waitedNB) {
221 while(counted < waitedNB && toWait > 0) {
233 return counted == waitedNB;
237 private int counted = 0; field in class:ThreadPoolTest.Waiter
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/
H A DLoopSafepointEliminationPhase.java44 if (loop.loop().getChildren().isEmpty() && loop.counted().getStamp().getBits() <= 32) {
50 loop.counted().createOverFlowGuard();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/
H A DDefaultLoopPolicies.java76 if (!loop.isCounted() || !loop.counted().isConstantMaxTripCount()) {
79 CountedLoopInfo counted = loop.counted();
80 long maxTrips = counted.constantMaxTripCount();
81 int maxNodes = (counted.isExactTripCount() && counted.isConstantExactTripCount()) ? ExactFullUnrollMaxNodes.getValue() : FullUnrollMaxNodes.getValue();
H A DLoopsData.java102 List<LoopEx> counted = new LinkedList<>();
105 counted.add(loop);
108 return counted;
H A DBasicInductionVariable.java146 ValueNode maxTripCount = loop.counted().maxTripCountNode(assumePositiveTripCount);
156 ValueNode maxTripCount = loop.counted().maxTripCountNode(false);
165 return isConstantInit() && isConstantStride() && loop.counted().isConstantMaxTripCount();
170 return constantStride() * (loop.counted().constantMaxTripCount() - 1) + constantInit();
H A DLoopEx.java84 private CountedLoopInfo counted; field in class:LoopEx
145 return counted != null;
148 public CountedLoopInfo counted() { method in class:LoopEx
149 return counted;
165 return (isCounted() ? "CountedLoop [" + counted() + "] " : "Loop ") + "(depth=" + loop().getDepth() + ") " + loopBegin();
291 counted = new CountedLoopInfo(this, iv, limit, oneOff, negated ? ifNode.falseSuccessor() : ifNode.trueSuccessor());
/openjdk9/langtools/test/jdk/javadoc/tool/sampleapi/lib/sampleapi/generator/
H A DDocCommentGenerator.java109 boolean counted; field in class:DocCommentGenerator.InlineTag
116 InlineTag(String tagName, String tagValue, boolean counted) { argument
119 this.counted = counted;
120 if (counted) {
132 if (counted && !counters.containsKey(name)) {
137 + (counted ? "_" + counters.put(name, counters.get(name) + 1) : "")
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/
H A DXML11EntityScanner.java765 boolean counted = false;
781 counted = true;
806 counted = true;
849 if (!counted) {
1350 //If this is a general entity, spaces within a start element should be counted
1395 //If this is a general entity, spaces within a start element should be counted
H A DXMLEntityScanner.java1040 boolean counted = false;
1058 counted = true;
1079 counted = true;
1121 if (!counted) {
1684 //If this is a general entity, spaces within a start element should be counted

Completed in 190 milliseconds