HomeSort by relevance Sort by last modified time
    Searched full:overflow (Results 76 - 100 of 9855) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/raw/
Android.mk 13 LOCAL_SANITIZE := signed-integer-overflow unsigned-integer-overflow
  /frameworks/av/media/libstagefright/codecs/vorbis/dec/
Android.mk 21 LOCAL_SANITIZE := signed-integer-overflow unsigned-integer-overflow
  /frameworks/av/media/libstagefright/matroska/
Android.mk 14 LOCAL_SANITIZE := unsigned-integer-overflow signed-integer-overflow
  /frameworks/av/media/libstagefright/webm/
Android.mk 8 LOCAL_SANITIZE := unsigned-integer-overflow signed-integer-overflow
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-over4.t 1 /* Memory region overflow tests: overflow VMA but not LMA. */
rgn-over5.t 1 /* Memory region overflow tests: overflow LMA but not VMA. */
rgn-over6.t 1 /* Memory region overflow tests: overflow LMA and VMA. */
rgn-over7.t 1 /* Memory region overflow tests: overflow r1 plus text/data collision. */
  /external/clang/test/CodeGen/
integer-overflow.c 4 // RUN: %clang_cc1 -triple x86_64-apple-darwin %s -emit-llvm -o - -fsanitize=signed-integer-overflow | FileCheck %s --check-prefix=CATCH_UB
8 // Tests for signed integer overflow stuff.
18 // TRAPV: llvm.sadd.with.overflow.i32
19 // CATCH_UB: llvm.sadd.with.overflow.i32
25 // TRAPV: llvm.ssub.with.overflow.i32
26 // CATCH_UB: llvm.ssub.with.overflow.i32
32 // TRAPV: llvm.smul.with.overflow.i32
33 // CATCH_UB: llvm.smul.with.overflow.i32
39 // TRAPV: llvm.ssub.with.overflow.i32(i32 0
40 // CATCH_UB: llvm.ssub.with.overflow.i32(i32
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 12 // int_type overflow(int_type c = traits::eof());
35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} function in struct:test_buf
42 assert(f.open("overflow.dat", std::ios_base::out) != 0);
47 assert(f.overflow('a') == 'a');
54 assert(f.open("overflow.dat", std::ios_base::in) != 0);
58 std::remove("overflow.dat");
62 assert(f.open("overflow.dat", std::ios_base::out) != 0);
67 assert(f.overflow('a') == 'a');
74 assert(f.open("overflow.dat", std::ios_base::in) != 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 12 // int_type overflow(int_type c = traits::eof());
35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} function in struct:test_buf
42 assert(f.open("overflow.dat", std::ios_base::out) != 0);
47 assert(f.overflow('a') == 'a');
54 assert(f.open("overflow.dat", std::ios_base::in) != 0);
58 std::remove("overflow.dat");
62 assert(f.open("overflow.dat", std::ios_base::out) != 0);
67 assert(f.overflow('a') == 'a');
74 assert(f.open("overflow.dat", std::ios_base::in) != 0)
    [all...]
  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 14 // int_type overflow(int_type c = traits::eof());
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} function in struct:test_buf
44 std::ofstream bs("overflow.dat");
49 assert(f.overflow(L'a') == L'a');
55 std::ifstream bs("overflow.dat");
59 std::remove("overflow.dat");
61 std::ofstream bs("overflow.dat");
67 assert(f.overflow('a') == 'a');
73 std::ifstream bs("overflow.dat")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 14 // int_type overflow(int_type c = traits::eof());
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} function in struct:test_buf
44 std::ofstream bs("overflow.dat");
49 assert(f.overflow(L'a') == L'a');
55 std::ifstream bs("overflow.dat");
59 std::remove("overflow.dat");
61 std::ofstream bs("overflow.dat");
67 assert(f.overflow('a') == 'a');
73 std::ifstream bs("overflow.dat")
    [all...]
  /external/compiler-rt/test/ubsan/TestCases/Integer/
