Searched refs:count (Results 251 - 275 of 2064) sorted by relevance

<<11121314151617181920>>

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ci/
H A DciMethodData.java257 int dumpReplayDataTypeHelper(PrintStream out, int round, int count, int index, ProfileData pdata, ciKlass k) { argument
259 if (round == 0) count++;
262 return count;
265 int dumpReplayDataReceiverTypeHelper(PrintStream out, int round, int count, ReceiverTypeData<ciKlass,ciMethod> vdata) { argument
268 count = dumpReplayDataTypeHelper(out, round, count, vdata.receiverCellIndex(i), vdata, k);
270 return count;
273 int dumpReplayDataCallTypeHelper(PrintStream out, int round, int count, CallTypeDataInterface<ciKlass> callTypeData) { argument
276 count = dumpReplayDataTypeHelper(out, round, count, callTypeDat
285 dumpReplayDataExtraDataHelper(PrintStream out, int round, int count) argument
[all...]
/openjdk10/jdk/test/java/lang/StackWalker/
H A DMultiThreadStackWalk.java132 final long count = frameCounter.getAndIncrement();
135 .append(count)
152 if (count == max) {
155 if (count == checkMarkAt) {
157 throw new RuntimeException("Expected Marker at " + count
161 if (count <= 0 && sfi.getDeclaringClass() != MultiThreadStackWalk.Call.class) {
162 throw new RuntimeException("Expected Call at " + count
164 } else if (count > 0 && count < max && sfi.getDeclaringClass() != MultiThreadStackWalk.Test.class) {
165 throw new RuntimeException("Expected Test at " + count
[all...]
/openjdk10/hotspot/src/os/bsd/vm/
H A Dsemaphore_bsd.hpp48 void signal(uint count = 1);
/openjdk10/hotspot/src/os/windows/vm/
H A Dsemaphore_windows.hpp43 void signal(uint count = 1);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/
H A DLoopEscape.java50 public static int test0(int count) { argument
52 for (int i = 0; i < count; i++) {
61 public static int test1(int count) { argument
63 for (int i = 0; i < count; i++) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/
H A DNodeIterable.java63 default int count() { method in interface:NodeIterable
64 int count = 0;
68 count++;
70 return count;
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DContextList.java68 public abstract int count(); method in class:ContextList
H A DExceptionList.java64 public abstract int count(); method in class:ExceptionList
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/
H A DHeaderContainer.java72 public void setClassesCount(int count) { argument
73 this.container.putIntAt(1 * 4, count);
76 public void setMethodsCount(int count) { argument
77 this.container.putIntAt(2 * 4, count);
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/pecoff/
H A DPECoffHeader.java47 void setSectionCount(int count) { argument
48 header.putChar(IMAGE_FILE_HEADER.NumberOfSections.off, (char) count);
52 void setSymbolCount(int count) { argument
53 header.putInt(IMAGE_FILE_HEADER.NumberOfSymbols.off, count);
/openjdk10/hotspot/test/compiler/c2/
H A DTest6741738.java38 private int count; field in class:Test6741738
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DTextImpl.java108 * @param count The number of 16-bit units to extract.
110 * <code>count</code> exceeds the <code>length</code>, then all 16-bit
115 * <code>data</code>, or if the specified <code>count</code> is
121 int count)
124 if(count < 0 || offset < 0 || offset > fData.length())
126 if(offset+count >= fData.length())
128 return fData.substring(offset, offset+count);
120 substringData(int offset, int count) argument
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/functions/
H A DFuncLast.java73 int count;
76 count = cnl.getLength();
77 // System.out.println("count: "+count);
80 count = 0;
81 return count;
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DClip.java197 * {@code count} times, and finally continue playback to the end of the
204 * A {@code count} value of 0 indicates that any current looping should
213 * @param count the number of times playback should loop back from the
218 void loop(int count); argument
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFIFD.java166 int count = field.getCount();
171 for (int i = 0; i < count; i++) {
195 for (int i = 0; i < count; i++) {
209 for (int i = 0; i < count; i++) {
215 for (int i = 0; i < count; i++) {
257 * @param count the count read from the stream
259 * @return the updated count
263 int type, int count, Object[] data) throws IOException {
271 byte[] bvalues = new byte[count];
262 readFieldValue(ImageInputStream stream, int type, int count, Object[] data) argument
405 public final int count; field in class:TIFFIFD.TIFFIFDEntry
408 TIFFIFDEntry(TIFFTag tag, int type, int count, long offset) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DDeviceTables.cpp58 le_uint16 count = 16 / bits; local
60 LEReferenceToArrayOf<le_uint16> deltaValuesRef(base, success, deltaValues, (sizeIndex / count));
66 le_uint16 word = SWAPW(deltaValues[sizeIndex / count]);
67 le_uint16 fieldIndex = sizeIndex % count;
/openjdk10/hotspot/src/share/vm/oops/
H A DinstanceRefKlass.cpp51 debug_only(unsigned int count = ((java_lang_ref_Reference::discovered_offset -
56 map->count() == 1, "just checking");
58 assert(map->offset() == offset && map->count() == count,
/openjdk10/jdk/src/java.base/share/classes/java/nio/file/
H A DWatchEvent.java33 * #count() count} to indicate the number of times that the event has been
98 * Returns the event count. If the event count is greater than {@code 1}
101 * @return the event count
103 int count(); method in interface:WatchEvent
/openjdk10/jdk/src/java.management/share/classes/sun/management/
H A DHotspotThread.java54 int count = getInternalThreadCount();
55 if (count == 0) {
58 String[] names = new String[count];
59 long[] times = new long[count];
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DPerfectHashBuilder.java112 private int count = 0; field in class:PerfectHashBuilder
220 count++;
229 boolean redo = count != 0;
236 redirect = new int[count];
237 order = (Entry<E>[])Array.newInstance(entryComponent, count);
248 if (!collidedEntries(bucket, count)) {
256 for ( ; free < count && order[free] != null; free++) {}
259 if (free >= count) {
267 redirect[(bucket.hashCode() & 0x7FFFFFFF) % count] = -1 - free;
276 count
308 collidedEntries(Bucket<E> bucket, int count) argument
[all...]
/openjdk10/jdk/test/com/sun/jdi/
H A DInstancesTest.java127 * instance count.
130 long count; field in class:InstancesTest.ToSort
133 public ToSort(long count, ReferenceType rt) { argument
134 this.count = count;
139 if (count < obj.count) return -1;
140 if (count == obj.count) return 0;
235 // Create a list of ReferenceTypes sorted by instance count
[all...]
/openjdk10/jdk/test/java/io/Serializable/clearHandleTable/
H A DClearHandleTable.java53 int count = 0;
68 count++;
69 if (count % 10 == 0)
70 System.out.println("Looping " + count + " times");
/openjdk10/jdk/test/java/nio/channels/Selector/
H A DSelectorLimit.java48 volatile int count = 0; field in class:SelectorLimit.Listener
59 count++;
84 if (lth.count >= MIN_KEYS)
88 log.println(lth.count + " connections accepted");
/openjdk10/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DThreadRestarts.java74 if (ctf.count.get() > 1)
77 ctf.count.get()));
81 final AtomicLong count = new AtomicLong(0L); field in class:ThreadRestarts.CountingThreadFactory
84 count.getAndIncrement();
/openjdk10/jdk/test/javax/sql/testng/util/
H A DStubArray.java64 public Object getArray(long index, int count) throws SQLException { argument
69 public Object getArray(long index, int count, Map<String, Class<?>> map) throws SQLException { argument
84 public ResultSet getResultSet(long index, int count) throws SQLException { argument
89 public ResultSet getResultSet(long index, int count, Map<String, Class<?>> map) throws SQLException { argument

Completed in 381 milliseconds

<<11121314151617181920>>