Searched defs:overflow (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
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 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 DBufferManagerWriteCollect.java78 public void overflow (ByteBufferWithInfo bbwi) method in class:BufferManagerWriteCollect
/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/jdk/test/sun/net/idn/
H A DPunycodeTest.java53 static final String overflow = "arithmetic overflow\n"; field in class:PunycodeTest
/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/runtime/
H A DperfMemory.hpp68 jint overflow; // number of bytes of overflow member in struct:__anon420
/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/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/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/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/src/share/vm/gc_implementation/g1/
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
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...]
/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/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp285 // increment invocation count & check for overflow
287 // Note: checking for negative value instead of overflow
288 // so we have a 'sticky' overflow test
293 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
309 Assembler::zero, overflow);
320 Assembler::zero, overflow);
345 __ br(Assembler::greaterEqualUnsigned, false, Assembler::pn, *overflow); // Far distance
439 // the stack will overflow, throw an exception
468 // (check for overflow)
546 // Add in java locals size for stack overflow chec
[all...]
H A DcppInterpreter_sparc.cpp397 // increment invocation count & check for overflow
399 // Note: checking for negative value instead of overflow
400 // so we have a 'sticky' overflow test
405 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
420 __ br(Assembler::greaterEqualUnsigned, false, Assembler::pn, *overflow);
655 // increment invocation counter and check for overflow
657 // Note: checking for negative value instead of overflow
658 // so we have a 'sticky' overflow test (may be of
1026 // handle invocation counter overflow
1480 // Worries about stack overflow mak
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp563 // increment invocation count & check for overflow
565 // Note: checking for negative value instead of overflow
566 // so we have a 'sticky' overflow test
571 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
594 __ jcc(Assembler::aboveEqual, *overflow);
617 // indicating if the counter overflow occurs at a backwards branch (non-NULL bcp).
1064 // increment invocation count & check for overflow
1084 // when overflow happens, the method should not be locked.
1476 // invocation counter overflow
1478 // Handle overflow o
[all...]
H A DtemplateInterpreter_x86_32.cpp62 // overflow occurs since we check explicitly for it now.
337 // increment invocation count & check for overflow
339 // Note: checking for negative value instead of overflow
340 // so we have a 'sticky' overflow test
345 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
361 __ increment_mask_and_jump(mdo_invocation_counter, increment, mask, rcx, false, Assembler::zero, overflow);
366 __ increment_mask_and_jump(invocation_counter, increment, mask, rcx, true, Assembler::zero, overflow);
400 __ jcc(Assembler::aboveEqual, *overflow);
430 // indicating if the counter overflow occurs at a backwards branch (non-NULL bcp).
934 // increment invocation count & check for overflow
[all...]
H A DtemplateInterpreter_x86_64.cpp290 // increment invocation count & check for overflow
292 // Note: checking for negative value instead of overflow
293 // so we have a 'sticky' overflow test
299 Label* overflow,
317 __ increment_mask_and_jump(mdo_invocation_counter, increment, mask, rcx, false, Assembler::zero, overflow);
322 __ increment_mask_and_jump(invocation_counter, increment, mask, rcx, true, Assembler::zero, overflow);
355 __ jcc(Assembler::aboveEqual, *overflow);
377 // indicates if the counter overflow occurs at a backwards branch
914 // increment invocation count & check for overflow
929 // Must happen AFTER invocation_counter check and stack overflow chec
298 generate_counter_incr( Label* overflow, Label* profile_method, Label* profile_method_continue) argument
[all...]
H A Dassembler_x86.hpp469 overflow = 0x0, enumerator in enum:Assembler::Condition
2345 // Stack overflow checking
2353 // stack overflow + shadow pages. Also, clobbers tmp
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp86 overflow, // number of overflow pushes enumerator in enum:TaskQueueStats::StatId
87 overflow_max_len, // max length of overflow stack
126 ++_stats[overflow];
416 // OverflowTaskQueue is a TaskQueue that also includes an overflow stack for
421 // push() - push onto the task queue or, if that fails, onto the overflow stack
422 // is_empty() - return true if both the TaskQueue and overflow stack are empty
425 // TaskQueue, and does not include the size of the overflow stack. This
436 // Push task t onto the queue or onto the overflow stack. Return true.
439 // Attempt to pop from the overflow stac
[all...]
/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);
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp810 // overflow measurement:
811 int overflow = 0, overflow_limit = MAX2(1000, rlimit); local
854 } else if (++overflow >= overflow_limit) {
855 match_flags = 0; break; // got tired of looking at overflow
904 } else if (++overflow >= overflow_limit) {
905 match_flags = 0; break; // got tired of looking at overflow
911 return rfill + overflow;
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSS2Properties.java1191 * See the overflow property definition in CSS2.
1195 * See the overflow property definition in CSS2.
1201 public void setOverflow(String overflow) argument

Completed in 132 milliseconds

12