no-recover.cpp 1 // RUN: %clangxx -fsanitize=unsigned-integer-overflow %s -o %t && %run %t 2>&1 | FileCheck %s --check-prefix=RECOVER
2 // RUN: %clangxx -fsanitize=unsigned-integer-overflow -fno-sanitize-recover=all -fsanitize-recover=unsigned-integer-overflow %s -o %t && %run %t 2>&1 | FileCheck %s --check-prefix=RECOVER
3 // RUN: %clangxx -fsanitize=unsigned-integer-overflow -fno-sanitize-recover=unsigned-integer-overflow %s -o %t && not %run %t 2>&1 | FileCheck %s --check-prefix=ABORT
16 // RECOVER: no-recover.cpp:[[@LINE-1]]:5: runtime error: unsigned integer overflow: 2271560481 + 3989547399 cannot be represented in type 'unsigned int'
17 // ABORT: no-recover.cpp:[[@LINE-2]]:5: runtime error: unsigned integer overflow: 2271560481 + 3989547399 cannot be represented in type 'unsigned int'
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CoderResultTest.java 47 * Test the constant OVERFLOW and UNDERFLOW.
50 assertNotSame(CoderResult.OVERFLOW, CoderResult.UNDERFLOW);
52 assertNotNull(CoderResult.OVERFLOW);
53 assertFalse(CoderResult.OVERFLOW.isError());
54 assertFalse(CoderResult.OVERFLOW.isMalformed());
55 assertFalse(CoderResult.OVERFLOW.isUnderflow());
56 assertFalse(CoderResult.OVERFLOW.isUnmappable());
57 assertTrue(CoderResult.OVERFLOW.isOverflow());
58 assertTrue(CoderResult.OVERFLOW.toString().indexOf("OVERFLOW") != -1)
    [all...]
  /external/llvm/test/CodeGen/Generic/
