Searched defs:DELTA (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/java/lang/management/OperatingSystemMXBean/
H A DGetSystemLoadAverage.java55 private static double DELTA = 0.05; field in class:GetSystemLoadAverage
106 double lowRange = expected * (1 - DELTA);
107 double highRange = expected * (1 + DELTA);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DProcessorVersion.java30 * MAJOR.MINOR[.DELTA]. Fields are incremented based on the following:
31 * DELTA field: changes for each bug fix, developer fixing the bug should
34 * bug fixes. DELTA field goes to zero and MINOR is
45 private static int DELTA = 0; field in class:ProcessorVersion
49 ((DELTA > 0) ? ("."+DELTA) : ("")));
/openjdk7/jdk/test/com/sun/management/ThreadMXBean/
H A DThreadCpuTimeArray.java44 private static final int DELTA = 100; field in class:ThreadCpuTimeArray
141 if ((times[i] + DELTA) < newTime) {
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadCpuTime.java44 private static final int DELTA = 100; field in class:ThreadCpuTime
122 if ((times[i] + DELTA) < newTime) {
H A DThreadUserTime.java44 private static final int DELTA = 100; field in class:ThreadUserTime
122 if ((times[i] + DELTA) < newTime) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMib.java61 private final int DELTA; field in class:LongList
81 DELTA = delta;
201 * Resize the list. Increase its capacity by DELTA elements.
206 final long[] newlist = allocate(list.length + DELTA);
220 final int min = list.length+DELTA;

Completed in 48 milliseconds