HomeSort by: relevance | last modified time | path
    Searched refs:overflow (Results 1 - 25 of 110) sorted by relevancy

1 2 3 4 5

  /src/sys/arch/hppa/spmath/
divufr.c 54 overflow = true;
58 /* check for overflow */
60 overflow = true;
63 overflow = false;
divuir.c 54 overflow = true;
57 overflow = false;
mpys.c 54 /* determine overflow status */
56 (result_hi == -1 && result_lo < 0)) overflow = false;
57 else overflow = true;
mpyu.c 54 /* determine overflow status */
55 if (result_hi) overflow = true;
56 else overflow = false;
divsfm.c 56 overflow = true;
72 * check for overflow
84 overflow = true;
99 /* check for overflow */
101 overflow = true;
104 overflow = false;
divsfr.c 56 overflow = true;
72 * check for overflow
84 overflow = true;
93 /* check for overflow */
95 overflow = true;
98 overflow = false;
divsim.c 56 overflow = true;
87 * check for overflow
89 * at this point, the only way we can get overflow
93 overflow = true;
97 overflow = false;
103 overflow = true;
mpyscv.c 53 overflow = false;
mpyucv.c 54 overflow = false;
divsir.c 56 overflow = true;
87 * check for overflow
89 * at this point, the only way we can get overflow
93 overflow = true;
97 overflow = false;
mpyaccu.c 63 /* get result of high word add, and determine overflow status */
65 (unsigned)temp.rslt_hi) overflow = true;
mpyaccs.c 62 /* get result of high word add, and determine overflow status */
65 if (sign >= 0 && (temp.rslt_hi ^ result_hi) < 0) overflow = true;
  /src/tests/usr.bin/c++/
t_asan_heap_overflow.sh 44 asan_test_case heap_overflow "Heap Overflow example" heap-buffer-overflow
t_asan_off_by_one.sh 48 asan_test_case off_by_one "Off by one example" stack-buffer-overflow
t_asan_global_buffer_overflow.sh 45 asan_test_case global_buffer_overflow "Global Buffer Overflow example" \
46 global-buffer-overflow
  /src/tests/usr.bin/cc/
t_asan_heap_overflow.sh 44 asan_test_case heap_overflow "Heap Overflow example" heap-buffer-overflow
t_asan_off_by_one.sh 48 asan_test_case off_by_one "Off by one example" stack-buffer-overflow
t_asan_global_buffer_overflow.sh 45 asan_test_case global_buffer_overflow "Global Buffer Overflow example" \
46 global-buffer-overflow
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
mulodi4.c 19 /* Effects: sets *overflow to 1 if a * b overflows */
22 __mulodi4(di_int a, di_int b, int* overflow)
27 *overflow = 0;
32 *overflow = 1;
38 *overflow = 1;
50 *overflow = 1;
55 *overflow = 1;
mulosi4.c 19 /* Effects: sets *overflow to 1 if a * b overflows */
22 __mulosi4(si_int a, si_int b, int* overflow)
27 *overflow = 0;
32 *overflow = 1;
38 *overflow = 1;
50 *overflow = 1;
55 *overflow = 1;
muloti4.c 21 /* Effects: sets *overflow to 1 if a * b overflows */
24 __muloti4(ti_int a, ti_int b, int* overflow)
29 *overflow = 0;
34 *overflow = 1;
40 *overflow = 1;
52 *overflow = 1;
57 *overflow = 1;
  /src/tests/bin/date/
t_date.sh 30 atf_test_case overflow
32 atf_set "descr" "Check that date(1) does not overflow (PR lib/46542)"
55 atf_add_test_case overflow
  /src/lib/libc/arch/vax/gen/
modf.S 47 jvs 1f # integer overflow
57 jvs 1f # integer overflow
  /src/tests/sbin/ifconfig/
t_tap.sh 77 atf_test_case overflow cleanup
100 atf_add_test_case overflow
  /src/lib/libm/src/
s_scalbnl.c 82 /* Protect against integer overflow in calculation of new exponent */
84 goto overflow;
96 goto overflow;
112 overflow:

Completed in 26 milliseconds

1 2 3 4 5