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

12

/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/
H A Dxptcinvoke_linux_s390.cpp47 PRUint32 overflow = 0, gpr = 1 /*this*/, fpr = 0; local
52 if (gpr < 5) gpr++; else overflow++;
60 if (gpr < 5) gpr++; else overflow++;
63 if (gpr < 4) gpr+=2; else gpr=5, overflow+=2;
68 if (gpr < 5) gpr++; else overflow++;
71 if (gpr < 4) gpr+=2; else gpr=5, overflow+=2;
74 if (fpr < 2) fpr++; else overflow++;
77 if (fpr < 2) fpr++; else overflow+=2;
82 if (gpr < 5) gpr++; else overflow++;
86 if (gpr < 5) gpr++; else overflow
96 invoke_copy_to_stack(PRUint32 paramCount, nsXPTCVariant* s, PRUint32* d_ov, PRUint32 overflow) argument
213 PRUint32 overflow = invoke_count_words (paramCount, params); local
[all...]
H A Dxptcinvoke_linux_s390x.cpp47 PRUint32 overflow = 0, gpr = 1 /*this*/, fpr = 0; local
52 if (gpr < 5) gpr++; else overflow++;
61 if (gpr < 5) gpr++; else overflow++;
67 if (gpr < 5) gpr++; else overflow++;
71 if (fpr < 4) fpr++; else overflow++;
76 if (gpr < 5) gpr++; else overflow++;
80 if (gpr < 5) gpr++; else overflow++;
84 /* Round up number of overflow words to ensure stack
86 return (overflow + 1) & ~1;
90 invoke_copy_to_stack(PRUint32 paramCount, nsXPTCVariant* s, PRUint64* d_ov, PRUint32 overflow) argument
207 PRUint64 overflow = invoke_count_words (paramCount, params); local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/widgets/
H A Deditbox.c67 signed int cursor_offset, underflow, overflow, first; local
73 overflow = ( cursor_offset - ( width - 1 ) );
79 } else if ( overflow > 0 ) {
80 first += overflow;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dstring.c91 int overflow; local
133 overflow = 0;
148 /* Check for overflow. */
150 overflow = 1;
169 if (overflow == 0
173 overflow = 1;
175 if (overflow)
211 int overflow; local
253 overflow = 0;
268 /* Check for overflow
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ia32/
H A DMultU64x32.S38 imull 8(%esp), %ecx # overflow not detectable
H A DMultU64x32.asm37 imul ecx, [esp + 8] ; overflow not detectable
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmdmac.c434 short overflow = 255; // count down so test it loop is faster local
443 if ( --overflow <= 0 )
446 length = 255 - overflow;
540 short overflow = 255; // count down so test it loop is faster local
549 if ( --overflow <= 0 )
552 length = 255 - overflow;
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dwritev.c166 PRUint32 overflow = descriptor.checksum & 0x80000000; local
168 if (0x00000000 != overflow) descriptor.checksum += 1;
H A Dtmoacc.c160 PRUint32 overflow = checksum & 0x80000000; local
162 if (0x00000000 != overflow) checksum += 1;
H A Dtmocon.c176 PRUint32 overflow = descriptor.checksum & 0x80000000; local
178 if (0x00000000 != overflow) descriptor.checksum += 1;
/vbox/src/VBox/ValidationKit/testmanager/htdocs/css/
H A Dcommon.css167 overflow: auto;
598 overflow: hidden;
603 overflow: hidden;
613 overflow: auto;
664 overflow: hidden;
803 overflow: hidden;
812 overflow: auto;
/vbox/src/libs/xpcom18a4/nsprpub/lib/prstreams/
H A Dprstrms.h77 virtual int overflow(int=EOF);
H A Dprstrms.cpp195 PRfilebuf::overflow(int c) function in class:PRfilebuf
/vbox/src/libs/zlib-1.2.6/contrib/iostream/
H A Dzfstream.h31 virtual int overflow( int = EOF );
H A Dzfstream.cpp173 int gzfilebuf::overflow( int c ) { function in class:gzfilebuf
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/core/
H A Dgdbidt.S42 IDT_ENTRY_PRESENT(overflow)
/vbox/src/libs/zlib-1.2.6/contrib/iostream3/
H A Dzfstream.h125 overflow(int_type c = traits_type::eof());
H A Dzfstream.cc214 gzfilebuf::overflow(int_type c) function in class:gzfilebuf
301 return traits_type::eq_int_type(this->overflow(), traits_type::eof()) ? -1 : 0;
322 // so that overflow(c) can safely add the extra character c to the sequence.
/vbox/src/VBox/VMM/VMMR0/
H A DVMMR0JmpA-x86.asm114 cmp dword [edi], STACK_PADDING ; Check for obvious stack overflow.
122 cmp ecx, VMM_STACK_SIZE - 64 ; Less than 64 bytes left -> overflow as well.
123 mov eax, esi ; restore eax in case of overflow (esi remains used)
151 mov dword [edi], 0h ; Reset the overflow marker.
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c91 overflow */
227 /* Checking for overflow in PyLong_AsLong is a PITA since C doesn't define
240 On overflow, returns -1 and sets *overflow to 1 or -1 depending
241 on the sign of the result. Otherwise *overflow is 0.
248 PyLong_AsLongAndOverflow(PyObject *vv, int *overflow) argument
258 *overflow = 0;
316 *overflow = sign;
330 *overflow = sign;
342 Returns -1 and sets an error condition if overflow occur
347 int overflow; local
1048 PyLong_AsLongLongAndOverflow(PyObject *vv, int *overflow) argument
[all...]
/vbox/src/libs/zlib-1.2.6/
H A Dtrees.c503 int overflow = 0; /* number of elements with bit length too large */ local
508 * overflow in the case of the bit length tree).
515 if (bits > max_length) bits = max_length, overflow++;
528 if (overflow == 0) return;
530 Trace((stderr,"\nbit length overflow\n"));
538 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
540 /* The brother of the overflow item also moves one step up,
543 overflow -= 2;
544 } while (overflow > 0);
1098 "pendingBuf overflow");
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_lex.l321 " overflow\n", yytext, v);
409 "integer overflow\n", yytext);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaEnc.c2124 Bool overflow; member in struct:_CSeqOutStreamBuf
2133 p->overflow = True;
2165 outStream.overflow = False;
2182 if (outStream.overflow)
2264 outStream.overflow = False;
2271 if (outStream.overflow)
/vbox/src/VBox/Debugger/
H A DDBGCEval.cpp207 /* check for overflow - ARG!!! How to detect overflow correctly!?!?!? */
1421 "Error: Numeric overflow (argument %d).\n", cArgs);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/
H A DEnquire.c353 overflow when reading the maximum double. This program quite ruthlessly
513 Fixed detection of infinity for machines with no overflow trap
745 Void overflow(int sig) function
747 signal(sig, overflow);
874 case '>': cmd= "exception"; val= "overflow"; break;
961 /* Calculate 2**n-1 until overflow - then use the previous value */
1049 signal(SIGFPE, overflow);
1052 signal(SIGOVER, overflow);
1127 "there's nothing that can be done if overflow occurs",
1874 Vprintf("%sCharacter overflow generate
[all...]

Completed in 170 milliseconds

12