/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | strtod.c | 147 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 D | CHANGES.txt | 8 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 D | extra_coverage.py.exp | 59 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 D | can.py.exp | 38 overflow 44 overflow
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | parsenum.c | 103 goto overflow; in mp_parse_num_integer() 107 goto overflow; in mp_parse_num_integer() 137 overflow: in mp_parse_num_integer()
|
A D | objfun.c | 309 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 D | hard_swish.h | 36 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 D | SDL_x11clipboard.c | 113 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 D | libtiff-CVE-2018-10779.patch | 5 …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 D | fixedpoint_sse.h | 292 __m128i one, sign_bit_mask, sum, rounded_half_sum, overflow, result; 297 overflow = 300 result = BitXor(rounded_half_sum, overflow);
|
A D | fixedpoint.h | 331 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 D | doxygen.css | 149 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 D | cmac.c | 90 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 D | zfstream.cc | 214 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 D | zfstream.h | 125 overflow(int_type c = traits_type::eof());
|
/AliOS-Things-master/components/oss/src/utils/ |
A D | StreamBuf.h | 44 int_type overflow(int_type _Meta = _Traits::eof())
|
/AliOS-Things-master/components/freetype/src/bdf/ |
A D | bdf.h | 225 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 D | tarith.c | 609 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 D | zfstream.h | 31 virtual int overflow( int = EOF );
|
A D | zfstream.cpp | 173 int gzfilebuf::overflow( int c ) { in overflow() function in gzfilebuf
|
/AliOS-Things-master/documentation/doxygen/style/ |
A D | doxygen-custom.css | 238 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 D | trees.c | 501 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 D | trees.c | 509 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 D | CHANGES.txt | 123 * 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 D | ChangeLog | 626 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 …]
|