/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
times-res.errwarn | 1 -:1: warning: uninitialized space declared in code/data section: zeroing
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/ |
reserve.errwarn | 1 -:2: warning: uninitialized space declared in code/data section: zeroing 2 -:3: warning: uninitialized space declared in code/data section: zeroing 3 -:4: warning: uninitialized space declared in code/data section: zeroing 4 -:5: warning: uninitialized space declared in code/data section: zeroing
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/ |
datavis.errwarn | 1 -:37: warning: uninitialized space declared in code/data section: zeroing
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/ |
struc.errwarn | 1 -:6: warning: uninitialized space declared in code/data section: zeroing
|
res.errwarn | 1 -:1: warning: uninitialized space declared in code/data section: zeroing 2 -:2: warning: uninitialized space declared in code/data section: zeroing
|
/external/e2fsprogs/tests/m_uninit/ |
script | 1 DESCRIPTION="uninitialized group feature"
|
/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 | 9 // uninitialized. 11 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initialization}} 12 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own initialization}} 13 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used within its own initialization}} 14 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initialization}} 24 int l = k ? l : l; // expected-warning 2{{variable 'l' is uninitialized when used within its own initialization}} 25 int m = 1 + (k ? m : m); // expected-warning 2{{variable 'm' is uninitialized when used within its own initialization}} 26 int n = -n; // expected-warning {{variable 'n' is uninitialized when used within its own initialization}} 30 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initialization}} 31 int c = (c + c); // expected-warning {{variable 'c' is uninitialized when used within its own initialization} [all...] |
defaulted-ctor-loop.cpp | 12 : b(b) // expected-warning{{field 'b' is uninitialized}}
|
/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/main/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/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 /// Does this use always see an uninitialized value? 44 /// This use is always uninitialized if it occurs after any of these branches 56 /// Get the expression containing the uninitialized use. 59 /// The kind of uninitialized use. 61 /// The use might be uninitialized. 63 /// The use is uninitialized whenever a certain branch is taken. 65 /// The use is always uninitialized [all...] |
/external/chromium_org/v8/src/ |
builtins.h | 61 UNINITIALIZED, kNoExtraICState) \ 63 UNINITIALIZED, kNoExtraICState) 89 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, \ 91 V(InRecompileQueue, BUILTIN, UNINITIALIZED, \ 93 V(JSConstructStubCountdown, BUILTIN, UNINITIALIZED, \ 95 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED, \ 97 V(JSConstructStubApi, BUILTIN, UNINITIALIZED, \ 99 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED, \ 101 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED, \ 103 V(LazyCompile, BUILTIN, UNINITIALIZED, \ [all...] |
/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/v8/src/ |
builtins.h | 68 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, \ 70 V(JSConstructStubCountdown, BUILTIN, UNINITIALIZED, \ 72 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED, \ 74 V(JSConstructStubApi, BUILTIN, UNINITIALIZED, \ 76 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED, \ 78 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED, \ 80 V(LazyCompile, BUILTIN, UNINITIALIZED, \ 82 V(LazyRecompile, BUILTIN, UNINITIALIZED, \ 84 V(NotifyDeoptimized, BUILTIN, UNINITIALIZED, \ 86 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \ [all...] |
/external/clang/test/Analysis/ |
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/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/chromium_org/tools/gyp/test/win/compiler-flags/ |
uninit.cc | 5 // Should trigger C6001: using uninitialized memory <variable> for |i|.
|
/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.
|