OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:uninitialized
(Results
76 - 100
of
1841
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/llvm/lib/Target/
TargetRecip.cpp
40
// The
uninitialized
state is needed for the enabled settings and refinement
143
if (RecipMap[Val.str() + 'd'].Enabled !=
Uninitialized
) {
150
if (Iter->second.Enabled !=
Uninitialized
)
181
assert(Iter->second.Enabled !=
Uninitialized
&&
189
assert(Iter->second.RefinementSteps !=
Uninitialized
&&
200
if (RP.Enabled ==
Uninitialized
)
202
if (RP.RefinementSteps ==
Uninitialized
)
207
if (RP.Enabled ==
Uninitialized
)
209
if (RP.RefinementSteps ==
Uninitialized
)
/external/clang/test/SemaCXX/
constructor-initializer.cpp
132
// A silly class used to demonstrate field-is-
uninitialized
in constructors with
143
: A(A), // expected-warning {{field 'A' is
uninitialized
when used here}}
144
B((((B)))), // expected-warning {{field 'B' is
uninitialized
when used here}}
145
C(A && InitializeUsingSelfTest::C), // expected-warning {{field 'C' is
uninitialized
when used here}}
146
D(D, // expected-warning {{field 'D' is
uninitialized
when used here}}
147
D), // expected-warning {{field 'D' is
uninitialized
when used here}}
148
E(IntParam(E)) {} // expected-warning {{field 'E' is
uninitialized
when used here}}
168
B(B), // expected-warning {{field 'B' is
uninitialized
when used here}}
169
C(rhs.C || C) { } // expected-warning {{field 'C' is
uninitialized
when used here}}
301
struct S1 { union { int n; }; S1() : n(n) {} }; // expected-warning {{field 'n' is
uninitialized
when used here}
[
all
...]
/external/compiler-rt/test/msan/
use-after-dtor.cc
37
// CHECK: WARNING: MemorySanitizer: use-of-
uninitialized
-value
40
// CHECK-ORIGINS: Memory was marked as
uninitialized
44
// CHECK: SUMMARY: MemorySanitizer: use-of-
uninitialized
-value {{.*main}}
mktime.cc
21
// CHECK: MemorySanitizer: use-of-
uninitialized
-value
mul_by_const.cc
14
// Test that MSan understands that this kills the
uninitialized
high half of S
poison_in_free.cc
14
// CHECK: MemorySanitizer: use-of-
uninitialized
-value
vector_cvt.cc
11
// CHECK: WARNING: MemorySanitizer: use-of-
uninitialized
-value
/external/clang/lib/Analysis/
UninitializedValues.cpp
1
//==- UninitializedValues.cpp - Find
Uninitialized
Values -------*- C++ --*-==//
10
// This file implements
uninitialized
values analysis for source-level CFGs.
93
Uninitialized
= 0x2, /* 10 */
97
return v >=
Uninitialized
;
100
return v ==
Uninitialized
;
421
// whether a variable is
uninitialized
, and there's no point counting it as a
477
// Squelch any detected load of an
uninitialized
value if
486
// Transfer function for
uninitialized
values analysis.
534
// the variable, we can say something stronger than 'may be
uninitialized
':
535
// we can say 'either it's used
uninitialized
or you have dead code'
[
all
...]
/art/test/800-smali/smali/
b_22411633_1.smali
27
# v4 is still an
uninitialized
reference here. Initialize it.
b_22411633_3.smali
25
# At this point, an initialized and an
uninitialized
reference are merged. However, the
b_22411633_5.smali
11
# At this point v4 is an
uninitialized
reference. We should be able to initialize here
b_26594149_5.smali
23
# Allowed operation on
uninitialized
objects.
/cts/tests/tests/webkit/assets/webkit/
network_state.html
18
<title>
uninitialized
</title>
/external/clang/lib/StaticAnalyzer/Checkers/
UndefCapturedBlockVarChecker.cpp
1
// UndefCapturedBlockVarChecker.cpp -
Uninitialized
captured vars -*- C++ -*-=//
10
// This checker detects blocks that capture
uninitialized
values.
80
new BuiltinBug(this, "
uninitialized
variable captured by block"));
87
<< "' is
uninitialized
when captured by block";
/external/clang/test/Analysis/
undef-buffers.c
1
// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix,core.
uninitialized
-analyzer-store=region -verify -analyzer-config unix:Optimistic=true %s
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/
p7.cpp
1
// RUN: %clang_cc1 -Wno-
uninitialized
-std=c++1y %s -verify
/external/clang/test/CodeGenCXX/
2009-12-23-MissingSext.cpp
3
// getting extended to 32 bits, so
uninitialized
/external/clang/test/PCH/
pragma-diag-section.cpp
29
T b = a; // expected-warning {{variable 'a' is
uninitialized
}} \
/external/compiler-rt/lib/cfi/
cfi_blacklist.txt
11
# The type signature mandates a cast from
uninitialized
void* to T*.
/external/compiler-rt/test/asan/TestCases/
init-order-atexit.cc
4
// (3) destructor of A reads
uninitialized
global C from another module.
/external/compiler-rt/test/lsan/TestCases/
use_globals_uninitialized.cc
1
// Test that
uninitialized
globals are included in the root set.
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
sem_init_glibc.cc
3
// don't leave sem_t::private
uninitialized
.
/external/kernel-headers/original/uapi/asm-arm/asm/
a.out.h
12
__u32 a_bss; /* length of
uninitialized
data area for file, in bytes */
/external/kernel-headers/original/uapi/linux/
atmarp.h
28
act_invalid, /* catch
uninitialized
structures */
/external/v8/src/
msan.h
23
// Marks a memory range as
uninitialized
, as if it was allocated here.
Completed in 358 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>