/freebsd/contrib/ntp/sntp/libopts/ |
H A D | intprops.h | 372 # define _GL_INT_OP_WRAPV(a, b, r, op, builtin, overflow) builtin (a, b, r) argument 374 # define _GL_INT_OP_WRAPV(a, b, r, op, builtin, overflow) \ argument 378 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ 381 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ 384 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ 387 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \ 390 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \ 393 # define _GL_INT_OP_WRAPV(a, b, r, op, builtin, overflow) \ argument 395 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ 398 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \ [all …]
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | T.overflow | 1 echo T.overflow: test some overflow conditions 11 cmp -s foo1 foo2 || echo 'BAD: T.overflow record 1' 19 cmp -s foo1 foo2 || echo 'BAD: T.overflow abcdef' 31 cmp -s foo1 foo2 || echo 'BAD: T.overflow -mr -mf set $1' 44 cmp -s foo1 foo2 || echo 'BAD: T.overflow -mr -mf NF' 53 test -r core && echo 1>&2 "BAD: T.overflow too long char class dropped core" 64 cmp -s foo1 foo2 || echo 'BAD: T.overflow huge sprintfs' 78 cmp -s foo1 foo2 || echo 'BAD: T.overflow big array' 82 grep "out of range field" foo >/dev/null || echo 1>&2 "BAD: T.overflow \$400000" 86 ls /tmp/awktestfoo* | grep '1000' >/dev/null || echo 1>&2 "BAD: T.overflow openfiles"
|
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_checks.inc | 23 UBSAN_CHECK(NullptrWithOffset, "nullptr-with-offset", "pointer-overflow") 25 "pointer-overflow") 27 "pointer-overflow") 28 UBSAN_CHECK(PointerOverflow, "pointer-overflow", "pointer-overflow") 32 UBSAN_CHECK(SignedIntegerOverflow, "signed-integer-overflow", 33 "signed-integer-overflow") 34 UBSAN_CHECK(UnsignedIntegerOverflow, "unsigned-integer-overflow", 35 "unsigned-integer-overflow") 59 UBSAN_CHECK(FloatCastOverflow, "float-cast-overflow", "float-cast-overflow")
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | int128_builtins.cpp | 22 __muloti4(__int128_t a, __int128_t b, int* overflow) { in __muloti4() argument 26 *overflow = 0; in __muloti4() 30 *overflow = 1; in __muloti4() 35 *overflow = 1; in __muloti4() 46 *overflow = 1; in __muloti4() 49 *overflow = 1; in __muloti4()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | int_mulo_impl.inc | 17 // Effects: sets *overflow to 1 if a * b overflows 19 static __inline fixint_t __muloXi4(fixint_t a, fixint_t b, int *overflow) { 23 *overflow = 0; 27 *overflow = 1; 32 *overflow = 1; 43 *overflow = 1; 46 *overflow = 1;
|
H A D | mulodi4.c | 21 COMPILER_RT_ABI di_int __mulodi4(di_int a, di_int b, int *overflow) { in __mulodi4() argument 22 return __muloXi4(a, b, overflow); in __mulodi4()
|
H A D | mulosi4.c | 21 COMPILER_RT_ABI si_int __mulosi4(si_int a, si_int b, int *overflow) { in __mulosi4() argument 22 return __muloXi4(a, b, overflow); in __mulosi4()
|
H A D | muloti4.c | 25 COMPILER_RT_ABI ti_int __muloti4(ti_int a, ti_int b, int *overflow) { in __muloti4() argument 26 return __muloXi4(a, b, overflow); in __muloti4()
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | prof_inlines_a.h | 11 bool overflow; in prof_accum_add() local 25 overflow = (a1 >= prof_interval); in prof_accum_add() 26 if (overflow) { in prof_accum_add() 35 overflow = (a1 >= prof_interval); in prof_accum_add() 36 if (overflow) { in prof_accum_add() 42 return overflow; in prof_accum_add()
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_str.cpp | 687 -1 in case of overflow, -2 in case of unknown unit. *size is set to parsed in __kmp_str_to_size() 688 value. In case of overflow *size is set to KMP_SIZE_T_MAX, in case of unknown in __kmp_str_to_size() 700 int overflow = 0; in __kmp_str_to_size() 718 overflow = overflow || (value > (KMP_SIZE_T_MAX - digit) / 10); in __kmp_str_to_size() 737 overflow = 1; \ in __kmp_str_to_size() 768 overflow = overflow || (value > (KMP_SIZE_T_MAX / factor)); in __kmp_str_to_size() 781 if (overflow) { in __kmp_str_to_uint() 797 int overflow in __kmp_str_to_uint() 685 int overflow = 0; __kmp_str_to_size() local 782 int overflow = 0; __kmp_str_to_uint() local [all...] |
/freebsd/cddl/contrib/opensolaris/lib/libcmdutils/common/ |
H A D | nicenum.c | 55 goto overflow; in nicenum_scale() 114 goto overflow; in nicenum_scale() 118 overflow: in nicenum_scale()
|
/freebsd/contrib/unbound/sldns/ |
H A D | parseutil.c | 212 sldns_str2period(const char *nptr, const char **endptr, int* overflow) in sldns_str2period() argument 218 *overflow = 0; in sldns_str2period() 242 *overflow = 1; in sldns_str2period() 251 *overflow = 1; in sldns_str2period() 260 *overflow = 1; in sldns_str2period() 269 *overflow = 1; in sldns_str2period() 278 *overflow = 1; in sldns_str2period() 295 *overflow = 1; in sldns_str2period() 303 *overflow = 1; in sldns_str2period() 312 *overflow = 1; in sldns_str2period()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/ |
H A D | zpool_import_rename_001_pos.ksh | 166 log_must zpool create overflow $VDEV_FILE 167 log_must zfs create overflow/testfs 168 ID=$(zpool get -Ho value guid overflow) 169 log_must zpool export overflow
|
/freebsd/crypto/libecc/ |
H A D | common.mk | 89 …ses -Wimplicit-fallthrough -Wloop-analysis -Wpointer-arith -Wshift-sign-overflow -Wshorten-64-to-3… 105 …overflow=2 -Wformat-truncation=2 -Wnull-dereference -Wstack-protector -Wtrampolines -Walloca -Wvla… 306 …CFLAGS += -fsanitize=integer -fno-sanitize=unsigned-integer-overflow -fno-sanitize=unsigned-shift-…
|
/freebsd/contrib/one-true-awk/bugs-fixed/ |
H A D | pfile-overflow.err | 1 awk: syntax error at source line 1 source file pfile-overflow.awk 4 awk: bailing out at source line 1 source file pfile-overflow.awk
|
/freebsd/contrib/ntp/libntp/ |
H A D | snprintf.c | 59 * check for integer overflow of the field width, precision, and return 568 int overflow = 0; in rpl_vsnprintf() local 632 overflow = 1; in rpl_vsnprintf() 665 overflow = 1; in rpl_vsnprintf() 814 precision, flags, &overflow); in rpl_vsnprintf() 815 if (overflow) in rpl_vsnprintf() 828 precision, flags, &overflow); in rpl_vsnprintf() 829 if (overflow) in rpl_vsnprintf() 848 precision, flags, &overflow); in rpl_vsnprintf() 849 if (overflow) in rpl_vsnprintf() 1093 fmtflt(char * str,size_t * len,size_t size,LDOUBLE fvalue,int width,int precision,int flags,int * overflow) fmtflt() argument [all...] |
/freebsd/tests/sys/sys/ |
H A D | buf_ring_test.c | 120 ATF_TC_WITHOUT_HEAD(overflow); 121 ATF_TC_BODY(overflow, tc) in ATF_TC_BODY() argument 178 ATF_TP_ADD_TC(tp, overflow); in ATF_TP_ADD_TCS()
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set1 | 47 45 Line overflow 88 86 Expansion buffer overflow 97 95 Substitution buffer overflow 127 125 Selector overflow
|
/freebsd/lib/libc/gmon/ |
H A D | mcount.c | 191 goto overflow; in _MCOUNT_DECL() 224 goto overflow; in _MCOUNT_DECL() 260 overflow: in _MCOUNT_DECL()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | cci.txt | 113 Definition: list of counter overflow interrupts, one per 115 starting with the cycle counter overflow 116 interrupt, followed by counter0 overflow 117 interrupt, counter1 overflow interrupt,... 118 ,counterN overflow interrupt.
|
/freebsd/contrib/arm-optimized-routines/math/test/testcases/directed/ |
H A D | expm1f.tst | 29 func=expm1f op1=43000000 result=7f800000 error=overflow 30 func=expm1f op1=43000001 result=7f800000 error=overflow 35 ; spurious overflow.
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Sanitizers.def | 91 SANITIZER("float-cast-overflow", FloatCastOverflow) 103 SANITIZER("pointer-overflow", PointerOverflow) 109 SANITIZER("signed-integer-overflow", SignedIntegerOverflow) 115 SANITIZER("unsigned-integer-overflow", UnsignedIntegerOverflow)
|
/freebsd/contrib/netbsd-tests/bin/expr/ |
H A D | t_expr.sh | 52 atf_test_case overflow 218 atf_add_test_case overflow
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | always-compiler-options.m4 | 264 dnl # Check if cc supports -Wformat-overflow option. 267 AC_MSG_CHECKING([whether $CC supports -Wformat-overflow]) 270 CFLAGS="$CFLAGS -Werror -Wformat-overflow" 273 FORMAT_OVERFLOW=-Wformat-overflow 275 [Define if compiler supports -Wformat-overflow])
|
/freebsd/sys/conf/ |
H A D | kern.mk | 21 NO_WSHIFT_COUNT_OVERFLOW= -Wno-shift-count-overflow 63 -Wno-error=overflow \ 65 -Wno-error=shift-overflow \ 69 CWARNEXTRA+= -Wno-error=stringop-overflow
|