Searched defs:low (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.java32 protected int low=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
100 } else if (j < low) {
112 thresholdOp(low, high);
/openjdk7/jdk/src/share/sample/forkjoin/mergesort/
H A DMergeSort.java67 private final int low; field in class:MergeSort.MergeSortTask
75 * @param low the lower element to start sorting at
78 protected MergeSortTask(int[] array, int low, int high) { argument
80 this.low = low;
86 if (high - low <= THRESHOLD) {
87 Arrays.sort(array, low, high);
89 int middle = low + ((high - low) >> 1);
91 invokeAll(new MergeSortTask(array, low, middl
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVirtualSpace.java58 public Address low() { return lowField.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.hpp41 // --------- <--- low for H
63 // space at the high end and the low end, respectively
70 // The minimum byte size for the low space. It will not
80 // high and low ends. Does no initialization.
88 PSVirtualSpace* low() { return _low; } function in class:AdjoiningVirtualSpaces
103 // Maximum byte size for the low space.
H A DpsVirtualspace.hpp120 char* low() const { return committed_low_addr(); } function in class:PSVirtualSpace
128 // A virtual space that grows from high addresses to low addresses.
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c75 unsigned low; /* low bits for current root entry */ local
76 unsigned mask; /* mask for low root bits */
183 of the low root bits of huff. This is saved in low to check for when a
231 low = (unsigned)(-1); /* trigger new sub-table when len > root */
233 mask = used - 1; /* mask for comparing low */
256 /* replicate for those indices with low len bits equal to huff */
284 if (len > root && (huff & mask) != low) {
308 low
[all...]
/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
396 if (!XMLChar.isLowSurrogate(low)) {
398 fatalError("The character '"+(char)low+"' is an invalid XML character");
401 int supplemental = XMLChar.supplemental((char)high, (char)low);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodingInfo.java38 * 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, low);
153 * Returns true if the high/low surrogat
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/jdk/src/share/native/sun/font/layout/
H A DLEFontInstance.cpp89 LEUnicode16 low = chars[i + 1]; local
91 if (low >= 0xDC00 && low <= 0xDFFF) {
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;
257 shuttlesort(to, from, low, middle);
260 int p = low;
269 are partitioned so that the first set, [low, mid), has one
278 if (high - low >= 4 && compare(from[middle - 1], from[middle]) <= 0) {
279 System.arraycopy(from, low, to, low, high - low);
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSurrogate.java63 * Tells whether or not the given value is in the low surrogate range.
97 * Returns the low UTF-16 surrogate for the given supplementary UCS-4 character.
100 public static char low(int uc) { method in class:Surrogate
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java267 * <code>low&nbsp;&lt;=&nbsp;<i>c</i>&nbsp;&lt;=&nbsp;high</code>
271 * @param low the low end of the range.
274 public void wordChars(int low, int hi) { argument
275 if (low < 0)
276 low = 0;
279 while (low <= hi)
280 ctype[low++] |= CT_ALPHA;
285 * <code>low&nbsp;&lt;=&nbsp;<i>c</i>&nbsp;&lt;=&nbsp;high</code>
292 * @param low th
295 whitespaceChars(int low, int hi) argument
315 ordinaryChars(int low, int hi) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DInteger.java597 static final int low = -128; field in class:Integer.IntegerCache
610 h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
614 cache = new Integer[(high - low) + 1];
615 int j = low;
640 if (i >= IntegerCache.low && i <= IntegerCache.high)
641 return IntegerCache.cache[i + (-IntegerCache.low)];
1155 * high-order, side reenter on the right, or low-order.)
1177 * low-order, side reenter on the left, or high-order.)
/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.java558 * low is the index in dest to start sorting
560 * off is the offset to generate corresponding low, high in src
565 int low,
568 int length = high - low;
572 for (int i=low; i<high; i++)
573 for (int j=i; j>low &&
580 int destLow = low;
582 low += off;
584 int mid = (low + high) >>> 1;
585 mergeSort(dest, src, low, mi
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/code/
H A DcompressedStream.cpp75 jint low = read_signed_int(); local
77 return jlong_from(high, low);
107 juint l = low( jlong_cast(value));
117 write_signed_int(low(value));
170 // remainder is either a "low code" or the 5th byte
208 // put x[low 12] into place, sign extended
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.hpp212 char* low() const { return _low; } function in class:VALUE_OBJ_CLASS_SPEC

Completed in 63 milliseconds

12