HomeSort by relevance Sort by last modified time
    Searched defs:overflow (Results 26 - 50 of 192) sorted by null

12 3 4 5 6 7 8

  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
unsigned_short.pass.cpp 37 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
pointer.pass.cpp 37 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/
CharT.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
CharT_pointer.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
char.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
char_pointer.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
char_to_wide.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
char_to_wide_pointer.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
signed_char.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
signed_char_pointer.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
unsigned_char.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
unsigned_char_pointer.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/
endl.pass.cpp 40 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
ends.pass.cpp 38 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.rvalue/
CharT_pointer.pass.cpp 42 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.unformatted/
put.pass.cpp 37 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
write.pass.cpp 37 overflow(typename base::int_type ch = base::traits_type::eof()) function in class:testbuf
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
sputc.pass.cpp 39 int_type overflow(int_type = traits_type::eof()) function in struct:test
  /external/python/cpython2/Modules/_sqlite/
util.c 141 int overflow; local
143 PY_LONG_LONG value = PyLong_AsLongLongAndOverflow(py_val, &overflow);
145 long value = PyLong_AsLongAndOverflow(py_val, &overflow);
149 if (!overflow) {
  /external/python/cpython3/Modules/_sqlite/
util.c 125 int overflow; local
126 long long value = PyLong_AsLongLongAndOverflow(py_val, &overflow);
129 if (!overflow) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
fpetestmodule.c 50 static double overflow(double);
65 fprintf(stderr,"overflow");
66 r = overflow(1.e160);
166 static double overflow(double b) function
169 PyFPE_START_PROTECT("Overflow", return 3.1416)
  /external/clang/test/SemaCXX/
integer-overflow.cpp 14 static const uint64_t overflow = 1 * 4608 * 1024 * 1024; // expected-warning {{overflow in expression; result is 536870912 with type 'int'}} variable
17 // expected-warning@+1 {{overflow in expression; result is 536870912 with type 'int'}}
18 uint64_t overflow = 4608 * 1024 * 1024, local
19 // expected-warning@+1 {{overflow in expression; result is 536870912 with type 'int'}}
21 // expected-warning@+1 {{overflow in expression; result is 536870912 with type 'int'}}
23 // expected-warning@+1 {{overflow in expression; result is 536870912 with type 'int'}}
25 // expected-warning@+1 {{overflow in expression; result is 536870912 with type 'int'}}
27 // expected-warning@+1 2{{overflow in expression; result is 536870912 with type 'int'}}
30 // expected-warning@+1 {{overflow in expression; result is 536870912 with type 'int'}
    [all...]
  /external/curl/lib/
strtoofft.c 81 int overflow; local
131 overflow = 0;
138 overflow = 1;
145 if(!overflow) {
234 /* overflow/underflow */
  /external/deqp/executor/
xeXMLWriter.cpp 115 int EscapeStreambuf::overflow (int ch) function in class:xe::xml::EscapeStreambuf
  /external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 14 // int_type overflow(int_type c = traits::eof());
37 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} function in struct:test_buf
44 assert(f.open("overflow.dat", std::ios_base::out) != 0);
49 assert(f.overflow('a') == 'a');
56 assert(f.open("overflow.dat", std::ios_base::in) != 0);
60 std::remove("overflow.dat");
64 assert(f.open("overflow.dat", std::ios_base::out) != 0);
69 assert(f.overflow('a') == 'a');
76 assert(f.open("overflow.dat", std::ios_base::in) != 0)
    [all...]

Completed in 1029 milliseconds

12 3 4 5 6 7 8