Searched defs:count (Results 201 - 225 of 617) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/6917288/
H A DT6917288.java53 System.err.println("Test " + (++count) + ": " + k);
54 File testDir = new File("test" + count);
156 int count; field in class:T6917288
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c82 unsigned short count[MAXBITS+1]; /* number of codes of each length */ local
117 The codes are sorted by computing a count of codes for each length,
132 count[len] = 0;
134 count[lens[sym]]++;
139 if (count[max] != 0) break;
151 if (count[min] != 0) break;
158 left -= count[len];
167 offs[len + 1] = offs[len] + count[len];
189 counts are used for this, and so count[] is decremented as codes are
276 /* go to next symbol, update count, le
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djutils.c126 register size_t count = (size_t) (num_cols * SIZEOF(JSAMPLE)); local
128 register JDIMENSION count; local
139 FMEMCOPY(outptr, inptr, count);
141 for (count = num_cols; count > 0; count--)
157 register long count;
161 for (count = (long) num_blocks * DCTSIZE2; count > 0; count
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DContextualGlyphInsertionProc2.cpp69 le_int16 count,
73 LEGlyphID *insertGlyphs = glyphStorage.insertGlyphs(atGlyph, count + 1, success);
89 insertGlyphs[count] = glyphStorage[atGlyph];
92 while(count--) {
110 le_int16 count = (flags & cgiMarkedInsertCountMask) >> 5; local
113 doInsertion(glyphStorage, markGlyph, markIndex, count, isKashidaLike, isBefore, success);
118 le_int16 count = flags & cgiCurrentInsertCountMask; local
121 doInsertion(glyphStorage, currGlyph, currIndex, count, isKashidaLike, isBefore, success);
66 doInsertion(LEGlyphStorage &glyphStorage, le_int16 atGlyph, le_int16 &index, le_int16 count, le_bool , le_bool isBefore, LEErrorCode &success) argument
H A DHanLayoutEngine.cpp79 le_int32 HanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, argument
86 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
91 glyphStorage.allocateGlyphArray(count, FALSE, success);
102 for (le_int32 i = 0; i < count; i += 1) {
106 return count;
H A DIndicLayoutEngine.cpp81 le_int32 IndicOpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
88 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
93 le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, glyphStorage, success);
102 OpenTypeLayoutEngine::glyphSubstitution(count,max, rightToLeft, glyphStorage, success);
111 // Returns: output character count
112 le_int32 IndicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
119 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
124 le_int32 worstCase = count * IndicReorderin
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAuthorizationData.java177 public int count() { method in class:AuthorizationData
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DRuleCharacterIterator.java313 * @param count the number of 16-bit code units to jump over
315 public void jumpahead(int count) { argument
316 if (count < 0) {
320 bufPos += count;
328 int i = pos.getIndex() + count;
352 * @param count the number of 16-bit code units to advance past
354 private void _advance(int count) { argument
356 bufPos += count;
361 pos.setIndex(pos.getIndex() + count);
/openjdk7/jdk/test/java/rmi/transport/pinClientSocketFactory/
H A DPinClientSocketFactory.java144 private static final AtomicInteger count = new AtomicInteger(0); field in class:PinClientSocketFactory.CSF
145 private int num = count.incrementAndGet();
/openjdk7/jdk/test/java/util/Locale/
H A DLocaleTestFmwk.java222 protected void writeTestResult(int count) { argument
229 if (count != 0)
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DRBTestFmwk.java216 protected void writeTestResult(int count) { argument
223 if (count != 0)
/openjdk7/jdk/test/java/util/concurrent/ConcurrentQueues/
H A DGCRetention.java60 int count = 1024 * 1024; field in class:GCRetention
68 queues.add(new ArrayBlockingQueue<Boolean>(count, false));
69 queues.add(new ArrayBlockingQueue<Boolean>(count, true));
105 count = Integer.valueOf(args[0]);
118 for (int i = 0; i < count; i++)
127 for (int i = 0; i < 10 * count; i++) {
138 int nanos = (int) ((double) elapsed / (10 * 3 * count));
H A DRemovePollRace.java60 int count = 1024 * 1024; field in class:RemovePollRace
68 queues.add(new ArrayBlockingQueue<Boolean>(count, false));
69 queues.add(new ArrayBlockingQueue<Boolean>(count, true));
102 count = Integer.valueOf(args[0]);
162 for (int i = 0; i < count; i++) {
194 int nanos = (int) ((double) elapsed / (adderCount * count));
196 if (removes.get() + polls.get() != adderCount * count) {
198 ("class=%s removes=%s polls=%d count=%d",
199 className, removes.get(), polls.get(), count);
/openjdk7/jdk/test/java/util/concurrent/Phaser/
H A DFickleRegister.java45 final AtomicLong count = new AtomicLong(0); field in class:FickleRegister
73 count.getAndAdd(k * chunkSize);
116 System.out.println("Iterations:" + count.get());
/openjdk7/jdk/test/javax/management/monitor/
H A DCounterMonitorTest.java70 return count;
73 count = n;
75 private Object count= null; field in class:CounterMonitorTest.StdObservedObject
H A DCounterMonitorThresholdTest.java59 public void setCounter(int count); argument
64 return count;
66 public void setCounter(int count) { argument
67 this.count = count;
69 private int count = 0; field in class:CounterMonitorThresholdTest.Test
H A DThreadPoolTest.java82 waiter.count();
205 public void count() { method in class:ThreadPoolTest.Waiter
/openjdk7/jdk/test/javax/management/proxy/
H A DNotificationEmitterProxy.java43 int count; field in class:NotificationEmitterProxy.Counter
44 public synchronized int count() { method in class:NotificationEmitterProxy.Counter
45 count++;
47 return count;
50 return count;
55 while (count < max && timeout > 0) {
61 return count;
75 counter.count();
152 throw new RuntimeException("Bad notification count: " + reg +
162 throw new RuntimeException("Bad MXBean notification count
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DDeadListenerTest.java182 final AtomicInteger count; field in class:DeadListenerTest.CountListener
185 count = i;
189 this.count = new AtomicInteger();
192 int count() { method in class:DeadListenerTest.CountListener
193 return count.get();
197 count.incrementAndGet();
/openjdk7/jdk/src/share/classes/sun/management/
H A DFlag.java92 int count = getFlags(names, flags, numFlags);
107 private static native int getFlags(String[] names, Flag[] flags, int count); argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCache.java87 private int count; field in class:Cache
90 * Rehashes the table when count exceeds this threshold.
151 return count;
158 return count == 0;
215 // newCapacity + ", thresh=" + threshold + ", count=" + count);
226 count--; /* remove entries that have disappeared */
261 if (count >= threshold) {
271 count++;
296 count
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMeteredStream.java43 protected long count = 0; field in class:MeteredStream
73 count += n;
78 if (count - markedCount > markLimit) {
83 pi.updateProgress(count, expected);
92 if (count >= expected) {
108 if (count - markedCount > markLimit) {
151 long min = (n > expected - count) ? expected - count: n;
180 * mark the count to restore upon reset
182 markedCount = count;
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractWatchKey.java122 // is a modify event then we simply increment the count
194 // synchronize on watch key to access/increment count
195 private int count; field in class:AbstractWatchKey.Event
200 this.count = 1;
214 public int count() { method in class:AbstractWatchKey.Event
215 return count;
220 count++;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtomList.java47 public XAtomList(long data, int count) { argument
48 init(data, count);
50 private void init(long data, int count) { argument
51 for (int i = 0; i < count; i++) {
52 add(new XAtom(XToolkit.getDisplay(), XAtom.getAtom(data+count*XAtom.getAtomSize())));
/openjdk7/langtools/test/tools/javac/
H A DTestPkgInfo.java69 count++;
70 System.err.println("Test " + count + ": ok:" + ok + " sr:" + sr + " cr:" + cr + " rr:" + rr);
87 File tmpDir = new File("tmp.test" + count);
170 int count; field in class:TestPkgInfo

Completed in 59 milliseconds

1234567891011>>