overflow.ll 2 ; Verify codegen's don't crash on overflow intrinsics.
8 %sadd = tail call { i8, i1 } @llvm.sadd.with.overflow.i8(i8 %a, i8 %b)
15 declare { i8, i1 } @llvm.sadd.with.overflow.i8(i8, i8) nounwind readnone
19 %sadd = tail call { i16, i1 } @llvm.sadd.with.overflow.i16(i16 %a, i16 %b)
26 declare { i16, i1 } @llvm.sadd.with.overflow.i16(i16, i16) nounwind readnone
30 %sadd = tail call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %a, i32 %b)
37 declare { i32, i1 } @llvm.sadd.with.overflow.i32(i32, i32) nounwind readnone
44 %uadd = tail call { i8, i1 } @llvm.uadd.with.overflow.i8(i8 %a, i8 %b)
51 declare { i8, i1 } @llvm.uadd.with.overflow.i8(i8, i8) nounwind readnone
55 %uadd = tail call { i16, i1 } @llvm.uadd.with.overflow.i16(i16 %a, i16 %b
    [all...]
  /external/llvm/test/CodeGen/X86/
smul-with-overflow.ll 8 %t = call {i32, i1} @llvm.smul.with.overflow.i32(i32 %v1, i32 %v2)
11 br i1 %obit, label %overflow, label %normal
17 overflow:
27 %t = call {i32, i1} @llvm.smul.with.overflow.i32(i32 %v1, i32 %v2)
30 br i1 %obit, label %overflow, label %normal
32 overflow:
45 declare {i32, i1} @llvm.smul.with.overflow.i32(i32, i32)
50 %tmp1 = call { i32, i1 } @llvm.smul.with.overflow.i32(i32 %tmp0, i32 2)
62 %tmp1 = call { i32, i1 } @llvm.smul.with.overflow.i32(i32 %tmp0, i32 4)
71 declare { i63, i1 } @llvm.smul.with.overflow.i63(i63, i63) nounwind readnon
    [all...]
saddo-redundant-add.ll 4 ; Check that we don't create two additions for the sadd.with.overflow.
19 %i.o = tail call { i64, i1 } @llvm.sadd.with.overflow.i64(i64 %i, i64 1)
22 br i1 %o, label %overflow, label %exit_check
27 overflow:
32 declare { i64, i1 } @llvm.sadd.with.overflow.i64(i64, i64)
  /external/clang/test/Analysis/
malloc-overflow.c 9 return malloc(n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
14 return malloc(sizeof(int) * n); // // expected-warning {{the computation of the size of the memory allocation may overflow}}
29 return malloc(s->n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
35 return malloc(s2.n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
40 return malloc((n + 1) * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
62 int * x = malloc(n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
70 int * x = malloc(n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
79 int * x = malloc(n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
112 return malloc(n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}}
return-ptr-range.cpp 15 return ptr; // expected-warning{{Returned pointer value points outside the original object (potential buffer overflow)}}
26 return local_ptr; // expected-warning{{Returned pointer value points outside the original object (potential buffer overflow)}}
  /external/clang/test/Sema/
builtins-overflow.c 17 __builtin_add_overflow(c, 1, &r); // expected-error {{operand argument to overflow builtin must be an integer ('const char *' invalid)}}
18 __builtin_add_overflow(1, c, &r); // expected-error {{operand argument to overflow builtin must be an integer ('const char *' invalid)}}
19 __builtin_add_overflow(1, 1, 3); // expected-error {{result argument to overflow builtin must be a pointer to a non-const integer ('int' invalid)}}
20 __builtin_add_overflow(1, 1, &f); // expected-error {{result argument to overflow builtin must be a pointer to a non-const integer ('float *' invalid)}}
21 __builtin_add_overflow(1, 1, &q); // expected-error {{result argument to overflow builtin must be a pointer to a non-const integer ('const unsigned int *' invalid)}}
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
x86-64-size-inval-1.l 9 [ ]*1[ ]+\# Test SIZE32 relocation overflow
22 .* Error: symbol size computation overflow
23 .* Error: symbol size computation overflow
24 .* Error: symbol size computation overflow
25 .* Error: symbol size computation overflow
  /external/llvm/test/Analysis/ValueTracking/
pr23011.ll 3 declare { i8, i1 } @llvm.smul.with.overflow.i8(i8, i8) nounwind readnone
9 %t = call { i8, i1 } @llvm.smul.with.overflow.i8(i8 %rem, i8 %rem)
10 ; CHECK: %t = call { i8, i1 } @llvm.smul.with.overflow.i8(i8 %rem, i8 %rem)
  /external/llvm/test/Transforms/GVN/
2011-07-07-MatchIntrinsicExtract.ll 8 %uadd = tail call %0 @llvm.uadd.with.overflow.i64(i64 %a, i64 %b)
20 %usub = tail call %0 @llvm.usub.with.overflow.i64(i64 %a, i64 %b)
32 %umul = tail call %0 @llvm.umul.with.overflow.i64(i64 %a, i64 %b)
44 %sadd = tail call %0 @llvm.sadd.with.overflow.i64(i64 %a, i64 %b)
56 %ssub = tail call %0 @llvm.ssub.with.overflow.i64(i64 %a, i64 %b)
68 %smul = tail call %0 @llvm.smul.with.overflow.i64(i64 %a, i64 %b)
79 declare %0 @llvm.uadd.with.overflow.i64(i64, i64) nounwind readnone
80 declare %0 @llvm.usub.with.overflow.i64(i64, i64) nounwind readnone
81 declare %0 @llvm.umul.with.overflow.i64(i64, i64) nounwind readnone
82 declare %0 @llvm.sadd.with.overflow.i64(i64, i64) nounwind readnon
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/tracks/
drawing_container.css 9 overflow: auto;
10 overflow-x: hidden;

Completed in 888 milliseconds

1 2 34 5 6 7 8 91011>>