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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
checkedint.d 10 * same results, but set an 'overflow' flag when such truncation occurs.
25 * References: $(LINK2 http://blog.regehr.org/archives/1139, Fast Integer Overflow Checks)
42 * Add two signed integers, checking for overflow.
44 * The overflow is sticky, meaning a sequence of operations can
45 * be done and overflow need only be checked at the end.
49 * overflow = set if an overflow occurs, is not affected otherwise
55 int adds()(int x, int y, ref bool overflow)
59 overflow = true;
67 bool overflow;
    [all...]
  /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;
  /src/tests/usr.bin/c++/
t_asan_global_buffer_overflow.sh 45 asan_test_case global_buffer_overflow "Global Buffer Overflow example" \
46 global-buffer-overflow
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
  /src/tests/usr.bin/cc/
t_asan_global_buffer_overflow.sh 45 asan_test_case global_buffer_overflow "Global Buffer Overflow example" \
46 global-buffer-overflow
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
  /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/external/apache2/llvm/dist/libcxx/src/filesystem/
int128_builtins.cpp 22 __int128_t __muloti4(__int128_t a, __int128_t b, int* overflow) {
26 *overflow = 0;
30 *overflow = 1;
35 *overflow = 1;
46 *overflow = 1;
49 *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/external/bsd/jemalloc/include/jemalloc/internal/
prof_inlines_a.h 10 bool overflow; local
15 * enough), extreme overflow here (a1 >= prof_interval * 2) can cause
24 overflow = (a1 >= prof_interval);
25 if (overflow) {
34 overflow = (a1 >= prof_interval);
35 if (overflow) {
41 return overflow;
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
prof_inlines_a.h 10 bool overflow; local
15 * enough), extreme overflow here (a1 >= prof_interval * 2) can cause
24 overflow = (a1 >= prof_interval);
25 if (overflow) {
34 overflow = (a1 >= prof_interval);
35 if (overflow) {
41 return overflow;
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
prof_inlines_a.h 10 bool overflow; local
15 * enough), extreme overflow here (a1 >= prof_interval * 2) can cause
24 overflow = (a1 >= prof_interval);
25 if (overflow) {
34 overflow = (a1 >= prof_interval);
35 if (overflow) {
41 return overflow;

Completed in 38 milliseconds

1 2 3 4 5 6 7 8 91011>>