Home
last modified time | relevance | path

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

123

/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/
A Dstrtod.c147 int overflow; in _parse_integer() local
151 overflow = 0; in _parse_integer()
170 overflow = 1; in _parse_integer()
177 if (overflow) in _parse_integer()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminus/
A DCHANGES.txt8 1.3 - 2017.08.24 - Fix potential overflow in buffer-size check
11 1.5 - 2018.08.05 - Fix buffer overflow in tokenizer (Cosmin Truta)
/AliOS-Things-master/components/py_engine/tests/unix/
A Dextra_coverage.py.exp59 OverflowError: overflow converting long int to machine word
60 OverflowError: overflow converting long int to machine word
/AliOS-Things-master/components/py_engine/tests/pyb/
A Dcan.py.exp38 overflow
44 overflow
/AliOS-Things-master/components/py_engine/engine/py/
A Dparsenum.c103 goto overflow; in mp_parse_num_integer()
107 goto overflow; in mp_parse_num_integer()
137 overflow: in mp_parse_num_integer()
A Dobjfun.c309 bool overflow = true; in fun_bc_call() local
312 overflow = false; in fun_bc_call()
316 if (overflow) { in fun_bc_call()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/
A Dhard_swish.h36 bool overflow = a == b && a == std::numeric_limits<std::int16_t>::min(); in SaturatingDoublingHighMul() local
41 return overflow ? std::numeric_limits<std::int16_t>::max() : ab_x2_high16; in SaturatingDoublingHighMul()
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11clipboard.c113 unsigned long overflow; in X11_GetClipboardText() local
166 format, &seln_type, &seln_format, &nbytes, &overflow, &src) in X11_GetClipboardText()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/
A Dlibtiff-CVE-2018-10779.patch5 …TIFFSetupStrips(): avoid potential uint32 overflow on 32-bit systems with large number of strips. …
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/gemmlowp/fixedpoint/
A Dfixedpoint_sse.h292 __m128i one, sign_bit_mask, sum, rounded_half_sum, overflow, result;
297 overflow =
300 result = BitXor(rounded_half_sum, overflow);
A Dfixedpoint.h331 bool overflow = a == b && a == std::numeric_limits<std::int32_t>::min();
338 return overflow ? std::numeric_limits<std::int32_t>::max() : ab_x2_high32;
344 bool overflow = a == b && a == std::numeric_limits<std::int16_t>::min();
351 return overflow ? std::numeric_limits<std::int16_t>::max() : ab_x2_high16;
/AliOS-Things-master/components/SDL2/src/gfx/Docs/html/
A Ddoxygen.css149 overflow: auto;
701 overflow: hidden;
714 overflow:hidden;
989 body { overflow:visible; }
998 overflow:inherit;
1003 overflow: visible;
/AliOS-Things-master/components/mbedtls/library/
A Dcmac.c90 unsigned char overflow = 0x00; in cmac_multiply_by_u() local
108 output[i] = input[i] << 1 | overflow; in cmac_multiply_by_u()
109 overflow = input[i] >> 7; in cmac_multiply_by_u()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/iostream3/
A Dzfstream.cc214 gzfilebuf::overflow(int_type c) in overflow() function in gzfilebuf
301 return traits_type::eq_int_type(this->overflow(), traits_type::eof()) ? -1 : 0; in sync()
A Dzfstream.h125 overflow(int_type c = traits_type::eof());
/AliOS-Things-master/components/oss/src/utils/
A DStreamBuf.h44 int_type overflow(int_type _Meta = _Traits::eof())
/AliOS-Things-master/components/freetype/src/bdf/
A Dbdf.h225 bdf_glyphlist_t overflow; /* Storage used for glyph insertion. */ member
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/
A Dtarith.c609 int overflow = 0; in validation_muldiv() local
684 if (!ok) ++overflow; in validation_muldiv()
687 ok = 0, ++overflow, fpround = fp/*misleading*/; in validation_muldiv()
725 "errors)\n", tested, overflow, passed, error, error64); in validation_muldiv()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/iostream/
A Dzfstream.h31 virtual int overflow( int = EOF );
A Dzfstream.cpp173 int gzfilebuf::overflow( int c ) { in overflow() function in gzfilebuf
/AliOS-Things-master/documentation/doxygen/style/
A Ddoxygen-custom.css238 overflow: hidden; /*Fixed: list item bullets overlap floating elements*/
242 overflow: visible; /* reset ul rule for scroll bar in GENERATE_TREEVIEW window */
246 overflow: visible; /* reset ul rule for the navigation bar drop down lists */
252 overflow-x: auto; /*Fixed: fragment lines overlap floating elements*/
253 overflow-y: hidden;
261 overflow: auto;
1067 overflow: hidden;
1081 overflow:hidden;
1711 body { overflow:visible; }
1720 overflow:inherit;
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/
A Dtrees.c501 int overflow = 0; /* number of elements with bit length too large */ local
513 if (bits > max_length) bits = max_length, overflow++;
526 if (overflow == 0) return;
541 overflow -= 2;
542 } while (overflow > 0);
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Dtrees.c509 int overflow = 0; /* number of elements with bit length too large */ local
521 if (bits > max_length) bits = max_length, overflow++;
534 if (overflow == 0) return;
549 overflow -= 2;
550 } while (overflow > 0);
/AliOS-Things-master/components/SDL2/src/image/
A DCHANGES.txt123 * Fixed buffer overflow in BMP loading code, discovered by j00ru//vx
125 * Fixed buffer overflow in GIF loading code, discovered by Michael Skladnikiewicz
/AliOS-Things-master/components/mbedtls/
A DChangeLog626 overflow. #1179
911 encoded X.509 certificates. The overflow could enable maliciously
1180 * Fix potential integer overflow to buffer overflow in
1307 * Fix stack buffer overflow in pkcs12 decryption (used by
1310 * Fix potential buffer overflow in mbedtls_mpi_read_string().
2002 * Fixed possible buffer overflow with overlong PSK
2084 * Fixed potential overflow in certificate size verification in
2320 * Fixed potential overflow in certificate size verification in
2375 * Fixed potential heap buffer overflow on large hostname setting
2585 * Potential heap buffer overflow on large hostname setting
[all …]

Completed in 39 milliseconds

123