Searched defs:count (Results 1 - 25 of 617) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/javax/script/
H A DTest5.js2 var count; variable
4 print(count);
6 switch (count) {
40 throw "unexpected count";
/openjdk7/hotspot/src/share/vm/memory/
H A DbarrierSet.cpp30 // count is number of array elements being written
31 void BarrierSet::static_write_ref_array_pre(HeapWord* start, size_t count) { argument
32 assert(count <= (size_t)max_intx, "count too large");
35 start, count);
38 Universe::heap()->barrier_set()->write_ref_array_pre((narrowOop*)start, (int)count, false);
40 Universe::heap()->barrier_set()->write_ref_array_pre( (oop*)start, (int)count, false);
44 // count is number of array elements being written
45 void BarrierSet::static_write_ref_array_post(HeapWord* start, size_t count) { argument
47 Universe::heap()->barrier_set()->write_ref_array(start, count);
[all...]
/openjdk7/jdk/test/java/io/charStreams/
H A DCat.java32 public static int count = 10000; field in class:Cat
35 Reader in = new InputStreamReader(new ABCInputStream(count));
36 Writer out = new OutputStreamWriter(new ABCOutputStream(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)));
H A DRandomLines.java36 static int count = 500; field in class:RandomLines
55 Thread t1 = new Thread(new RandomLineSource(uo, w, count, log));
56 Thread t2 = new Thread(new LineSink(ui, r, count, log));
H A DStringGenerator.java32 private int count = 0; field in class:StringGenerator
61 if ((count >= limit) && (limit >= 0))
70 count++;
H A DABCOutputStream.java32 int count = 0; field in class:ABCOutputStream
40 if (count >= len)
47 count++;
58 else if (count < len)
H A DABCReader.java32 int count = 0; field in class:ABCReader
40 if (count >= len)
49 count++;
H A DBufferSizes.java35 static int count = 1000; field in class:BufferSizes
41 = new BufferedInputStream(new ABCInputStream(count, chunk), sz);
43 = new BufferedOutputStream(new ABCOutputStream(count), sz);
58 = new BufferedReader(new InputStreamReader(new ABCInputStream(count, chunk)), sz);
60 = new BufferedWriter(new OutputStreamWriter(new ABCOutputStream(count)), sz);
H A DLineGenerator.java46 private int count = 0; field in class:LineGenerator
50 if ((count >= limit) && (limit >= 0))
80 count++;
H A DLineSink.java33 int count; field in class:LineSink
37 int count, PrintWriter log)
41 this.count = count;
49 this.count = Integer.MAX_VALUE;
66 for (int ln = 0; ln < count; ln++) {
69 if (count < Integer.MAX_VALUE)
77 if (count < Integer.MAX_VALUE)
36 LineSink(InputStream us, BufferedReader ts, int count, PrintWriter log) argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjniFastGetField.cpp30 int JNI_FastGetField::count = 0; member in class:JNI_FastGetField
33 for (int i=0; i<count; i++) {
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationSenderMBean.java31 public void sendNotifs(String type, int count); argument
/openjdk7/hotspot/test/compiler/6741738/
H A DTester.java33 private int count; field in class:Tester
/openjdk7/jdk/test/java/io/FileOutputStream/
H A DManyFiles.java34 static int count; field in class:ManyFiles
50 File f = new File("file" + count++);
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DGetObjectName.java56 static void submitTasks(ExecutorService executor, int count) { argument
57 for (int i=0; i < count && !failed; i++) {
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DGetMBeanInfo.java38 private static int count = 0; field in class:GetMBeanInfo
52 if (count != EXPECTED_NOTIF_TYPES) {
54 + " count = " + count +
63 count++;
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DRestart.java87 static void testRestart(AsynchronousChannelGroup group, int count) argument
94 for (int i=0; i<count; i++) {
/openjdk7/jdk/test/java/security/Signature/
H A DTestInitSignWithMyOwnRandom.java56 int count = 0; field in class:TestRandomSource
59 count++;
64 return (count != 0);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DRetryUponTimeout.java43 count++;
58 static int count = 0; field in class:RetryUponTimeout
74 if (count > 1) {
75 throw new RuntimeException("Server received "+count+" requests instead of one.");
/openjdk7/jdk/src/share/native/sun/management/
H A DHotspotThread.c34 jlong count = jmm_interface->GetLongAttribute(env, NULL, local
36 return (jint) count;
/openjdk7/langtools/test/tools/javac/processing/6430209/
H A DT6430209.java75 System.err.println(dl.count + " diagnostics; " + s.length() + " characters");
76 if (dl.count != 2 || s.length() != 0)
83 count++;
86 public int count; field in class:T6430209.MyDiagListener
/openjdk7/corba/src/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
/openjdk7/hotspot/test/compiler/6661247/
H A DTest.java40 public static void test(boolean[] src, int srcPos, LongBuffer dest, long destPos, int count) { argument
42 if (countStart > count)
43 countStart = count;
50 count -= countStart;
51 int cnt = count >>> 6;
124 int countFinish = count & 63;

Completed in 74 milliseconds

1234567891011>>