Searched defs:counter (Results 51 - 75 of 84) sorted by relevance

1234

/openjdk7/jdk/test/java/util/Timer/
H A DArgs.java52 TimerTask counter(final CountDownLatch latch) { method in class:Args
100 schedule( t, counter(y1), past);
101 schedule( t, counter(y2), past, 1000);
102 scheduleAtFixedRate(t, counter(y3), past, 1000);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DAOMEntry.java65 private final int[] counter ; // single element holder for counter field in class:AOMEntry
106 entry.counter[0]++ ;
113 if (entry.counter[0] > 0)
114 entry.counter[0]-- ;
154 super( "counter>" + value ) ;
161 return Guard.Result.convert( entry.counter[0] > value ) ;
216 counter = new int[1] ;
217 counter[0] = 0 ;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DRFC2253Parser.java549 static int counter = 0; field in class:RFC2253Parser
558 System.out.println("start " + counter++ + ": " + st);
570 System.out.println("start " + counter++ + ": " + st);
/openjdk7/hotspot/src/share/vm/runtime/
H A DsimpleThresholdPolicy.cpp148 void SimpleThresholdPolicy::set_carry_if_necessary(InvocationCounter *counter) { argument
149 if (!counter->carry() && counter->count() > InvocationCounter::count_limit / 2) {
150 counter->set_carry_flag();
H A Dglobals.hpp283 intx* counter; member in class:CounterSetting
285 CounterSetting(intx* cnt) { counter = cnt; (*counter)++; }
286 ~CounterSetting() { (*counter)--; }
1259 "Trace method invocation counter overflow") \
1477 "An `interval' counter that determines how frequently " \
1668 "An `interval' counter that determines how frequently" \
2350 "use a separate counter when assigning ids to osr compilations") \
2628 "Increment invocation counter on backward branch") \
2637 "Use on stack replacement, calls runtime if invoc. counter " \
[all...]
H A Ddeoptimization.cpp164 // that can confuse an asynchronous stack walker. This counter is
552 // so that an asynchronous stack walker can work again. This counter is
1233 // that can confuse an asynchronous stack walker. This counter is
1429 // Reset invocation counter for outer most method.
1496 // Actually, since there is only one bit of counter per BCI,
1865 // Look for an unused counter, or an exact match to this BC.
1869 juint counter = *counter_addr; local
1870 if ((counter == 0 && bc_counter_addr == NULL)
1871 || (Bytecodes::Code)(counter & LSB_MASK) == bc) {
1872 // this counter i
1911 juint counter = cases[bc_case]; local
[all...]
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DPerfDataEntry.java26 package sun.management.counter.perf;
28 import sun.management.counter.*;
H A DPrologue.java26 package sun.management.counter.perf;
28 import sun.management.counter.*;
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp517 BitCounter counter; local
518 answer.iterate(&counter);
519 _total_live_locals_queried += counter.count();
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java108 int counter = 0; field in class:Inject.IndexedInjector
143 int injectedIndex = options.fixedIndex != 0? options.fixedIndex : ++counter;
144 infoList.add(new Info(counter, className, methodName, location));
/openjdk7/jdk/test/java/lang/invoke/
H A DPrivateInvokeTest.java214 private int counter; field in class:PrivateInvokeTest
217 final int n = ++counter;
289 return "<"+getClass().getSimpleName()+"#"+counter+">";
292 private PrivateInvokeTest withCounter(int counter) { argument
294 res.counter = counter;
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java146 private int counter = 0; field in class:PKCS12KeyStore
1217 // reset the counter
1218 counter = 0;
1553 counter++;
1554 return (String.valueOf(counter));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DURI.java1974 int [] counter = new int[1];
1977 index = scanHexSequence(address, index, end, counter);
1983 return (counter[0] == 8);
1989 if (++counter[0] > 8) {
2002 return (counter[0] == 6) &&
2011 int prevCount = counter[0];
2012 index = scanHexSequence(address, index, end, counter);
2019 address.substring((counter[0] > prevCount) ? index+1 : index, end)));
2031 * @param counter a counter fo
2037 scanHexSequence(String address, int index, int end, int [] counter) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp495 int counter = p->literal()->utf8_length(); local
496 total += counter;
497 if (counter < results_length) {
498 results[counter]++;
502 max_symbols = MAX2(max_symbols, counter);
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp212 // Update the invocation counter
214 InvocationCounter *counter = method->invocation_counter(); local
215 counter->increment();
216 if (counter->reached_InvocationLimit()) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Dworkgroup.hpp82 int counter() { return _counter; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractMemberWriter.java558 * @param counter the counter for determing style for the table row
561 Tag[] firstSentenceTags, Content tableTree, int counter) {
571 if (counter%2 == 0)
560 addMemberSummary(ClassDoc classDoc, ProgramElementDoc member, Tag[] firstSentenceTags, Content tableTree, int counter) argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSessionImpl.java124 private static volatile int counter = 0; field in class:SSLSessionImpl
171 sessionCount = ++counter;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp259 void LIRGenerator::increment_counter(address counter, BasicType type, int step) { argument
261 __ move(LIR_OprFact::intptrConst(counter), pointer);
1104 // increment backedge counter if needed
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c266 * Struct for the jvm process load counter.
270 HCOUNTER counter; member in struct:__anon1054
328 * Returns the counter value as a double for the specified query.
329 * Will collect the query data and update the counter values as necessary.
332 * @param c the counter to read.
364 * Places the resolved counter name of the counter at the specified index in the
365 * supplied buffer. There must be enough space in the buffer to hold the counter name.
367 * @param index the counter index as specified in the registry.
368 * @param buf the buffer in which to place the counter nam
442 char counter[COUNTER_BUF_SIZE*2]; local
454 char counter[COUNTER_BUF_SIZE*2]; local
570 char counter[2*COUNTER_BUF_SIZE]; local
631 char counter[2*COUNTER_BUF_SIZE]; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.hpp889 // Update the counter to indicate that this lock was eliminated.
925 NamedCounter* counter() const { return _counter; } function in class:AbstractLockNode
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp209 void LIRGenerator::increment_counter(address counter, BasicType type, int step) { argument
211 __ move(LIR_OprFact::intptrConst(counter), pointer);
1235 // increment backedge counter if needed
/openjdk7/jdk/src/share/back/
H A DthreadControl.c1140 jint *counter = (jint *)arg; local
1142 (*counter)++;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.h770 // counter for messages being processed by this component
876 explicit CounterHelper(UINT *counter) { argument
877 m_counter = counter;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c1971 /* Winding counter */
1972 jint counter; local
1974 /* Calculating mask to be applied to the winding counter */
2061 counter = 0;
2064 counter += curEdge->dir;
2065 if ((counter & counterMask) && !drawing) {
2070 if (!(counter & counterMask) && drawing) {

Completed in 293 milliseconds

1234