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

12

/openjdk7/hotspot/src/share/vm/services/
H A DlowMemoryDetector.hpp157 // around the high or low threshold value.
160 // (1) the usage is crossing above the high threshold and
163 // (2) the usage is crossing above the high threshold and
167 // Subsequent crossings of the high threshold value do not cause
180 // to the high threshold.
182 // If the current level is between high and low threhsold, no change.
192 // - the usage is crossing above the high threshold regardless
267 // current used exceeds the high threshold
270 size_t high = pool->usage_threshold()->high_threshold(); local
271 if (used > high) {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSurrogate.java58 * Tells whether or not the given UTF-16 value is a high surrogate.
87 * Returns the high UTF-16 surrogate for the given UCS-4 character.
89 public static char high(int uc) { method in class:Surrogate
164 * will be consumed if c is a high surrogate
203 * will be consumed if c is a high surrogate
296 dst.put(high(uc));
344 da[dp] = high(uc);
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp160 LEUnicode16 high = chars[i]; local
161 LEUnicode32 code = high;
163 if (i < offset + count - 1 && high >= 0xD800 && high <= 0xDBFF) {
167 code = (high - 0xD800) * 0x400 + low - 0xDC00 + 0x10000;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DQuadCurve2D.java1084 * low to high. It is assumed that low <= high. The return
1088 private static int getTag(double coord, double low, double high) { argument
1092 if (coord >= high) {
1093 return (coord > high ? ABOVE : HIGHEDGE);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.cpp73 char* high = _vs.high(); local
82 assert(_vs.high() == high + delta, "invalid expansion");
89 assert(_vs.high() == high - delta, "invalid expansion");
H A DheapRegion.cpp458 HeapWord* high = end(); local
459 while (low < high) {
460 size_t diff = pointer_delta(high, low);
461 // Must add one below to bias toward the high amount. Otherwise, if
462 // "high" were at the desired value, and "low" were one less, we
463 // would not converge on "high". This is not symmetric, because
464 // we set "high" to a block start, which might be the right one,
467 if (middle == high) return high;
472 high
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp76 char* high = _vs.high(); local
85 assert(_vs.high() == high + delta, "invalid expansion");
90 assert(_vs.high() == high - delta, "invalid expansion");
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DInstruction.java111 R visitTableSwitch(Instruction instr, int default_, int low, int high, int[] offsets, P p); argument
223 int high = getInt(pad + 8);
224 return pad + 12 + 4 * (high - low + 1);
280 int high = getInt(pad + 8);
281 int[] values = new int[high - low + 1];
285 this, default_, low, high, values, p);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java743 protected int modulo(int temp, int low, int high) { argument
744 //modulo(a - low, high - low) + low
746 int b = high - low;
753 protected int fQuotient(int temp, int low, int high) { argument
754 //fQuotient(a - low, high - low)
756 return fQuotient(temp - low, high - low);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DBaseMarkupSerializer.java1598 protected void surrogates(int high, int low) throws IOException{ argument
1599 if (XMLChar.isHighSurrogate(high)) {
1605 int supplemental = XMLChar.supplemental((char)high, (char)low);
1622 fatalError("The character '"+(char)high+"' is an invalid XML character");
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dos_windows_x86.cpp166 // Arguments: low and high are the address of the full reserved
169 bool os::register_code_area(char *low, char *high) { argument
206 prt->EndAddress = (ULONG)(high - low);
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp737 int high = int_at(bci+1+old_pad+8); local
738 len = high-low+1 + 3; // 3 for default, hi, lo.
/openjdk7/jdk/src/windows/native/java/io/
H A Dio_util_md.c468 long high = (long)(length >> 32); local
472 ret = SetFilePointer(h, (long)(length), &high, FILE_BEGIN);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java539 public int buildIntFromShorts(short low, short high) { argument
540 return (((int) high) << 16) | (((int) low) & 0xFFFF);
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c63 static void set_high(jlong* value, jint high) { argument
65 *value |= (jlong)high << 32;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c121 unsigned int high; local
125 high = read_u4(pp);
127 x = high;
267 jint high; local
299 high = jlong_high(val.j);
301 check_printf("0x%08x%08x(%f)", high, low, val.d);
313 high = jlong_high(val.j);
315 check_printf("0x%08x%08x", high, low);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp1442 int32_t high = Bytes::get_Java_u4((address)&lpc[2]); local
1445 skip = ((uint32_t) key > (uint32_t)(high - low))
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java3537 * determine if a cast is allowed. For example, if high is true
3543 * @param high if true return an upper bound; otherwise a lower
3550 private Type rewriteQuantifiers(Type t, boolean high, boolean rewriteTypeVars) { argument
3551 return new Rewriter(high, rewriteTypeVars).visit(t);
3556 boolean high; field in class:Types.Rewriter
3559 Rewriter(boolean high, boolean rewriteTypeVars) { argument
3560 this.high = high;
3584 return high ? upperBound(t) : lowerBound(t);
3598 Type bound = high
[all...]
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c1136 int high; local
1154 high = readU4(ci);
1155 skip(ci, (high+1-low) * 4);
1242 int high; local
1262 high = readU4(ci);
1263 skip(ci, (high+1-low) * 4);
1369 int high; local
1388 high = readU4(ci);
1396 writeU4(ci, high);
1398 for (i = low; i <= high;
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java78 * of {@code char} values, the first from the <em>high-surrogates</em>
495 * Unicode high-surrogate code unit</a>
497 * A high-surrogate is also known as a <i>leading-surrogate</i>.
506 * Unicode high-surrogate code unit</a>
508 * A high-surrogate is also known as a <i>leading-surrogate</i>.
1724 * This block represents codepoint values in the high surrogate
1737 * This block represents codepoint values in the private use high
4512 * Unicode high-surrogate code unit</a>
4568 * a {@linkplain #isHighSurrogate(char) high-surrogate code unit}.
4589 * isHighSurrogate(high)
4599 isSurrogatePair(char high, char low) argument
4635 toCodePoint(char high, char low) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp445 inline jint high(jlong value) { return jint(value >> 32); } function
452 inline void set_high(jlong* value, jint high) { *value &= (jlong)(julong)(juint)0xffffffff; argument
453 *value |= (jlong)high << 32; }
1182 inline int build_int_from_shorts( jushort low, jushort high ) {
1183 return ((int)((unsigned int)high << 16) | (unsigned int)low);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp5787 Label high, low, done; local
5791 jcc(Assembler::greater, high);
5798 bind(high);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp930 // allocated (MAP_FIXED) from high address space. Every thread stack
1334 address low, high; local
1336 if (fscanf(fp, "%p-%p", &low, &high) == 2) {
1337 if (low <= addr && addr < high) {
1339 if (vma_high) *vma_high = high;
1524 address low, high; local
1525 if (find_vma((address)stack_start, &low, &high)) {
1526 // success, "high" is the true stack top. (ignore "low", because initial
1527 // thread stack grows on demand, its real bottom is high - RLIMIT_STACK.)
1528 stack_top = (uintptr_t)high;
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp800 // allocated (MAP_FIXED) from high address space. Every thread stack
1142 address low, high; local
1144 if (fscanf(fp, "%p-%p", &low, &high) == 2) {
1145 if (low <= addr && addr < high) {
1147 if (vma_high) *vma_high = high;
1332 address low, high; local
1333 if (find_vma((address)stack_start, &low, &high)) {
1334 // success, "high" is the true stack top. (ignore "low", because initial
1335 // thread stack grows on demand, its real bottom is high - RLIMIT_STACK.)
1336 stack_top = (uintptr_t)high;
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp154 const double high = (double) ((unsigned int) ~0); local
157 time->dwHighDateTime * (high/split);
798 result.dwHighDateTime = high(a);
3323 // CONSIDER: if ms is small, say 3, then we should run with a high resolution time.
3329 // (a) calls to timeBeginPeriod() and timeEndPeriod() and (b) time spent with high
3630 // a too high frequency, e.g., such as changing the priorities.
4265 long high = (long)(length >> 32); local
4272 ret = ::SetFilePointer(h, (long)(length), &high, FILE_BEGIN);

Completed in 1435 milliseconds

12