| /external/dng_sdk/source/ |
| dng_safe_arithmetic.cpp | 11 // https://www.securecoding.cert.org/confluence/display/c/INT32-C.+Ensure+that+operations+on+signed+integers+do+not+result+in+overflow 36 ThrowProgramError("Arithmetic overflow"); 49 ThrowProgramError("Arithmetic overflow"); 105 ThrowProgramError("Arithmetic overflow"); 115 ThrowProgramError("Arithmetic overflow"); 171 ThrowProgramError("Arithmetic overflow"); 183 bool overflow = true; local 187 overflow = (arg1 > std::numeric_limits<std::int64_t>::max() / arg2); 189 overflow = (arg2 < std::numeric_limits<std::int64_t>::min() / arg1); 193 overflow = (arg1 < std::numeric_limits<std::int64_t>::min() / arg2) [all...] |
| /external/zlib/src/contrib/iostream3/ |
| zfstream.cc | 214 gzfilebuf::overflow(int_type c) function in class:gzfilebuf 230 // Overflow doesn't fail if nothing is to be written 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.
|
| /ndk/sources/cxx-stl/stlport/src/ |
| stdio_streambuf.cpp | 203 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c) { function in class:stdio_ostreambuf
|
| strstream.cpp | 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
|
| /ndk/sources/cxx-stl/stlport/stlport/stl/ |
| _sstream.h | 82 virtual int_type overflow(int_type __c); 84 int_type overflow() {return overflow(_Traits::eof());} function in class:basic_stringbuf
|
| _streambuf.c | 99 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(*__s)), 126 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(__c)), 156 basic_streambuf<_CharT, _Traits>::overflow(int_type) { function in class:_Traits
|
| /packages/apps/Email/src/com/beetstra/jutf7/ |
| UTF7StyleCharsetDecoder.java | 73 return overflow(in);
80 return overflow(in);
95 return overflow(in);
103 private CoderResult overflow(ByteBuffer in) {
method in class:UTF7StyleCharsetDecoder 105 return CoderResult.OVERFLOW;
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/ |
| stdio_sync_filebuf.h | 141 overflow(int_type __c = traits_type::eof()) function in class:stdio_sync_filebuf
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/ |
| stdio_sync_filebuf.h | 141 overflow(int_type __c = traits_type::eof()) function in class:stdio_sync_filebuf
|
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/ |
| stdio_sync_filebuf.h | 141 overflow(int_type __c = traits_type::eof()) function in class:stdio_sync_filebuf
|
| /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/ |
| stdio_sync_filebuf.h | 141 overflow(int_type __c = traits_type::eof()) function in class:stdio_sync_filebuf
|
| /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
| _sstream.h | 82 virtual int_type overflow(int_type __c); 84 int_type overflow() {return overflow(_Traits::eof());} function in class:basic_stringbuf
|
| _streambuf.c | 99 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(*__s)), 126 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(__c)), 156 basic_streambuf<_CharT, _Traits>::overflow(int_type) { function in class:_Traits
|
| /external/guava/guava/src/com/google/common/primitives/ |
| UnsignedLongs.java | 320 * unsigned long. This is useful for detecting overflow while parsing a string representation of 388 BigInteger overflow = new BigInteger("10000000000000000", 16); typedefs 392 maxSafeDigits[i] = overflow.toString(i).length() - 1;
|
| /external/libcxx/src/ |
| strstream.cpp | 151 strstreambuf::overflow(int_type __c) function in class:strstreambuf
|
| /external/mesa3d/src/gallium/auxiliary/draw/ |
| draw_pipe_vbuf.c | 101 overflow( void *map, void *ptr, unsigned bytes, unsigned bufsz ) function
|
| /external/v8/src/ |
| conversions-inl.h | 233 int overflow = static_cast<int>(number >> 53); local 234 if (overflow != 0) { 235 // Overflow occurred. Need to determine which direction to round the 238 while (overflow > 1) { 240 overflow >>= 1; 272 // Rounding up may cause overflow. 457 // will not overflow the multiplier, we stop parsing the part 718 // Check overflow.
|
| /external/zlib/src/contrib/iostream/ |
| zfstream.cpp | 173 int gzfilebuf::overflow( int c ) { function in class:gzfilebuf
|
| /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
| dec_amr.h | 41 Description: Update function prototype for Decoder_amr(). Include overflow 157 Flag overflow; member in struct:Decoder_amrState
|
| /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
| cod_amr.h | 41 Description: Added overflow flag as an element to the cod_amrState data 170 /* Overflow flag */ 171 Flag overflow; member in struct:__anon28955
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
| strstream.cpp | 151 strstreambuf::overflow(int_type __c) function in class:strstreambuf
|
| /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
| const.go | 63 overflow(v, t) 260 overflow(n.Val(), t) 284 overflow(n.Val(), t) 402 Fatal("overflow: %v integer constant", t) 410 Fatal("overflow: %v floating-point constant", t) 418 Fatal("overflow: %v complex constant", t) 428 func overflow(v Val, t *Type) { func 435 // Only uintptrs may be converted to unsafe.Pointer, which cannot overflow. 460 Yyerror("overflow in int -> string") 1077 overflow(v, n.Type [all...] |
| /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
| const.go | 60 overflow(v, t) 257 overflow(n.Val(), t) 281 overflow(n.Val(), t) 399 Fatal("overflow: %v integer constant", t) 407 Fatal("overflow: %v floating-point constant", t) 415 Fatal("overflow: %v complex constant", t) 425 func overflow(v Val, t *Type) { func 432 // Only uintptrs may be converted to unsafe.Pointer, which cannot overflow. 457 Yyerror("overflow in int -> string") 1074 overflow(v, n.Type [all...] |
| /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
| const.go | 63 overflow(v, t) 260 overflow(n.Val(), t) 284 overflow(n.Val(), t) 402 Fatal("overflow: %v integer constant", t) 410 Fatal("overflow: %v floating-point constant", t) 418 Fatal("overflow: %v complex constant", t) 428 func overflow(v Val, t *Type) { func 435 // Only uintptrs may be converted to unsafe.Pointer, which cannot overflow. 460 Yyerror("overflow in int -> string") 1077 overflow(v, n.Type [all...] |
| /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
| const.go | 60 overflow(v, t) 257 overflow(n.Val(), t) 281 overflow(n.Val(), t) 399 Fatal("overflow: %v integer constant", t) 407 Fatal("overflow: %v floating-point constant", t) 415 Fatal("overflow: %v complex constant", t) 425 func overflow(v Val, t *Type) { func 432 // Only uintptrs may be converted to unsafe.Pointer, which cannot overflow. 457 Yyerror("overflow in int -> string") 1074 overflow(v, n.Type [all...] |