Searched refs:low (Results 51 - 75 of 155) sorted by relevance

1234567

/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceMirrorKlass.cpp97 T, start_p, count, low, high, \
100 T* const l = (T*)(low); \
134 #define InstanceMirrorKlass_BOUNDED_OOP_ITERATE(start_p, count, low, high, \
140 low, high, \
145 low, high, \
H A DobjArrayKlass.cpp313 #define ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(T, a, p, low, high, do_oop) \
315 T* const l = (T*)(low); \
336 #define ObjArrayKlass_BOUNDED_OOP_ITERATE(a, p, low, high, do_oop) \
339 a, p, low, high, do_oop) \
342 a, p, low, high, do_oop) \
418 HeapWord* low = start == 0 ? (HeapWord*)a : (HeapWord*)a->obj_at_addr<narrowOop>(start);\
421 MemRegion mr(low, high); \
426 a, p, low, high, (closure)->do_oop##nv_suffix(p)) \
428 HeapWord* low = start == 0 ? (HeapWord*)a : (HeapWord*)a->obj_at_addr<oop>(start); \
430 MemRegion mr(low, hig
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DMidiUtils.java243 int low = 0;
245 while (low < high) {
247 ret = (low + high) >> 1;
253 // estimate too low
254 if (low == high - 1) {
259 low = ret;
/openjdk7/jdk/src/solaris/classes/sun/net/sdp/
H A DSdpProvider.java173 String low = s.substring(0, pos);
174 if (low.length() == 0) low = "*";
177 result[0] = low.equals("*") ? 0 : Integer.parseInt(low);
/openjdk7/hotspot/src/share/vm/memory/
H A Dheap.hpp100 size_t segment_for(void* p) const { return ((char*)p - _memory.low()) >> _log2_segment_size; }
101 HeapBlock* block_at(size_t i) const { return (HeapBlock*)(_memory.low() + (i << _log2_segment_size)); }
139 void* begin() const { return _memory.low (); }
147 // Returns reserved area high and low addresses
H A Dheap.cpp53 address p = (address)_segmap.low() + beg;
54 address q = (address)_segmap.low() + end;
64 address p = (address)_segmap.low() + beg;
65 address q = (address)_segmap.low() + end;
124 on_code_mapping(_memory.low(), _memory.committed_size());
155 char* base = _memory.low() + _memory.committed_size();
242 address b = (address)_segmap.low();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSurrogate.java65 * Tells whether or not the given UTF-16 value is a low surrogate.
94 * Returns the low UTF-16 surrogate for the given UCS-4 character.
96 public static char low(int uc) { method in class:Surrogate
297 dst.put(low(uc));
345 da[dp + 1] = low(uc);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUTF_32Coder.java164 char low = src.get();
165 if (Character.isLowSurrogate(low)) {
169 put(Character.toCodePoint(c, low), dst);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/Blowfish/
H A DBlowfishTestVector.java125 int low = (b & 0x0f);
127 buf.append(hexChars[low]);
/openjdk7/jdk/test/sun/security/x509/X500Name/
H A DDerValueConstructor.java111 int low = (b & 0x0f);
113 buf.append(hexChars[low]);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java99 * count number of bits from high-order 1 bit to low-order 1 bit,
316 // Discard non-significant low-order bits, while rounding,
327 // round up based on the low-order bits we're discarding
757 boolean low, high;
794 low = (b < m );
810 high = low = false;
812 while( ! low && ! high ){
818 low = (b < m );
826 low = true;
847 low
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DGenerationFactory.java70 virtualSpace().low() + "," + virtualSpace().high() + ")");
/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/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfo.java327 int low = 0;
330 while (low <= high) {
331 int mid = (low + high) / 2;
345 low = mid + 1;
354 if (low >= transitions.length) {
355 return low;
357 return low - 1;
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInjectBytecodes.java234 int low = c.readU4();
236 c.skip((high+1-low) * 4);
315 int low = c.readU4();
318 trace(" " + low + " to " + high);
321 for (int i = low; i <= high; ++i) {
329 c.skip((high+1-low) * 4);
488 int low = c.readU4();
496 c.writeU4(low);
500 trace(" " + low + " to " + high);
504 for (int i = low;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibTable.java2304 int low= 0;
2308 int curr= low + (max-low)/2;
2310 while (low <= max) {
2326 low = curr + 1;
2330 curr = low + (max-low)/2;
2378 int low= 0;
2382 int curr= low + (max-low)/
[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/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DasPSYoungGen.cpp139 virtual_space()->low(),
151 // expands at the low end of the virtual space
181 HeapWord* prev_low = (HeapWord*) virtual_space()->low();
189 HeapWord* new_low = (HeapWord*) virtual_space()->low();
233 // eden always starts at the low end of the committed virtual space
289 char* eden_start = (char*)virtual_space()->low();
537 HeapWord* new_eden_bottom = (HeapWord*)virtual_space()->low();
546 MemRegion cmr((HeapWord*)virtual_space()->low(),
/openjdk7/hotspot/test/compiler/6661247/
H A DTest.java53 int low = (src[srcPos] ? 1 : 0)
121 dest.put(k, ((long)low & 0xFFFFFFFFL) | (((long)high) << 32));
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/registry/
H A DCompress.java120 int low = readCode();
121 return (high << 4) | low;
/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/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp164 LEUnicode16 low = chars[i + 1]; local
166 if (low >= 0xDC00 && low <= 0xDFFF) {
167 code = (high - 0xD800) * 0x400 + low - 0xDC00 + 0x10000;
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DSpecialCaseMap.java199 * Extracts and returns the low surrogate value from a UTF-32 code point.
203 * @return the low surrogate value that helps create <code>codePoint</code>; else
208 char low = (char)codePoint;
210 low = (char)((codePoint - 0x10000)%0x0400 + 0xDC00);
212 return low;
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DEUC_TW.java75 BMP and Supp share the low/high 4 bits of one byte.
315 char low = cs.charAt(i++);
316 if (!Character.isLowSurrogate(low) || toEUC(c, low, bb) == -1)
325 public int toEUC(char hi, char low, byte[] bb) { argument
326 return encode(hi, low, bb);
442 static int encode(char hi, char low, byte[] bb) { argument
443 int c = Character.toCodePoint(hi, low);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c122 unsigned int low; local
126 low = read_u4(pp);
128 x = (x << 32) | low;
266 jint low; local
295 low = jlong_low(val.j);
296 check_printf("0x%08x(%f)", low, (double)val.f);
300 low = jlong_low(val.j);
301 check_printf("0x%08x%08x(%f)", high, low, val.d);
314 low = jlong_low(val.j);
315 check_printf("0x%08x%08x", high, low);
[all...]

Completed in 71 milliseconds

1234567