Searched refs:overflow (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DinterpreterGenerator_sparc.hpp43 void generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterGenerator_x86.hpp45 void generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue);
H A DcppInterpreterGenerator_x86.hpp41 void generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DScanner.java516 boolean overflow = false;
540 overflow = overflow || (value * 10)/10 != value;
542 overflow = overflow || (value - 1 < -1);
544 overflow = overflow || (value >>> 61) != 0;
547 overflow = overflow || (value >>> 60) != 0;
563 overflow
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerWrite.java100 public abstract void overflow (ByteBufferWithInfo bbwi); method in class:BufferManagerWrite
107 * Case: overflow was never called (bbwi.buf contains complete message).
116 * Case: overflow was called N times (bbwi.buf contains last buffer).
H A DBufferManagerWriteGrow.java54 public void overflow (ByteBufferWithInfo bbwi) method in class:BufferManagerWriteGrow
H A DBufferManagerWriteStream.java66 public void overflow (ByteBufferWithInfo bbwi) method in class:BufferManagerWriteStream
H A DBufferManagerWriteCollect.java78 public void overflow (ByteBufferWithInfo bbwi) method in class:BufferManagerWriteCollect
H A DCDROutputStream_1_2.java229 bufferManagerWrite.overflow(bbwi);
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.cpp150 _prologue->overflow = 0;
160 if (_start != NULL && _prologue->overflow != 0) {
166 // this condition by monitoring the _prologue->overflow word.
181 _prologue->overflow);
216 _prologue->overflow += (jint)size;
H A DperfMemory.hpp68 jint overflow; // number of bytes of overflow member in struct:__anon420
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DSwitchStatement.java88 boolean overflow;
91 overflow = (ivalue != (byte)ivalue); break;
93 overflow = (ivalue != (short)ivalue); break;
95 overflow = (ivalue != (char)ivalue); break;
97 overflow = false;
99 if (overflow) {
100 env.error(s.where, "switch.overflow",
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHandshakeOutStream.java226 private void checkOverflow(int length, int overflow) { argument
227 if (length >= overflow) {
230 "Field length overflow, the field length (" +
231 length + ") should be less than " + overflow);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStack.cpp106 BasicBlock *overflow = CreateBlock("stack_overflow"); local
112 overflow, zero_ok);
137 overflow, abi_ok);
140 builder()->SetInsertPoint(overflow);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.cpp113 assert(get(overflow) == 0 || get(push) != 0,
114 err_msg("overflow=" SIZE_FORMAT " push=" SIZE_FORMAT,
115 get(overflow), get(push)));
116 assert(get(overflow_max_len) == 0 || get(overflow) != 0,
117 err_msg("overflow_max_len=" SIZE_FORMAT " overflow=" SIZE_FORMAT,
118 get(overflow_max_len), get(overflow)));
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUTF_8.java289 return xflow(src, mark, 1); // overflow
498 private static CoderResult overflow(CharBuffer src, int sp, method in class:UTF_8.Encoder
504 private static CoderResult overflow(CharBuffer src, int mark) { method in class:UTF_8.Encoder
530 return overflow(src, sp, dst, dp);
535 return overflow(src, sp, dst, dp);
548 return overflow(src, sp, dst, dp);
557 return overflow(src, sp, dst, dp);
577 return overflow(src, mark);
582 return overflow(src, mark);
595 return overflow(sr
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DPerfDataPrologue.java60 overflowField = type.getJIntField("overflow");
91 public int overflow() { method in class:PerfDataPrologue
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/
H A Dstylesheet.css74 overflow:hidden;
125 overflow:hidden;
138 overflow:hidden;
145 overflow:hidden;
368 overflow:hidden;
465 overflow:hidden;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBuffer.java78 IntegerMonitor overflow; field in class:PerfDataBuffer
237 this.overflow = (IntegerMonitor)monitor;
303 if ((t > timeLimit) || (overflow.intValue() > 0)) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.hpp185 // If overflow happens, don't do the push, and record the overflow.
189 // Record overflow.
236 bool overflow() { return _overflow; } function in class:VALUE_OBJ_CLASS_SPEC
409 // overflow occurs. The algorithm is the following. All tasks enter
420 // this is set by any task, when an overflow on the global data
428 // used when remark aborts due to an overflow to indicate that
545 // Access / manipulation of the overflow flag which is set to
552 // Methods to enter the two overflow sync barriers
602 if (_markStack.overflow()) {
[all...]
H A DsparsePRT.hpp89 overflow, enumerator in enum:SparsePRTEntry::AddCardResult
149 // overflow the entry for the region. The caller must transfer these
260 // overflow the entry for the region. The caller must transfer these
/openjdk7/jdk/test/sun/net/idn/
H A DPunycodeTest.java53 static final String overflow = "arithmetic overflow\n"; field in class:PunycodeTest
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dtrees.c529 int overflow = 0; /* number of elements with bit length too large */ local
534 * overflow in the case of the bit length tree).
541 if (bits > max_length) bits = max_length, overflow++;
554 if (overflow == 0) return;
556 Trace((stderr,"\nbit length overflow\n"));
564 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
566 /* The brother of the overflow item also moves one step up,
569 overflow -= 2;
570 } while (overflow > 0);
1136 "pendingBuf overflow");
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java96 IntegerMonitor overflow; field in class:PerfDataBuffer
245 this.overflow = (IntegerMonitor)monitor;
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp1318 // Create a region for the overflow checks to merge into.
1320 RegionNode* overflow = new (C) RegionNode(args); local
1321 kit.gvn().set_type(overflow, Type::CONTROL);
1351 overflow->add_req(__ IfFalse(iff));
1410 overflow->set_req(argi, __ IfTrue(iff));
1417 kit.set_control(overflow);
1418 C->record_for_igvn(overflow);

Completed in 123 milliseconds

12