Searched refs:low (Results 126 - 150 of 155) sorted by relevance

1234567

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegexParser.java205 int low = this.regex.charAt(this.offset);
206 if (REUtil.isLowSurrogate(low)) {
207 this.chardata = REUtil.composeFromSurrogates(ch, low);
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp165 MemRegion cmr((HeapWord*)_virtual_space.low(),
241 char *eden_start = _virtual_space.low();
408 MemRegion cmr((HeapWord*)_virtual_space.low(),
H A Dgeneration.cpp55 MemRegion mangle_region((HeapWord*)_virtual_space.low(),
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToStream.java73 * single chars or surrogate pairs of high/low chars form
939 * represented by the high/low surrogate pair.
941 * An exception is thrown if there is no low surrogate in the pair,
942 * because the array ends unexpectely, or if the low char is there
943 * but its value is such that it is not a low surrogate.
971 final char low = ch[i+1];
972 if (!Encodings.isLowUTF16Surrogate(low)) {
979 + Integer.toHexString(low)}));
984 // If we make it to here we have a valid high, low surrogate pair
985 if (m_encodingInfo.isInEncoding(c,low)) {
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp242 oop least_value(HeapWord* low) { argument
243 oop least = (oop)low;
646 void lower_restart_addr(HeapWord* low);
H A DcompactibleFreeListSpace.hpp313 HeapWord* low = NULL);
H A DcompactibleFreeListSpace.cpp2999 HeapWord* low) {
3007 if (low != NULL) {
3008 if (span.contains(low)) {
3009 // Align low down to a card boundary so that
3011 HeapWord* aligned_low = (HeapWord*)align_size_down((uintptr_t)low,
3015 } else if (low > span.end()) {
3016 span = MemRegion(low, low); // Null region
H A DconcurrentMarkSweepGeneration.cpp72 // The low-level locking is of the usual CGC_lock monitor. We introduce
74 // low level monitor (hereafter "CGC lock").
94 // and here the low-level CMS lock, not the high level token,
98 // 1. if a thread does a low-level wait on the CMS lock, then it
100 // when it acquired the low-level CMS lock.
101 // 2. any low-level notifications on the low-level lock
119 // low-level lock/wait/notify scheme used for the baton-passing because of
201 HeapWord* bottom = (HeapWord*) _virtual_space.low();
4647 "Unreasonably low CMSPrecleanThreshol
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java1244 boolean low = ltr == (charix == -1);
1247 p1x = p2x = low ? 0 : m.advance;
1251 p1y = p2y = low ? 0 : m.advance;
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java80 * <em>low-surrogates</em> range (&#92;uDC00-&#92;uDFFF).
98 * this specific value if followed by any low-surrogate value in a string
517 * Unicode low-surrogate code unit</a>
519 * A low-surrogate is also known as a <i>trailing-surrogate</i>.
528 * Unicode low-surrogate code unit</a>
530 * A low-surrogate is also known as a <i>trailing-surrogate</i>.
1749 * This block represents codepoint values in the low surrogate
4537 * Unicode low-surrogate code unit</a>
4567 * a {@linkplain #isLowSurrogate(char) low-surrogate code unit} or
4589 * isHighSurrogate(high) && isLowSurrogate(low)
4599 isSurrogatePair(char high, char low) argument
4635 toCodePoint(char high, char low) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlass.cpp335 st->print_cr(" - %3d: 0x%x 0x%x", index, high(v), low(v));
H A DinstanceKlass.cpp1642 T, start_p, count, low, high, \
1645 T* const l = (T*)(low); \
1709 #define InstanceKlass_BOUNDED_OOP_MAP_ITERATE(obj, low, high, do_oop, \
1722 low, high, \
1730 low, high, \
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParser.jj780 t=<INTEGER_LITERAL> {jjtn000.low= Integer.parseInt(t.image);}
H A DParser.java767 jjtn000.low= Integer.parseInt(t.image);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp402 return HASH3(name(), high(temp), low(temp));
409 return HASH3(name(), high(temp), low(temp));
H A Dc1_LIR.hpp120 jint as_jint_lo() const { type_check(T_LONG ); return low(_value.get_jlong()); }
133 return low(jlong_cast(_value.get_jdouble()));
/openjdk7/jdk/test/sun/nio/cs/
H A DEUC_TW_OLD.java[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1334 address low, high; local
1336 if (fscanf(fp, "%p-%p", &low, &high) == 2) {
1337 if (low <= addr && addr < high) {
1338 if (vma_low) *vma_low = low;
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
1624 // 1/100 or 1/1000 second). It would be bad to use such a low res clock
3515 // about at this low abstraction level. If we need higher alignment,
3811 // OpenBSD pthread_setprio starves low priorit
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1142 address low, high; local
1144 if (fscanf(fp, "%p-%p", &low, &high) == 2) {
1145 if (low <= addr && addr < high) {
1146 if (vma_low) *vma_low = low;
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
1418 // 1/100 or 1/1000 second). It would be bad to use such a low res clock
3436 // about at this low abstraction level. If we need higher alignment,
3710 // the low
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp687 // If the low three bits in the xor result aren't clear, that means
1441 int32_t low = Bytes::get_Java_u4((address)&lpc[1]); local
1444 key -= low;
1445 skip = ((uint32_t) key > (uint32_t)(high - low))
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp635 int32_t lo = low(t);
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp2042 jint low = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
2044 if (low > high) {
2046 "low must be less than or equal to high in tableswitch");
2049 keys = high - low + 1;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp1199 __ set(low(con), to_reg->as_register_lo());
1211 __ set(low(con), O7);
1272 __ set(low(jlong_cast(c->as_jdouble())), to_reg->as_register_lo());
1764 // the sethi has been done above, so just put in the low 10 bits
2836 // move high and low halves of long values into single registers
2838 __ srl(cmp_value_lo, 0, cmp_value_lo); // clear upper 32 bits of low half
3189 // G4 is high half, G5 is low half
3221 __ mov (G5, dest->as_register_lo()); // copy low half into lo
3228 // G4 is high half, G5 is low half
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp1269 // unless it was manually specified. This is because a too-low value
1356 tty->print_cr("Automatic selection of the low pause collector"
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java3051 int low = (b & 0x0f);
3053 buf.append(hexChars[low]);

Completed in 1404 milliseconds

1234567