Searched defs:interval (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dprefetch_bsd_x86.inline.hpp31 inline void Prefetch::read (void *loc, intx interval) { argument
33 __asm__ ("prefetcht0 (%0,%1,1)" : : "r" (loc), "r" (interval));
37 inline void Prefetch::write(void *loc, intx interval) { argument
41 // __asm__ ("prefetchw (%0,%1,1)" : : "r" (loc), "r" (interval));
42 __asm__ ("prefetcht0 (%0,%1,1)" : : "r" (loc), "r" (interval));
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dprefetch_bsd_zero.inline.hpp31 inline void Prefetch::read(void* loc, intx interval) { argument
34 inline void Prefetch::write(void* loc, intx interval) { argument
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dprefetch_linux_sparc.inline.hpp32 inline void Prefetch::read(void *loc, intx interval) { argument
33 __asm__ volatile("prefetch [%0+%1], 0" : : "r" (loc), "r" (interval) : "memory" );
36 inline void Prefetch::write(void *loc, intx interval) { argument
37 __asm__ volatile("prefetch [%0+%1], 2" : : "r" (loc), "r" (interval) : "memory" );
42 inline void Prefetch::read (void *loc, intx interval) {} argument
43 inline void Prefetch::write(void *loc, intx interval) {} argument
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dprefetch_linux_x86.inline.hpp31 inline void Prefetch::read (void *loc, intx interval) { argument
33 __asm__ ("prefetcht0 (%0,%1,1)" : : "r" (loc), "r" (interval));
37 inline void Prefetch::write(void *loc, intx interval) { argument
41 // __asm__ ("prefetchw (%0,%1,1)" : : "r" (loc), "r" (interval));
42 __asm__ ("prefetcht0 (%0,%1,1)" : : "r" (loc), "r" (interval));
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dprefetch_linux_zero.inline.hpp31 inline void Prefetch::read(void* loc, intx interval) { argument
34 inline void Prefetch::write(void* loc, intx interval) { argument
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dprefetch_solaris_x86.inline.hpp31 void _Prefetch_read (void *loc, intx interval);
32 void _Prefetch_write(void *loc, intx interval);
35 inline void Prefetch::read (void *loc, intx interval) { argument
37 _Prefetch_read(loc, interval);
42 inline void Prefetch::write(void *loc, intx interval) { argument
44 _Prefetch_write(loc, interval);
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dprefetch_windows_x86.inline.hpp30 inline void Prefetch::read (void *loc, intx interval) {} argument
31 inline void Prefetch::write(void *loc, intx interval) {} argument
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dprefetch_solaris_sparc.inline.hpp34 extern "C" void _Prefetch_read (void *loc, intx interval);
35 extern "C" void _Prefetch_write(void *loc, intx interval);
37 inline void Prefetch::read(void *loc, intx interval) { argument
38 _Prefetch_read(loc, interval);
41 inline void Prefetch::write(void *loc, intx interval) { argument
42 _Prefetch_write(loc, interval);
47 inline void _Prefetch_read (void *loc, intx interval) { argument
49 ("prefetch [%0+%1], 0" : : "r" (loc), "r" (interval) : "memory" );
51 inline void _Prefetch_write(void *loc, intx interval) { argument
53 ("prefetch [%0+%1], 2" : : "r" (loc), "r" (interval)
60 read(void *loc, intx interval) argument
61 write(void *loc, intx interval) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DreferencePolicy.cpp46 jlong interval = timestamp_clock - java_lang_ref_SoftReference::timestamp(p); local
47 assert(interval >= 0, "Sanity check");
49 // The interval will be zero if the ref was accessed since the last scavenge/gc.
50 if(interval <= _max_interval) {
77 jlong interval = timestamp_clock - java_lang_ref_SoftReference::timestamp(p); local
78 assert(interval >= 0, "Sanity check");
80 // The interval will be zero if the ref was accessed since the last scavenge/gc.
81 if(interval <= _max_interval) {
/openjdk7/jdk/src/share/demo/management/VerboseGC/
H A DVerboseGC.java65 public void dump(long interval, long samples) { argument
71 Thread.sleep(interval);
105 long interval = 5000; // default is 5 second interval
113 } else if (arg.startsWith("-interval=")) {
115 interval = Integer.parseInt(arg.substring(10)) * 1000;
149 long samples = (mins * 60 * 1000) / interval;
150 vgc.dump(interval, samples);
156 System.out.println(" [-interval=seconds] [-duration=minutes]");
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/file/
H A DFileMonitoredVm.java52 * @param interval sampling interval (unused in this protocol).
54 public FileMonitoredVm(VmIdentifier vmid, int interval) argument
56 super(vmid, interval);
H A DMonitoredHostProvider.java44 * The default polling interval. Not used by the <em>file:</em> protocol.
69 * <tt>interval</tt> parameter.
71 public MonitoredVm getMonitoredVm(VmIdentifier vmid, int interval) argument
74 return new FileMonitoredVm(vmid, interval);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DIntervalNode.java32 private Interval interval; field in class:IntervalNode
37 public IntervalNode(Interval interval, Comparator endpointComparator, Object data) { argument
39 this.interval = interval;
45 this.interval = argNode.interval;
49 return interval;
79 return interval.getLowEndpoint();
84 Object curMax = interval.getHighEndpoint();
102 String res = interval
[all...]
H A DIntervalTree.java39 constructs an internal "interval comparator" out of this one. */
45 public void insert(Interval interval, Object data) { argument
46 IntervalNode node = new IntervalNode(interval, endpointComparator, data);
51 intervals were intersected by the given query interval. It is
54 public List findAllNodesIntersecting(Interval interval) { argument
56 searchForIntersectingNodesFrom((IntervalNode) getRoot(), interval, retList);
126 Interval interval,
138 interval.getLowEndpoint()) > 0)) {
139 searchForIntersectingNodesFrom(left, interval, resultList);
143 if (node.getInterval().overlaps(interval, endpointComparato
125 searchForIntersectingNodesFrom(IntervalNode node, Interval interval, List resultList) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DWaitDispatchSupport.java59 private long interval; field in class:WaitDispatchSupport
142 * @param interval A time interval to wait for. Note that
150 EventFilter filter, long interval)
154 if (interval < 0) {
155 throw new IllegalArgumentException("The interval value must be >= 0");
157 this.interval = interval;
158 if (interval != 0) {
194 if (interval !
148 WaitDispatchSupport(EventDispatchThread dispatchThread, Conditional extCondition, EventFilter filter, long interval) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Mlib.c200 struct itimerval interval; local
202 interval.it_interval.tv_sec = numsec;
203 interval.it_interval.tv_usec = 0;
204 interval.it_value.tv_sec = numsec;
205 interval.it_value.tv_usec = 0;
206 setitimer(ITIMER_REAL, &interval, 0);
212 struct itimerval interval; local
215 getitimer(ITIMER_REAL, &interval);
216 sec = (((double) (numsec - 1)) - (double) interval.it_value.tv_sec) +
217 (1000000.0 - interval
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_error.c121 int interval = 10; /* 10 second message check */ local
126 md_sleep(interval); /* 'assign p=0' to stop pause loop */
127 timeleft -= interval;
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DMonitoredVm.java101 * Set the polling interval to <code>interval</code> milliseconds.
105 * the interval to override the implementation specific default
106 * interval.
108 * @param interval the polling interval in milliseconds
110 void setInterval(int interval); argument
113 * Get the polling interval.
115 * @return int - the current polling interval in milliseconds.
H A DMonitoredHost.java118 * The polling interval, in milliseconds, for this MonitoredHost instance.
120 protected int interval; field in class:MonitoredHost
301 * Set the polling interval for this MonitoredHost.
303 * @param interval the polling interval, in milliseconds
305 public void setInterval(int interval) { argument
306 this.interval = interval;
310 * Get the polling interval.
312 * @return int - the polling interval i
380 getMonitoredVm(VmIdentifier id, int interval) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAbstractMonitoredVm.java57 * The sampling interval, if the instrumentation buffer is acquired
60 protected int interval; field in class:AbstractMonitoredVm
66 * @param interval the initial sampling interval
68 public AbstractMonitoredVm(VmIdentifier vmid, int interval) argument
71 this.interval = interval;
111 public void setInterval(int interval) { argument
112 this.interval = interval;
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalMonitoredVm.java63 * @param interval the sampling interval
65 public LocalMonitoredVm(VmIdentifier vmid, int interval) argument
67 super(vmid, interval);
76 if (interval > 0) {
99 timer.schedule(task, interval, interval);
122 if (newInterval == interval) {
126 int oldInterval = interval;
H A DMonitoredHostProvider.java57 this.interval = DEFAULT_POLLING_INTERVAL;
73 public MonitoredVm getMonitoredVm(VmIdentifier vmid, int interval) argument
77 return new LocalMonitoredVm(nvmid, interval);
105 timer.schedule(task, interval, interval);
128 if (newInterval == interval) {
132 int oldInterval = interval;
159 * new Vms started since last interval.
161 * terminated Vms since last interval.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotation.java40 private Interval interval; field in class:Annotation
66 interval = new Interval(lowAddress, highAddress);
70 return interval;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweepDecorator.cpp125 const intx interval = PrefetchScanIntervalInBytes; local
133 Prefetch::write(q, interval);
187 Prefetch::write(end, interval);
331 const intx interval = PrefetchScanIntervalInBytes; local
336 Prefetch::write(q, interval);
/openjdk7/jdk/src/share/back/
H A Derror_messages.c321 int interval = 10; /* 10 second message check */ local
328 (void)sleep(interval); /* 'assign p = 0;' to get out of loop */
329 timeleft -= interval;

Completed in 52 milliseconds

12