Searched defs:high (Results 1 - 25 of 50) sorted by relevance

12

/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/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_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/linux_zero/vm/
H A Dos_linux_zero.hpp35 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/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMTrapNum.java33 protected int high=0; field in class:JDMTrapNum
/openjdk7/jdk/test/java/awt/image/ImagingOpsNoExceptionsTest/
H A DImagingOpsNoExceptionsTest.java42 private static int low = 100, high = 200; field in class:ImagingOpsNoExceptionsTest
95 public static void thresholdOp(int low, int high) { argument
98 if (j > high) {
112 thresholdOp(low, high);
/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/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/src/share/vm/gc_implementation/parallelScavenge/
H A DadjoiningVirtualSpaces.hpp47 // --------- <--- high for L
63 // space at the high end and the low end, respectively
73 // Same for the high space
80 // high and low ends. Does no initialization.
87 PSVirtualSpace* high() { return _high; } function in class:AdjoiningVirtualSpaces
99 // Maximum byte size for the high space.
H A DpsVirtualspace.hpp121 char* high() const { return committed_high_addr(); } function in class:PSVirtualSpace
128 // A virtual space that grows from high addresses to low addresses.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java33 static final int composeFromSurrogates(int high, int low) { argument
34 return 0x10000 + ((high-0xd800)<<10) + low-0xdc00;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DXML11Serializer.java394 protected final void surrogates(int high, int low) throws IOException{ argument
395 if (XMLChar.isHighSurrogate(high)) {
401 int supplemental = XMLChar.supplemental((char)high, (char)low);
418 fatalError("The character '"+(char)high+"' is an invalid XML character");
/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...]
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.hpp163 static address high() { return (address) _heap->high(); } function in class:CodeCache
H A DcompressedStream.cpp76 jint high = read_signed_int(); local
77 return jlong_from(high, low);
106 juint h = high(jlong_cast(value));
118 write_signed_int(high(value));
176 int b_i = L + (sum % H); // this is a "high code"
206 // put x[high 4] into place
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEFontInstance.cpp85 LEUnicode16 high = chars[i]; local
86 LEUnicode32 code = high;
88 if (i < offset + count - 1 && high >= 0xD800 && high <= 0xDBFF) {
92 code = (high - 0xD800) * 0x400 + low - 0xDC00 + 0x10000;
/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)) {
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSurrogate.java55 * Tells whether or not the given value is in the high surrogate range.
88 * Returns the high UTF-16 surrogate for the given supplementary UCS-4 character.
91 public static char high(int uc) { method in class:Surrogate
176 * will be consumed if c is a high surrogate
215 * will be consumed if c is a high surrogate
/openjdk7/jdk/src/share/classes/java/lang/
H A DInteger.java591 * During VM initialization, java.lang.Integer.IntegerCache.high property
598 static final int high; field in class:Integer.IntegerCache
602 // high value may be configured by property
605 sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
612 high = h;
614 cache = new Integer[(high - low) + 1];
639 assert IntegerCache.high >= 127;
640 if (i >= IntegerCache.low && i <= IntegerCache.high)
1155 * high-order, side reenter on the right, or low-order.)
1177 * low-order, side reenter on the left, or high
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.java559 * high is the end index in dest to end sorting
560 * off is the offset to generate corresponding low, high in src
566 int high,
568 int length = high - low;
572 for (int i=low; i<high; i++)
581 int destHigh = high;
583 high += off;
584 int mid = (low + high) >>> 1;
586 mergeSort(dest, src, mid, high, -off);
597 if (q >= high ||
563 mergeSort(Object[] src, Object[] dest, int low, int high, int off) argument
749 mergeSort(Object[] src, Object[] dest, int low, int high, int off, Comparator c) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dheap.hpp140 void* end() const { return _memory.high(); }
147 // Returns reserved area high and low addresses
149 char *high() const { return _memory.high(); } function in class:CodeHeap
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.hpp181 // Each region has an end boundary and a high pointer which is the
182 // high water mark for the last allocated byte.
213 char* high() const { return _high; } function in class:VALUE_OBJ_CLASS_SPEC

Completed in 125 milliseconds

12