Home
last modified time | relevance | path

Searched refs:overflow (Results 1 – 25 of 38) sorted by relevance

12

/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c240 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 DInodeDir.cpp343 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 Dstdiostream.cc123 int stdiobuf::overflow(int c /* = EOF*/) in overflow() function in stdiobuf
125 if (filebuf::overflow(c) == EOF) in overflow()
H A Dstreambuf.cc56 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 Dindstream.cc57 int indirectbuf::overflow(int c /* = EOF */) in overflow() function in indirectbuf
60 return put_stream()->overflow(c); in overflow()
H A Dbuiltinbuf.cc32 int builtinbuf::overflow(int ch) { return _IO_OVERFLOW (this, ch); } in overflow() function in builtinbuf
H A Dstrstream.cc64 int strstreambuf::overflow(int c /* = EOF */) in overflow() function in strstreambuf
H A Dfilebuf.cc161 int filebuf::overflow(int c) in overflow() function in filebuf
/haiku/src/add-ons/print/transports/ipp/
H A DJamfile7 SubDirC++Flags -Wno-format-overflow ;
/haiku/src/add-ons/print/transports/lpr/
H A DJamfile6 SubDirC++Flags -Wno-format-overflow ;
/haiku/src/add-ons/print/transports/shared/
H A DSocketStream.h18 virtual int overflow(int);
H A DSocketStream.cpp58 int socketstreambuf::overflow(int c) in overflow() function in socketstreambuf
/haiku/headers/cpp/
H A Dbuiltinbuf.h41 virtual int overflow(int);
H A Dindstream.h69 virtual int overflow(int c = EOF);
H A Dstdiostream.h52 virtual int overflow(int c = EOF);
H A Dstrstream.h46 virtual int overflow(int = EOF);
H A Deditbuf.h86 virtual int overflow(int c = EOF);
H A Dsstream26 /* seekoff and ideas for overflow is largely borrowed from libstdc++-v3 */
101 overflow(int c = EOF)
H A Dstreambuf.h351 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 Diopopen.c248 JUMP_INIT(overflow, _IO_new_file_overflow),
271 JUMP_INIT(overflow, _IO_new_file_overflow),
H A Dmemstream.c43 JUMP_INIT (overflow, INTUSE(_IO_str_overflow)),
67 JUMP_INIT (overflow, (_IO_overflow_t) _IO_wstr_overflow),
H A Diofopncook.c100 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
219 JUMP_INIT(overflow, INTUSE(_IO_file_overflow)),
H A Dvsnprintf.c84 JUMP_INIT(overflow, _IO_strn_overflow),
H A Dvswprintf.c82 JUMP_INIT(overflow, (_IO_overflow_t) _IO_wstrn_overflow),
/haiku/src/libs/mapm/
H A DREADME162 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

12