Searched defs:ticks (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DTrack.java56 * it contains or its duration in ticks.
196 // Or: document that the ticks() length will not be reduced
242 * Obtains the length of the track, expressed in MIDI ticks. (The
246 * @return the duration, in ticks
251 public long ticks() { method in class:Track
/openjdk7/jdk/test/com/sun/jmx/snmp/
H A DTimeTicksWrapping.java98 public SnmpTimeticksBuilder(long ticks) throws Exception { argument
99 timeticks = newSnmpTimeticks(ticks);
101 public SnmpTimeticksBuilder(Long ticks) throws Exception { argument
102 timeticks = newSnmpTimeticks(ticks);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DMidiUtils.java148 long[] ticks = cache.ticks;
161 || ticks[snapshotIndex] > tick) {
168 while (i < cacheCount && ticks[i] <= tick) {
169 snapshotMicro += ticks2microsec(ticks[i] - ticks[i - 1], tempos[i - 1], resolution);
174 + ticks2microsec(tick - ticks[snapshotIndex],
203 long[] ticks = cache.ticks;
216 long nextTime = us + ticks2microsec(ticks[
271 long[] ticks; field in class:MidiUtils.TempoCache
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.cpp77 return ticks();
83 void TimeStamp::update_to(jlong ticks) { argument
84 _counter = ticks;
H A Dtimer.hpp46 jlong ticks() const { return _counter; } function in class:VALUE_OBJ_CLASS_SPEC
63 void update_to(jlong ticks);
68 // ticks elapsed between VM start and last update
69 jlong ticks() const { return _counter; } function in class:VALUE_OBJ_CLASS_SPEC
70 // ticks elapsed since last update
H A Dfprofiler.cpp186 tty->print_cr("Printing compiled methods with PC buckets having more than %d ticks", ProfilerPCTickThreshold);
263 tick_counter ticks; member in class:ProfilerNode
282 void update(TickPosition where) { ticks.update(where);}
283 int total_ticks() { return ticks.total(); }
350 ticks.print_code(st, total_ticks);
352 ticks.print_native(st);
859 // Only record ticks for active compiler threads
945 void ThreadProfiler::record_interpreted_tick(JavaThread* thread, frame fr, TickPosition where, int* ticks) { argument
967 ticks[desc->bytecode()]++;
1289 tty->print_cr(" Bytecode ticks
1301 print_ticks(const char* title, int ticks, int total) argument
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DLinuxOperatingSystem.c40 struct ticks { struct
46 typedef struct ticks ticks; typedef in typeref:struct:ticks
55 ticks jvmTicks;
56 ticks cpuTicks;
57 ticks *cpus;
67 * Return the total number of ticks since the system was booted.
69 * the number of ticks spent on actual processes (user, system or
71 * of "executed" ticks on _all_ CPU:s, that is on a n-way system it is
72 * n times the number of ticks tha
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java72 private volatile long ticks; /* number of clock ticks since server started */ field in class:ServerImpl
744 return ticks;
809 ticks ++;
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp179 return t.ticks() - _stamp.ticks();
2252 jlong Management::ticks_to_ms(jlong ticks) { argument
2254 return (jlong)(((double)ticks / (double)os::elapsed_frequency())
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1728 struct tms ticks; local
1729 clock_t real_ticks = times(&ticks);
1735 *process_user_time = ((double) ticks.tms_utime) / ticks_per_second;
1736 *process_system_time = ((double) ticks.tms_stime) / ticks_per_second;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1519 struct tms ticks; local
1520 clock_t real_ticks = times(&ticks);
1526 *process_user_time = ((double) ticks.tms_utime) / ticks_per_second;
1527 *process_system_time = ((double) ticks.tms_stime) / ticks_per_second;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1746 struct tms ticks; local
1747 clock_t real_ticks = times(&ticks);
1753 *process_user_time = ((double) ticks.tms_utime) / ticks_per_second;
1754 *process_system_time = ((double) ticks.tms_stime) / ticks_per_second;

Completed in 3544 milliseconds