Searched refs:high (Results 1 - 25 of 138) sorted by relevance

123456

/openjdk7/jdk/src/share/sample/forkjoin/mergesort/
H A DMergeSort.java68 private final int high; field in class:MergeSort.MergeSortTask
76 * @param high the non-inclusive high element to sort to
78 protected MergeSortTask(int[] array, int low, int high) { argument
81 this.high = high;
86 if (high - low <= THRESHOLD) {
87 Arrays.sort(array, low, high);
89 int middle = low + ((high - low) >> 1);
91 invokeAll(new MergeSortTask(array, low, middle), new MergeSortTask(array, middle, high));
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dos_bsd_x86.hpp37 static bool register_code_area(char *low, char *high) { return true; } argument
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dos_linux_x86.hpp37 static bool register_code_area(char *low, char *high) { return true; } argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/util/
H A DArraySorter.java98 int high = to;
99 // We now move low and high toward each other, maintaining the
102 // arr[i] > pivot for all i > high
105 while (low <= high) {
115 // arr[high] > pivot:
116 c2 = c.compare(arr[high], pivot);
118 high--;
119 if (low > high) {
126 // At this point, low is never == high, BTW
127 if (low <= high) {
[all...]
H A DVectorSorter.java100 int high = to;
101 // We now move low and high toward eachother, maintaining the
104 // v[i] > pivot for all i > high
107 while (low <= high) {
117 c2 = c.compare(v.elementAt(high), pivot);
118 // v[high] > pivot:
120 high--;
121 if (low > high) {
128 // At this point, low is never == high
129 if (low <= high) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodingInfo.java35 * which can be called if the character is not the high one in
38 * isInEncoding(char high, char low);
40 * which can be called if the two characters from a high/low surrogate pair.
103 * character formed by the high/low pair is in the encoding.
104 * @param high a char that the a high char of a high/low surrogate pair.
105 * @param low a char that is the low char of a high/low surrogate pair.
108 public boolean isInEncoding(char high, char low) { argument
117 return m_encoding.isInEncoding(high, lo
156 isInEncoding(char high, char low) argument
213 isInEncoding(char high, char low) argument
445 inEncoding(char high, char low, String encoding) argument
[all...]
H A DWriterToUTF8Buffered.java126 * the 16 low-order bits of the given integer value; the 16 high-order bits
217 // Adjust the end of the chunk if it ends on a high char
234 * and it is the high char of a high/low pair with
237 * The char array incorrectly ends in a high char
238 * of a high/low surrogate pair, but there is
239 * no corresponding low as the high is the last char
284 * Unicode: [1101 10ww] [wwzz zzyy] (high surrogate)
290 char high, low;
291 high
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcCDebugger.java57 int high = arr.length - 1;
59 while (low <= high) {
60 mid = (low + high) >> 1;
64 high = mid - 1;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMTrapNum.java33 protected int high=0; field in class:JDMTrapNum
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.hpp35 static bool register_code_area(char *low, char *high) { return true; } argument
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.hpp35 static bool register_code_area(char *low, char *high) { return true; } argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DTABLESWITCH.java64 * TABLESWITCH - Switch within given range of values, i.e., low..high
78 * match[match_length - 1] high value
101 int high = (match_length > 0)? match[match_length - 1] : 0;
102 out.writeInt(high);
116 int high = bytes.readInt();
118 match_length = high - low + 1;
126 for(int i=low; i <= high; i++)
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSunFileReader.java208 * Protected helper method to read 16 bits value. Swap high with low byte.
216 short high, low;
220 high = (short)(( s & 0xFF ) << 8) ;
223 s = (short)( high | low );
236 short high, low;
238 high = (short)(( i & 0xFF ) << 8) ;
241 i = (short)( high | low );
H A DSunFileWriter.java136 * Protected helper method to read 16 bits value. Swap high with low byte.
144 short high, low;
148 high = (short)(( s & 0xFF ) << 8) ;
151 s = (short)( high | low );
164 short high, low;
166 high = (short)(( i & 0xFF ) << 8) ;
169 i = (short)( high | low );
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClassesTrace.hpp112 // is set in the range from low..high inclusive. Assumes that low
113 // and high are single bit values.
115 // ((high << 1) - 1)
116 // Yields a mask that removes bits greater than the high bit value.
120 #define RC_TRACE_IN_RANGE(low, high) \
121 (((TraceRedefineClasses & ((high << 1) - 1)) & ~(low - 1)) != 0)
/openjdk7/jdk/test/sun/nio/cs/
H A DSurrogateGB18030Test.java72 for (char high = '\ud800'; high <= '\udbff'; high++) {
74 pair[0] = high;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVirtualSpace.java59 public Address high() { return highField.getValue(addr); } method in class:VirtualSpace
64 public long committedSize() { return high().minus(low()); }
67 public boolean contains(Address addr) { return (low().lessThanOrEqual(addr) && addr.lessThan(high())); }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdCDebugger.java61 int high = arr.length - 1;
63 while (low <= high) {
64 mid = (low + high) >> 1;
68 high = mid - 1;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DSystemDictionaryHelper.java122 int high = tmpKlasses.length-1;
125 while (low <= high) {
126 mid = (low + high) >> 1;
133 high = mid - 1;
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.hpp47 static bool register_code_area(char *low, char *high) { return true; } argument
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.hpp47 static bool register_code_area(char *low, char *high) { return true; } argument
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dos_solaris_x86.hpp55 static bool register_code_area(char *low, char *high) { return true; } argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCompressedReadStream.java83 long high = readSignedInt();
84 return (high << 32) | low;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DadjoiningVirtualSpaces.cpp62 size_t actual_change = low()->expand_into(high(), change_in_bytes);
68 size_t actual_change = high()->expand_into(low(), change_in_bytes);
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableSorter.java252 public void shuttlesort(int from[], int to[], int low, int high) { argument
253 if (high - low < 2) {
256 int middle = (low + high) / 2;
258 shuttlesort(to, from, middle, high);
270 element and and the second, [mid, high), has two. We skip the
278 if (high - low >= 4 && compare(from[middle - 1], from[middle]) <= 0) {
279 System.arraycopy(from, low, to, low, high - low);
285 for (int i = low; i < high; i++) {
286 if (q >= high || (p < middle && compare(from[p], from[q]) <= 0)) {

Completed in 83 milliseconds

123456