HomeSort by relevance Sort by last modified time
    Searched refs:overflow (Results 176 - 200 of 1132) sorted by null

1 2 3 4 5 6 78 91011>>

  /test/vti/dashboard/src/main/webapp/css/
show_table.css 36 overflow: hidden;
37 text-overflow: ellipsis;
69 overflow-y: scroll;
  /build/make/core/
config_sanitizers.mk 220 # Respect LOCAL_NOSANITIZE for integer-overflow flags.
221 ifeq ($(filter signed-integer-overflow, $(strip $(LOCAL_NOSANITIZE))),)
222 my_sanitize += signed-integer-overflow
224 ifeq ($(filter unsigned-integer-overflow, $(strip $(LOCAL_NOSANITIZE))),)
225 my_sanitize += unsigned-integer-overflow
231 my_sanitize_diag += signed-integer-overflow
232 my_sanitize_diag += unsigned-integer-overflow
329 # Use minimal diagnostics when integer overflow is enabled; never do it for HOST or AUX modules
338 ifneq ($(filter unsigned-integer-overflow signed-integer-overflow integer,$(my_sanitize)),
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
shift_test.go 823 t.Errorf("shift overflow mishandled")
826 t.Errorf("shift overflow mishandled")
829 t.Errorf("shift overflow mishandled")
832 t.Errorf("shift overflow mishandled")
835 t.Errorf("shift overflow mishandled")
838 t.Errorf("shift overflow mishandled")
841 t.Errorf("shift overflow mishandled")
844 t.Errorf("shift overflow mishandled")
847 t.Errorf("shift overflow mishandled")
850 t.Errorf("shift overflow mishandled"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
shift_test.go 823 t.Errorf("shift overflow mishandled")
826 t.Errorf("shift overflow mishandled")
829 t.Errorf("shift overflow mishandled")
832 t.Errorf("shift overflow mishandled")
835 t.Errorf("shift overflow mishandled")
838 t.Errorf("shift overflow mishandled")
841 t.Errorf("shift overflow mishandled")
844 t.Errorf("shift overflow mishandled")
847 t.Errorf("shift overflow mishandled")
850 t.Errorf("shift overflow mishandled"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
transmogrify.h 33 goto overflow;
39 goto overflow;
43 goto overflow;
51 goto overflow;
79 overflow:
  /external/python/cpython2/Objects/stringlib/
transmogrify.h 33 goto overflow;
39 goto overflow;
43 goto overflow;
51 goto overflow;
79 overflow:
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
double-int.h 114 double_int mul_with_sign (double_int, bool unsigned_p, bool *overflow) const;
116 double_int *higher, bool *overflow) const;
117 double_int add_with_sign (double_int, bool unsigned_p, bool *overflow) const;
118 double_int sub_with_overflow (double_int, bool *overflow) const;
119 double_int neg_with_overflow (bool *overflow) const;
  /prebuilts/go/darwin-x86/src/compress/lzw/
reader.go 61 // overflow is the code at which hi overflows the code width. It always
67 // (hi < overflow) || (hi == overflow && last == decoderInvalidCode)
68 clear, eof, hi, overflow, last uint16
164 d.overflow = 1 << d.width
202 if d.hi >= d.overflow {
206 // the invariant that d.hi <= d.overflow, and (2) d.hi does not
207 // eventually overflow a uint16.
211 d.overflow <<= 1
263 d.overflow = uint16(1) << d.widt
    [all...]
  /prebuilts/go/linux-x86/src/compress/lzw/
reader.go 61 // overflow is the code at which hi overflows the code width. It always
67 // (hi < overflow) || (hi == overflow && last == decoderInvalidCode)
68 clear, eof, hi, overflow, last uint16
164 d.overflow = 1 << d.width
202 if d.hi >= d.overflow {
206 // the invariant that d.hi <= d.overflow, and (2) d.hi does not
207 // eventually overflow a uint16.
211 d.overflow <<= 1
263 d.overflow = uint16(1) << d.widt
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
mep-relocs.pl 138 $overflow = $sign[$i];
139 $overflow = 'N' if $attrs[$i] =~ /no-overflow/;
143 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
165 if ($attrs[$i] !~ /no-overflow/ && $bits[$i] < 32) {
  /external/python/cpython2/Modules/
_testcapimodule.c 557 handling of overflow.
565 int overflow; local
567 /* Test that overflow is set properly for a large value. */
572 overflow = 1234;
573 value = PyLong_AsLongAndOverflow(num, &overflow);
580 if (overflow != 1)
582 "overflow was not set to 1");
599 overflow = 0;
600 value = PyLong_AsLongAndOverflow(num, &overflow);
607 if (overflow != 1
730 int overflow; local
    [all...]
  /external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/
overflow.pass.cpp 15 // int_type overflow(int_type c = traits::eof());
32 overflow(typename base::int_type c = base::traits_type::eof()) function in struct:testbuf
33 {++overflow_called; return base::overflow(c);}
42 tb.overflow();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/
overflow.pass.cpp 15 // int_type overflow(int_type c = traits::eof());
32 overflow(typename base::int_type c = base::traits_type::eof()) function in struct:testbuf
33 {++overflow_called; return base::overflow(c);}
42 tb.overflow();
  /cts/apps/CtsVerifier/assets/report/
compatibility_result.css 131 overflow: hidden;
140 overflow: hidden;
147 overflow: auto;
  /external/dng_sdk/source/
dng_safe_arithmetic.cpp 11 // https://www.securecoding.cert.org/confluence/display/c/INT32-C.+Ensure+that+operations+on+signed+integers+do+not+result+in+overflow
36 ThrowProgramError("Arithmetic overflow");
49 ThrowProgramError("Arithmetic overflow");
105 ThrowProgramError("Arithmetic overflow");
115 ThrowProgramError("Arithmetic overflow");
171 ThrowProgramError("Arithmetic overflow");
183 bool overflow = true; local
187 overflow = (arg1 > std::numeric_limits<std::int64_t>::max() / arg2);
189 overflow = (arg2 < std::numeric_limits<std::int64_t>::min() / arg1);
193 overflow = (arg1 < std::numeric_limits<std::int64_t>::min() / arg2)
    [all...]
  /prebuilts/go/darwin-x86/src/time/
internal_test.go 42 // We manually create a runtimeTimer to bypass the overflow
57 // overflow timer and kick the timer proc back into service.
63 // Instead we zero the overflow timer duration and start it
  /prebuilts/go/linux-x86/src/time/
internal_test.go 42 // We manually create a runtimeTimer to bypass the overflow
57 // overflow timer and kick the timer proc back into service.
63 // Instead we zero the overflow timer duration and start it
  /test/suite_harness/common/host-side/tradefed/res/report/
compatibility_result.css 150 overflow: hidden;
159 overflow: hidden;
166 overflow: auto;
  /external/autotest/frontend/client/src/autotest/public/
tkoclient.css 4 overflow: hidden;
  /external/mesa3d/docs/
mesa.css 45 overflow: hidden
  /external/mesa3d/src/mesa/main/
eval.c 523 goto overflow;
533 goto overflow;
539 goto overflow;
548 goto overflow;
555 goto overflow;
567 overflow:
613 goto overflow;
623 goto overflow;
629 goto overflow;
638 goto overflow;
    [all...]
  /prebuilts/go/darwin-x86/src/math/
hypot.go 12 // unnecessary overflow and underflow.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4316.go 7 // Issue 4316: the stack overflow check in the linker
  /prebuilts/go/linux-x86/src/math/
hypot.go 12 // unnecessary overflow and underflow.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4316.go 7 // Issue 4316: the stack overflow check in the linker

Completed in 582 milliseconds

1 2 3 4 5 6 78 91011>>