OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:overflow
(Results
1 - 25
of
9855
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/valgrind/none/tests/solaris/
stack-overflow.vgtest
1
prog: stack-
overflow
/external/llvm/test/tools/llvm-profdata/Inputs/
overflow-instr.proftext
0
overflow
/external/valgrind/memcheck/tests/
calloc-overflow.vgtest
1
prog: calloc-
overflow
/external/clang/test/Preprocessor/
overflow.c
3
// Multiply signed
overflow
4
#if 0x7FFFFFFFFFFFFFFF*2 // expected-warning {{
overflow
}}
7
// Multiply unsigned
overflow
11
// Add signed
overflow
12
#if 0x7FFFFFFFFFFFFFFF+1 // expected-warning {{
overflow
}}
15
// Add unsigned
overflow
19
// Subtract signed
overflow
20
#if 0x7FFFFFFFFFFFFFFF- -1 // expected-warning {{
overflow
}}
23
// Subtract unsigned
overflow
/art/test/070-nio-buffer/
expected.txt
2
Got expected buffer
overflow
exception
4
Got expected buffer
overflow
exception
/external/valgrind/memcheck/tests/amd64-solaris/
context_rflags.stdout.exp
2
overflow
=1, sign=1
4
overflow
=1, sign=1
/external/valgrind/memcheck/tests/x86-solaris/
context_eflags.stdout.exp
2
overflow
=1, sign=1
4
overflow
=1, sign=1
/external/valgrind/none/tests/linux/
stack-overflow.vgtest
1
prog: stack-
overflow
brk-overflow2.stderr.exp
2
brk segment
overflow
in thread #1: can't grow to 0x........
3
brk segment
overflow
in thread #1: can't grow to 0x........
4
brk segment
overflow
in thread #1: can't grow to 0x........
brk-overflow1.stderr.exp
2
brk segment
overflow
in thread #1: can't grow to 0x........
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
v9branch2.d
3
#error: :3:.*relocation.*
overflow
v9branch3.d
3
#error: :5:.*relocation.*
overflow
v9branch4.d
3
#error: :3:.*relocation.*
overflow
v9branch5.d
3
#error: :5:.*relocation.*
overflow
v9branch2.s
1
# Text for relocation
overflow
diagnostic
v9branch3.s
1
# Text for relocation
overflow
diagnostic
v9branch4.s
1
# Text for relocation
overflow
diagnostic
/external/clang/test/SemaCXX/
integer-overflow.cpp
9
static const uint64_t
overflow
= 1 * 4608 * 1024 * 1024; // expected-warning {{
overflow
in expression; result is 536870912 with type 'int'}}
variable
12
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
13
uint64_t
overflow
= 4608 * 1024 * 1024,
local
14
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
16
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
18
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
20
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
22
// expected-warning@+1 2{{
overflow
in expression; result is 536870912 with type 'int'}}
25
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}
[
all
...]
/prebuilts/go/darwin-x86/test/
const1.go
7
// Verify
overflow
is detected when using numeric constants.
33
a1 = Int8 * 100 // ERROR "
overflow
"
35
a3 = Int8 * 1000 // ERROR "
overflow
"
36
a4 = Int8 * int8(1000) // ERROR "
overflow
"
37
a5 = int8(Int8 * 1000) // ERROR "
overflow
"
38
a6 = int8(Int8 * int8(1000)) // ERROR "
overflow
"
39
a7 = Int8 - 2*Int8 - 2*Int8 // ERROR "
overflow
"
40
a8 = Int8 * Const / 100 // ERROR "
overflow
"
43
b1 = Uint8 * Uint8 // ERROR "
overflow
"
44
b2 = Uint8 * -1 // ERROR "
overflow
"
[
all
...]
/prebuilts/go/linux-x86/test/
const1.go
7
// Verify
overflow
is detected when using numeric constants.
33
a1 = Int8 * 100 // ERROR "
overflow
"
35
a3 = Int8 * 1000 // ERROR "
overflow
"
36
a4 = Int8 * int8(1000) // ERROR "
overflow
"
37
a5 = int8(Int8 * 1000) // ERROR "
overflow
"
38
a6 = int8(Int8 * int8(1000)) // ERROR "
overflow
"
39
a7 = Int8 - 2*Int8 - 2*Int8 // ERROR "
overflow
"
40
a8 = Int8 * Const / 100 // ERROR "
overflow
"
43
b1 = Uint8 * Uint8 // ERROR "
overflow
"
44
b2 = Uint8 * -1 // ERROR "
overflow
"
[
all
...]
/external/llvm/test/tools/llvm-profdata/
overflow-instr.test
1
Tests for
overflow
when merging instrumented profiles.
3
1- Merge profile having maximum counts with itself and verify
overflow
detected and saturation occurred
4
RUN: llvm-profdata merge -instr %p/Inputs/
overflow
-instr.proftext %p/Inputs/
overflow
-instr.proftext -o %t.out 2>&1 | FileCheck %s -check-prefix=MERGE_OVERFLOW
6
MERGE_OVERFLOW: {{.*}}:
overflow
: Counter
overflow
11
2- Merge profile having maximum counts by itself and verify no
overflow
12
RUN: llvm-profdata merge -instr %p/Inputs/
overflow
-instr.proftext -o %t.out 2>&1 | FileCheck %s -check-prefix=MERGE_NO_OVERFLOW -allow-empty
14
MERGE_NO_OVERFLOW-NOT: {{.*}}:
overflow
: Counter
overflow
[
all
...]
/external/clang/test/Sema/
integer-overflow.c
9
static const uint64_t
overflow
= 1 * 4608 * 1024 * 1024; // expected-warning {{
overflow
in expression; result is 536870912 with type 'int'}}
variable
12
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
13
uint64_t
overflow
= 4608 * 1024 * 1024,
local
14
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
16
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
18
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
20
// expected-warning@+1 2{{
overflow
in expression; result is 536870912 with type 'int'}}
23
// expected-warning@+1 {{
overflow
in expression; result is 536870912 with type 'int'}}
24
overflow
+= overflow2 = overflow3 = (uint64_t)(4608 * 1024 * 1024)
[
all
...]
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
jaloverflow.d
1
#name: JAL
overflow
7
# This tests whether we correctly detect
overflow
in the jal
9
# destination address are taken from the source address. So
overflow
/external/compiler-rt/test/ubsan/TestCases/Misc/
deduplication.cpp
6
void
overflow
() {
function
19
overflow
();
20
overflow
();
21
overflow
();
/system/core/libsysutils/
EventLogTags.logtags
3
# FrameworkListener dispatchCommand
overflow
Completed in 335 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>