HomeSort by relevance Sort by last modified time
    Searched full:uninitialized (Results 1 - 25 of 1461) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/m_uninit/
script 1 DESCRIPTION="uninitialized group feature"
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 1 //= UninitializedValues.h - Finding uses of uninitialized values -*- C++ -*-==//
10 // This file defines APIs for invoking and reported uninitialized values
29 /// A use of a variable, which might be uninitialized.
41 /// Is this use uninitialized whenever the function is called?
44 /// Is this use uninitialized whenever the variable declaration is reached?
47 /// Does this use always see an uninitialized value?
50 /// This use is always uninitialized if it occurs after any of these branches
66 /// Get the expression containing the uninitialized use.
69 /// The kind of uninitialized use.
71 /// The use might be uninitialized
    [all...]
  /external/clang/test/SemaCXX/
uninit-variables-conditional.cpp 1 // RUN: %clang_cc1 -fsyntax-only -Wconditional-uninitialized -fsyntax-only %s -verify
14 // This case flags a false positive under -Wconditional-uninitialized because
22 return x; // expected-warning {{variable 'x' may be uninitialized when used here}}
uninitialized.cpp 22 // uninitialized.
24 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initialization}}
25 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own initialization}}
26 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used within its own initialization}}
27 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initialization}}
37 int l = k ? l : l; // expected-warning 2{{variable 'l' is uninitialized when used within its own initialization}}
38 int m = 1 + (k ? m : m); // expected-warning 2{{variable 'm' is uninitialized when used within its own initialization}}
39 int n = -n; // expected-warning {{variable 'n' is uninitialized when used within its own initialization}}
40 int o = std::move(o); // expected-warning {{variable 'o' is uninitialized when used within its own initialization}}
41 const int p = std::move(p); // expected-warning {{variable 'p' is uninitialized when used within its own initialization}
    [all...]
defaulted-ctor-loop.cpp 12 : b(b) // expected-warning{{field 'b' is uninitialized}}
warn-unused-private-field-delayed-template.cpp 1 // RUN: %clang_cc1 -fsyntax-only -fdelayed-template-parsing -Wunused-private-field -Wused-but-marked-unused -Wno-uninitialized -verify -std=c++11 %s
  /external/v8/src/
builtins.h 38 UNINITIALIZED, kNoExtraICState) \
40 UNINITIALIZED, kNoExtraICState)
67 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, kNoExtraICState) \
68 V(InOptimizationQueue, BUILTIN, UNINITIALIZED, kNoExtraICState) \
69 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED, kNoExtraICState) \
70 V(JSConstructStubApi, BUILTIN, UNINITIALIZED, kNoExtraICState) \
71 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED, kNoExtraICState) \
72 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED, kNoExtraICState) \
73 V(CompileLazy, BUILTIN, UNINITIALIZED, kNoExtraICState) \
74 V(CompileOptimized, BUILTIN, UNINITIALIZED, kNoExtraICState)
    [all...]
  /external/compiler-rt/test/msan/
chained_origin_limits.cc 128 // CHECK7: WARNING: MemorySanitizer: use-of-uninitialized-value
129 // CHECK7-NOT: Uninitialized value was stored to memory at
130 // CHECK7: Uninitialized value was stored to memory at
131 // CHECK7-NOT: Uninitialized value was stored to memory at
132 // CHECK7: Uninitialized value was stored to memory at
133 // CHECK7-NOT: Uninitialized value was stored to memory at
134 // CHECK7: Uninitialized value was stored to memory at
135 // CHECK7-NOT: Uninitialized value was stored to memory at
136 // CHECK7: Uninitialized value was stored to memory at
137 // CHECK7-NOT: Uninitialized value was stored to memory a
    [all...]
chained_origin_empty_stack.cc 6 // CHECK: MemorySanitizer: use-of-uninitialized-value
9 // CHECK: Uninitialized value was stored to memory at
13 // CHECK: Uninitialized value was created by an allocation of 'z' in the stack frame of function 'main'
  /cts/tools/signature-tools/src/signature/model/impl/
