Searched defs:count (Results 51 - 75 of 617) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/sql/
H A DArray.java161 * specified <code>index</code> and containing up to <code>count</code>
172 * @param count the number of successive SQL array elements to retrieve
173 * @return an array containing up to <code>count</code> consecutive elements
181 Object getArray(long index, int count) throws SQLException; argument
186 * <code>index</code> and containing up to <code>count</code>
204 * @param count the number of successive SQL array elements to
209 * @return an array containing up to <code>count</code>
219 Object getArray(long index, int count, java.util.Map<String,Class<?>> map) argument
281 * <code>count</code> successive elements. This method uses
289 * up to <code>count</cod
307 getResultSet(long index, int count) argument
344 getResultSet(long index, int count, java.util.Map<String,Class<?>> map) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DBinaryRefAddr.java93 * @param count The number of bytes to extract from src.
94 * 0 <= count <= src.length-offset.
96 public BinaryRefAddr(String addrType, byte[] src, int offset, int count) { argument
98 buf = new byte[count];
99 System.arraycopy(src, offset, buf, 0, count);
/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.hpp64 int count() const { return _count; } function in class:ciSignature
H A DciCallProfile.hpp65 int count() const { return _count; } function in class:ciCallProfile
/openjdk7/hotspot/src/share/vm/memory/
H A DbarrierSet.inline.hpp51 // count is number of array elements being written
52 void BarrierSet::write_ref_array(HeapWord* start, size_t count) { argument
53 assert(count <= (size_t)max_intx, "count too large");
54 HeapWord* end = (HeapWord*)((char*)start + (count*heapOopSize));
73 start, count, aligned_start, aligned_end);
H A Dclassify.cpp48 object_type ClassifyObjectClosure::classify_object(oop obj, bool count) { argument
57 if (count) {
131 assert(num_objects == total_object_count, "Object count mismatch!");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Ddebug_sparc.cpp44 int count = 0; local
49 tty->print("[%d] sp=%#x pc=", count, sp);
74 count += 1;
77 tty->print("[%d] sp=%#x [bogus sp!]", count, sp);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dcopy_x86.hpp45 static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { argument
49 while (count-- > 0) {
54 count *= HeapWordSize / BytesPerInt;
55 while (count-- > 0) {
61 static void pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) { argument
62 pd_fill_to_words(tohw, count, value);
65 static void pd_fill_to_bytes(void* to, size_t count, jubyte value) { argument
66 (void)memset(to, value, count);
69 static void pd_zero_to_words(HeapWord* tohw, size_t count) { argument
70 pd_fill_to_words(tohw, count,
73 pd_zero_to_bytes(void* to, size_t count) argument
[all...]
/openjdk7/hotspot/test/compiler/8009761/
H A DTest8009761.java152 static int count = 0; field in class:Test8009761
211 count++;
234 c1 = count;
239 count = 0;
248 if (c1 != count) {
249 System.out.println("Failed: init recursive calls: " + c1 + ". After deopt " + count);
/openjdk7/jdk/src/share/back/
H A DClassLoaderReferenceImpl.c45 jint count; local
49 error = allClassLoaderClasses(loader, &classes, &count);
53 (void)outStream_writeInt(out, count);
54 for (i = 0; i < count; i++) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjniFastGetField.hpp63 static int count; member in class:JNI_FastGetField
H A DjvmtiRawMonitor.hpp84 static int count() { function in class:JvmtiPendingMonitors
/openjdk7/jdk/src/solaris/native/java/lang/
H A DProcessEnvironment_md.c49 jsize count = 0; local
57 count++;
60 result = (*env)->NewObjectArray(env, 2*count, byteArrCls, 0);
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
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);
/openjdk7/jdk/test/com/sun/management/GarbageCollectorMXBean/
H A DGarbageCollectionNotificationContentTest.java46 static volatile long count = 0; field in class:GarbageCollectionNotificationContentTest
60 count++;
61 if(count >= number) {
115 while(count != number) {
H A DGarbageCollectionNotificationTest.java45 static volatile long count = 0; field in class:GarbageCollectionNotificationTest
59 count++;
60 if(count >= number) {
114 while(count != number) {
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest2.java79 if (count != 2) {
80 throw new RuntimeException ("test failed count = " + count);
87 public static int count = 0; field in class:Test2
95 if (count == 0) {
100 count ++;
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestEquals.java57 int count = v1.count + v2.count;
58 if (amount < count)
59 throw new Error("method equals() is called " + count + " times");
61 v1.count = 0;
62 v2.count = 0;
66 private int count; field in class:TestEquals
75 this.count++;
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestEquals.java56 int count = v1.count + v2.count;
57 if (amount < count)
58 throw new Error("method equals() is called " + count + " times");
60 v1.count = 0;
61 v2.count = 0;
65 private int count; field in class:TestEquals
74 this.count++;
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DBinaryTree.java83 private static int count = 0; field in class:BinaryTreeTest
86 id = count++;
/openjdk7/jdk/test/java/io/charStreams/
H A DABCInputStream.java33 int count = 0; field in class:ABCInputStream
59 if (count >= len)
63 count++;
83 int remaining = len - count;
H A DRandomLineSource.java66 private int count = 0; field in class:RandomLineSource
77 count++;
H A DSmallReads.java48 static int count = 100; field in class:SmallReads
68 Thread t1 = new Thread(new RandomLineSource(uo, w, count, log));
69 Thread t2 = new Thread(new LineSink(ui, r, count, log));
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DLowMemoryTest2.java57 System.out.println(" count = " + minfo.getCount() + "]");
68 static int count = 100000; field in class:LowMemoryTest2.BoundlessLoaderThread
103 String name = "Test" + Integer.toString(count++);
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4921848.java38 static int count = 0; field in class:B4921848
42 if (count == 0 ) {
59 count ++;

Completed in 611 milliseconds

1234567891011>>