Searched refs:count (Results 101 - 125 of 2064) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/
H A DLoopInline.java32 int count = 0;
34 count += foo(i);
35 if (count > 15) {
36 count -= foo(3);
40 return count;
H A DLoop09.java37 int count = arg;
39 count++;
42 return "ok" + count + "-" + cnt;
H A DLoop09_2.java37 int count = arg;
39 count++;
42 return count - cnt;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/util/
H A DByteArrayOutputStreamEx.java46 dt.set(buf,count,mimeType);
58 if(count==buf.length) {
65 int sz = is.read(buf,count,buf.length-count);
67 count += sz;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/staxex/
H A DByteArrayOutputStreamEx.java46 dt.set(buf,count,mimeType);
58 if(count==buf.length) {
65 int sz = is.read(buf,count,buf.length-count);
67 count += sz;
/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/
H A DCountDownLatch.java44 * <p>A {@code CountDownLatch} is initialized with a given <em>count</em>.
45 * The {@link #await await} methods block until the current count reaches
49 * -- the count cannot be reset. If you need a version that resets the
50 * count, consider using a {@link CyclicBarrier}.
54 * {@code CountDownLatch} initialized with a count of one serves as a
63 * the count to reach zero before proceeding, it simply prevents any
115 * count down in this way, instead use a {@link CyclicBarrier}.)
147 * <p>Memory consistency effects: Until the count reaches
160 * Uses AQS state to represent count.
165 Sync(int count) { argument
199 CountDownLatch(int count) argument
[all...]
/openjdk10/nashorn/test/script/basic/
H A DJDK-8026367.js36 count: 0,
39 this.count += d;
44 this.count -= d;
61 if (obj.count !== 0) {
62 throw new Error("Expected count == 0, got " + obj.count);
/openjdk10/jdk/test/java/text/Format/DateFormat/
H A DIntlTestDateFormatSymbols.java82 long count;
86 count = eras.length;
87 if( count != eras1.length) {
91 for(int i = 0; i < count; i++) {
102 count = months.length;
103 if( count != months1.length) {
107 for(int i = 0; i < count; i++) {
117 count = shortMonths.length;
118 if( count != shortMonths1.length) {
122 for(int i = 0; i < count;
[all...]
/openjdk10/hotspot/src/cpu/s390/vm/
H A Dcopy_s390.hpp76 static void copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) { argument
78 while (count-- > 0) {
83 from += count - 1;
84 to += count - 1;
85 while (count-- > 0) {
92 static void copy_conjoint_jints_atomic(jint* from, jint* to, size_t count) { argument
94 while (count-- > 0) {
99 from += count - 1;
100 to += count - 1;
101 while (count
665 pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
743 pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) argument
749 pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
759 pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
839 pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) argument
845 pd_conjoint_bytes(void* from, void* to, size_t count) argument
869 pd_conjoint_bytes_atomic(void* from, void* to, size_t count) argument
874 pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) argument
893 pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
925 pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
977 pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) argument
1014 pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
1018 pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
1022 pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
1026 pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
1030 pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) argument
1038 pd_fill_to_bytes(void* to, size_t count, jubyte value) argument
1065 pd_fill_to_words(HeapWord* tohw, size_t count, juint value) argument
1083 pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) argument
1094 pd_zero_to_words(HeapWord* tohw, size_t count) argument
1099 pd_zero_to_words_large(HeapWord* tohw, size_t count) argument
1104 pd_zero_to_bytes(void* to, size_t count) argument
[all...]
/openjdk10/jdk/test/java/util/logging/Logger/getLogger/
H A DTestInferCaller.java89 AtomicInteger count = new AtomicInteger();
94 logger.severe("message " + count.incrementAndGet());
98 checkEvent(event, this.getClass().getName(), "test1", "message " + count.get());
100 logger.warning("message " + count.incrementAndGet());
104 checkEvent(event, this.getClass().getName(), "test1", "message " + count.get());
106 logger.info("message " + count.incrementAndGet());
110 checkEvent(event, this.getClass().getName(), "test1", "message " + count.get());
112 logger.config("message " + count.incrementAndGet());
116 checkEvent(event, this.getClass().getName(), "test1", "message " + count.get());
118 logger.fine("message " + count
219 testReflection(Logger logger, AtomicInteger count, String logm, String method) argument
323 testLambda(AtomicInteger count, Consumer<String> logm, String method) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotpath/
H A DHP_scope01.java35 public static int test(int count) { argument
38 for (int k = 0; k < count; k++) {
57 for (int k = 0; k < count; k++) {
67 for (int k = 0; k < count; k++) {
69 for (int j = 0; j < count; j++) {
75 for (int k = 0; k < count; k++) {
76 for (int j = 0; j < count; j++) {
/openjdk10/hotspot/src/share/vm/utilities/
H A Dhistogram.cpp38 int HistogramElement::count() { function in class:HistogramElement
52 if(e1->count() > e2->count()) {
54 } else if(e1->count() < e2->count()) {
61 st->print("%10d ",((HistogramElement*)this)->count());
91 total += elements()->at(i)->count();
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLEInsertionList.cpp44 le_int32 count; member in struct:InsertionRecord
79 LEGlyphID *LEInsertionList::insert(le_int32 position, le_int32 count, LEErrorCode &success) argument
85 InsertionRecord *insertion = (InsertionRecord *) LE_NEW_ARRAY(char, sizeof(InsertionRecord) + (count - ANY_NUMBER) * sizeof (LEGlyphID));
92 insertion->count = count;
94 growAmount += count - 1;
113 if (callback->applyInsertion(rec->position, rec->count, rec->glyphs)) {
/openjdk10/jdk/src/java.management/share/classes/sun/management/
H A DSensor.java42 * <li>{@code count} is the total number of times that a sensor
53 private long count; field in class:Sensor
63 this.count = 0;
84 return count;
103 * and increments its sensor count.
108 count++;
115 * and increments the count with the input {@code increment}.
120 count += increment;
129 * and increments the count with the input {@code increment}.
134 count
[all...]
/openjdk10/jdk/test/java/lang/Runtime/exec/
H A DExecWithLotsOfArgs.java86 int count = n;
88 if (count >= command.length) {
91 (count - 1) + " instead");
93 if (!s.equals(command[count])) {
96 command[count] + "\"");
98 count++;
104 if (count == n) {
/openjdk10/jdk/test/java/util/concurrent/CountDownLatch/
H A DBasic.java96 int count = 0;
105 a[count] = factory1.getAwaiter(); a[count++].start();
106 a[count] = factory1.getAwaiter(); a[count++].start();
107 a[count] = factory2.getAwaiter(); a[count++].start();
108 a[count] = factory2.getAwaiter(); a[count++].start();
125 int count
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/org/glassfish/external/statistics/impl/
H A DCountStatisticImpl.java38 private long count = 0L; field in class:CountStatisticImpl
50 count = countVal;
64 m.put("count", getCount());
73 return count;
77 count = countVal;
82 count++;
87 count = count + delta;
92 count--;
99 count
[all...]
/openjdk10/jdk/test/java/nio/file/Files/walkFileTree/
H A DWalkWithSecurity.java78 if (visitor.count() == 0)
84 if (visitor.count() > 0)
92 if (visitor.count() == 0)
94 if (visitor.count() > 1)
109 private int count; field in class:WalkWithSecurity.CountingVisitor
111 int count() { method in class:WalkWithSecurity.CountingVisitor
112 return count;
118 count++;
125 count++;
/openjdk10/jdk/test/java/util/TimeZone/
H A DOldIDMappingTest.java59 for (int count = 0; count < 3; count++) {
68 if (count == 0) {
71 tzAlias.setRawOffset(tzAlias.getRawOffset() * count);
75 if (count == 0) {
78 tzAlias.setRawOffset(tzAlias.getRawOffset() * count);
90 if (count == 0) {
93 tzAlias.setRawOffset(tzAlias.getRawOffset() * count);
/openjdk10/hotspot/test/runtime/MirrorFrame/
H A DVictim.java32 long count = VictimClassLoader.counter++;
33 if (count % 1000000 == 0) System.gc();
34 if (count % 16180000 == 0) blurb();
39 Test8003720.println("count=" + VictimClassLoader.counter);
/openjdk10/jdk/src/java.base/share/native/libjava/
H A Djio.c37 jio_vsnprintf(char *str, size_t count, const char *fmt, va_list args);
40 jio_snprintf(char *str, size_t count, const char *fmt, ...) argument
46 len = jio_vsnprintf(str, count, fmt, args);
/openjdk10/jdk/src/java.desktop/windows/native/libjsound/
H A DPLATFORM_API_WinOS_Util.h50 int count; // number of sys ex headers member in struct:tag_SysExQueue
53 UBYTE* linearMem; // where the actual sys ex data is, count*size bytes
64 int MIDI_WinCreateEmptyLongBufferQueue(MidiDeviceHandle* handle, int count);
65 int MIDI_WinCreateLongBufferQueue(MidiDeviceHandle* handle, int count, int size, UBYTE* preAllocatedMem);
/openjdk10/jdk/test/java/io/charStreams/
H A DABCReader.java32 int count = 0; field in class:ABCReader
40 if (count >= len)
49 count++;
H A DBCat.java32 public static int count = 10000; field in class:BCat
36 BufferedReader in = new BufferedReader(new InputStreamReader(new ABCInputStream(count, chunk)),
38 Writer out = new BufferedWriter(new OutputStreamWriter(new ABCOutputStream(count)));
/openjdk10/jdk/test/java/lang/instrument/
H A DRedefineBigClassApp.java46 int count = 0;
48 System.out.println("App loop count: " + ++count);
54 System.out.println("App looped " + count + " times.");

Completed in 245 milliseconds

1234567891011>>