Uninitialized.java 37 public class Uninitialized {
39 private static final Object UNINITIALIZED;
42 UNINITIALIZED = Proxy.newProxyInstance(Uninitialized.class
51 return "Uninitialized";
61 return (T) UNINITIALIZED;
65 return o != UNINITIALIZED && o != Kind.UNINITIALIZED;
SigExecutableMember.java 35 private List<IParameter> parameters = Uninitialized.unset();
36 private Set<ITypeReference> exceptions = Uninitialized.unset();
37 private Set<Modifier> modifiers = Uninitialized.unset();
38 private List<ITypeVariableDefinition> typeParameters = Uninitialized
40 private IClassDefinition declaringClass = Uninitialized.unset();
  /external/valgrind/drd/tests/
pth_uninitialized_cond.c 1 /* Test program to verify whether DRD only complains about uninitialized
20 fprintf(stderr, "Uninitialized condition variable.\n");
  /external/clang/test/Analysis/
uninit-const.c 3 // Passing uninitialized const data to function
27 doStuff_pointerToConstInt(tp); // expected-warning {{Function call argument is a pointer to uninitialized value}}
28 // expected-note@-1 {{Function call argument is a pointer to uninitialized value}}
35 doStuff_pointerToConstInt(tp2); // expected-warning {{Function call argument is a pointer to uninitialized value}}
36 // expected-note@-1 {{Function call argument is a pointer to uninitialized value}}
48 doStuff_pointerToConstInt(tp); // expected-warning {{Function call argument is a pointer to uninitialized value}}
49 // expected-note@-1 {{Function call argument is a pointer to uninitialized value}}
65 doStuff_pointerToConstInt(tp); // expected-warning {{Function call argument is a pointer to uninitialized value}}
66 // expected-note@-1 {{Function call argument is a pointer to uninitialized value}}
71 doStuff_pointerToConstInt(ta); // expected-warning {{Function call argument is a pointer to uninitialized value}
    [all...]
uninit-const.cpp 2 // Passing uninitialized const data to unknown function
69 doStuff6(q); //expected-warning {{Function call argument is an uninitialized value}}
70 //expected-note@-1 {{Function call argument is an uninitialized value}}
81 doStuff6_3(q,ptr); //expected-warning {{Function call argument is an uninitialized value}}
82 //expected-note@-1 {{Function call argument is an uninitialized value}}
88 doStuff6(k); // expected-warning {{Function call argument is an uninitialized value}}
89 // expected-note@-1 {{Function call argument is an uninitialized value}}
98 doStuff_uninit(tp); // expected-warning {{Function call argument is a pointer to uninitialized value}}
99 // expected-note@-1 {{Function call argument is a pointer to uninitialized value}}
105 doStuff4(y); // expected-warning {{Function call argument is an uninitialized value}
    [all...]
objc-subscript.m 51 if (o[self]) // expected-warning {{Subscript access on an uninitialized object pointer}}
54 if (o[0]) // expected-warning {{Subscript access on an uninitialized object pointer}}
66 self[0] = o; // expected-warning {{Argument for subscript setter is an uninitialized value}}
69 self[i] = input; // expected-warning {{Subscript index is an uninitialized value}}
72 (void)self[i]; // expected-warning {{Subscript index is an uninitialized value}}
75 self[input] = o; // expected-warning {{Argument for subscript setter is an uninitialized value}}
78 self[o] = input; // expected-warning {{Subscript index is an uninitialized value}}
81 (void)self[o]; // expected-warning {{Subscript index is an uninitialized value}}
  /external/clang/test/Sema/
uninit-variables.c 1 // RUN: %clang_cc1 -fsyntax-only -Wuninitialized -Wconditional-uninitialized -fsyntax-only -fblocks %s -verify
8 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}}
30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}}
36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}}
42 if (y) // expected-warning{{variable 'x' is used uninitialized whenever 'if' condition is false}} \
45 return x; // expected-note{{uninitialized use occurs here}}
52 // Warn with "may be uninitialized" here (not "is sometimes uninitialized"),
55 return x; // expected-warning{{variable 'x' may be uninitialized when used here}
    [all...]
uninit-det-order.c 9 // CHECK: 5:8: warning: variable 'b' is uninitialized when used here
11 // CHECK: 6:8: warning: variable 'c' is uninitialized when used here
uninit-variables-vectors.c 10 x = _mm_xor_ps(x,x); // expected-warning {{variable 'x' is uninitialized when used here}}
11 y = _mm_xor_ps(y,y); // expected-warning {{variable 'y' is uninitialized when used here}}
12 z = _mm_xor_ps(z,z); // expected-warning {{variable 'z' is uninitialized when used here}}
13 w = _mm_xor_ps(w,w); // expected-warning {{variable 'w' is uninitialized when used here}}
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
sanitizer_set_death_callback_test.cc 26 void MaybeInit(int *uninitialized) {
28 *uninitialized = 1;
37 int uninitialized; local
39 MaybeInit(&uninitialized);
40 if (uninitialized) // trigger msan report.
  /external/bison/lib/
rawmemchr.valgrind 1 # Suppress a valgrind message about use of uninitialized memory in rawmemchr().
strchrnul.valgrind 1 # Suppress a valgrind message about use of uninitialized memory in strchrnul().
  /external/clang/test/CodeGen/
2002-01-24-ComplexSpaceInType.c 4 // %Array = uninitialized global [10 x %complex int]
  /external/e2fsprogs/tests/f_uninit_last_uninit/
expect.1 1 Last group block bitmap uninitialized. Fix? yes
  /external/llvm/test/Transforms/Mem2Reg/
2002-03-28-UninitializedVal.ll 0 ; Uninitialized values are not handled correctly.
  /cts/tools/signature-tools/src/signature/model/
Kind.java 24 "enum"), UNINITIALIZED("UNINITIALIZED");

Completed in 1181 milliseconds

1 2 3 4 5 6 7 8 91011>>