/haiku/src/system/libroot/posix/glibc/stdlib/ |
H A D | strtol.c | 240 int overflow; variable 379 overflow = 0; 471 overflow = 1; 492 if (overflow == 0 496 overflow = 1; 499 if (__builtin_expect (overflow, 0))
|
/haiku/src/add-ons/kernel/file_systems/nfs4/ |
H A D | InodeDir.cpp | 343 bool overflow = false; in ReadDir() local 352 overflow = true; in ReadDir() 372 overflow = true; in ReadDir() 382 for (; !overflow && i < *_count; i++) { in ReadDir() 401 overflow = true; in ReadDir() 408 if (i == 0 && overflow) in ReadDir()
|
/haiku/src/libs/stdc++/legacy/ |
H A D | stdiostream.cc | 123 int stdiobuf::overflow(int c /* = EOF*/) in overflow() function in stdiobuf 125 if (filebuf::overflow(c) == EOF) in overflow()
|
H A D | streambuf.cc | 56 return sb->overflow(c); in __overflow() 65 int streambuf::overflow(int /* = EOF */) in overflow() function in streambuf 139 { return ((streambuf*)fp)->overflow(c); } in _IO_sb_overflow() 189 JUMP_INIT(overflow, _IO_sb_overflow),
|
H A D | indstream.cc | 57 int indirectbuf::overflow(int c /* = EOF */) in overflow() function in indirectbuf 60 return put_stream()->overflow(c); in overflow()
|
H A D | builtinbuf.cc | 32 int builtinbuf::overflow(int ch) { return _IO_OVERFLOW (this, ch); } in overflow() function in builtinbuf
|
H A D | strstream.cc | 64 int strstreambuf::overflow(int c /* = EOF */) in overflow() function in strstreambuf
|
H A D | filebuf.cc | 161 int filebuf::overflow(int c) in overflow() function in filebuf
|
/haiku/src/add-ons/print/transports/ipp/ |
H A D | Jamfile | 7 SubDirC++Flags -Wno-format-overflow ;
|
/haiku/src/add-ons/print/transports/lpr/ |
H A D | Jamfile | 6 SubDirC++Flags -Wno-format-overflow ;
|
/haiku/src/add-ons/print/transports/shared/ |
H A D | SocketStream.h | 18 virtual int overflow(int);
|
H A D | SocketStream.cpp | 58 int socketstreambuf::overflow(int c) in overflow() function in socketstreambuf
|
/haiku/headers/cpp/ |
H A D | builtinbuf.h | 41 virtual int overflow(int);
|
H A D | indstream.h | 69 virtual int overflow(int c = EOF);
|
H A D | stdiostream.h | 52 virtual int overflow(int c = EOF);
|
H A D | strstream.h | 46 virtual int overflow(int = EOF);
|
H A D | editbuf.h | 86 virtual int overflow(int c = EOF);
|
H A D | sstream | 26 /* seekoff and ideas for overflow is largely borrowed from libstdc++-v3 */ 101 overflow(int c = EOF)
|
H A D | streambuf.h | 351 virtual int overflow(int c = EOF); // Leave public for now 441 virtual int overflow(int c = EOF);
|
/haiku/src/system/libroot/posix/glibc/libio/ |
H A D | iopopen.c | 248 JUMP_INIT(overflow, _IO_new_file_overflow), 271 JUMP_INIT(overflow, _IO_new_file_overflow),
|
H A D | memstream.c | 43 JUMP_INIT (overflow, INTUSE(_IO_str_overflow)), 67 JUMP_INIT (overflow, (_IO_overflow_t) _IO_wstr_overflow),
|
H A D | iofopncook.c | 100 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)), 219 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
|
H A D | vsnprintf.c | 84 JUMP_INIT(overflow, _IO_strn_overflow),
|
H A D | vswprintf.c | 82 JUMP_INIT(overflow, (_IO_overflow_t) _IO_wstrn_overflow),
|
/haiku/src/libs/mapm/ |
H A D | README | 162 detect integer overflow and underflow. Per K&R C, the result of integer 163 overflow/underflow is implementation dependent. In assembly language, when 164 you add two numbers, you have access to a "carry flag" to see if an overflow 169 issue for most typical applications. However, it doesn't take much to overflow 172 The reaction to an integer overflow/underflow is unknown at run-time: 176 o) in some embedded applications an integer overflow/underflow triggers 185 KNOWN BUGS : (Other than integer overflow discussed above....) None
|