Home
last modified time | relevance | path

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

12345678910>>...14

/freebsd-14.2/contrib/ntp/sntp/libopts/
H A Dintprops.h374 # 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, \
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, \
401 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
403 : _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow))
405 # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ argument
412 # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ argument
[all …]
/freebsd-14.2/contrib/one-true-awk/testdir/
H A DT.overflow1 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-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_checks.inc23 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-14.2/contrib/llvm-project/libcxx/src/filesystem/
H A Dint128_builtins.cpp22 __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-14.2/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_mulo_impl.inc17 // 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 Dmulodi4.c21 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 Dmulosi4.c21 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 Dmuloti4.c25 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-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_inlines_a.h11 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-14.2/cddl/contrib/opensolaris/lib/libcmdutils/common/
H A Dnicenum.c55 goto overflow; in nicenum_scale()
114 goto overflow; in nicenum_scale()
118 overflow: in nicenum_scale()
/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_str.cpp700 int overflow = 0; in __kmp_str_to_size() local
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_size()
797 int overflow = 0; in __kmp_str_to_uint() local
815 overflow = overflow || (value > (KMP_SIZE_T_MAX - digit) / 10); in __kmp_str_to_uint()
830 if (overflow) { in __kmp_str_to_uint()
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_rename_001_pos.ksh166 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-14.2/contrib/unbound/sldns/
H A Dparseutil.c212 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-14.2/contrib/one-true-awk/bugs-fixed/
H A Dpfile-overflow.err1 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-14.2/sys/contrib/device-tree/Bindings/arm/
H A Darm,cci-400.yaml84 List of counter overflow interrupts, one per counter. The interrupts
85 must be specified starting with the cycle counter overflow interrupt,
86 followed by counter0 overflow interrupt, counter1 overflow
87 interrupt,... ,counterN overflow interrupt.
H A Dcci.txt113 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-14.2/contrib/ntp/libntp/
H A Dsnprintf.c568 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()
949 if (overflow || len >= INT_MAX) { in rpl_vsnprintf()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/timer/
H A Drenesas,rz-mtu3.yaml125 - description: MTU0.TCNT overflow
130 - description: MTU1.TCNT overflow
134 - description: MTU2.TCNT overflow
140 - description: MTU3.TCNT overflow
145 - description: MTU4.TCNT overflow/underflow
153 - description: MTU6.TCNT overflow
158 - description: MTU7.TCNT overflow/underflow
163 - description: MTU8.TCNT overflow
/freebsd-14.2/lib/libc/gmon/
H A Dmcount.c194 goto overflow; in _MCOUNT_DECL()
227 goto overflow; in _MCOUNT_DECL()
263 overflow: in _MCOUNT_DECL()
/freebsd-14.2/contrib/tcsh/nls/C/
H A Dset147 45 Line overflow
88 86 Expansion buffer overflow
97 95 Substitution buffer overflow
127 125 Selector overflow
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-dwp/
H A DOpts.td12 def continueOnCuIndexOverflow : Flag<["-", "--"], "continue-on-cu-index-overflow">;
13 def continueOnCuIndexOverflow_EQ : Joined<["-", "--"], "continue-on-cu-index-overflow=">,
/freebsd-14.2/contrib/arm-optimized-routines/pl/math/test/testcases/directed/
H A Dexpm1f.tst29 func=expm1f op1=43000000 result=7f800000 error=overflow
30 func=expm1f op1=43000001 result=7f800000 error=overflow
35 ; spurious overflow.
/freebsd-14.2/contrib/netbsd-tests/bin/expr/
H A Dt_expr.sh52 atf_test_case overflow
218 atf_add_test_case overflow
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizers.def88 SANITIZER("float-cast-overflow", FloatCastOverflow)
100 SANITIZER("pointer-overflow", PointerOverflow)
106 SANITIZER("signed-integer-overflow", SignedIntegerOverflow)
112 SANITIZER("unsigned-integer-overflow", UnsignedIntegerOverflow)
/freebsd-14.2/sys/conf/
H A Dkern.mk21 NO_WSHIFT_COUNT_OVERFLOW= -Wno-shift-count-overflow
63 -Wno-error=overflow \
65 -Wno-error=shift-overflow \
69 CWARNEXTRA+= -Wno-error=stringop-overflow

12345678910>>...14