Searched refs:uninitialized (Results 1 - 25 of 50) sorted by relevance

12

/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dsanitizer_set_death_callback_test.cc19 void MaybeInit(int *uninitialized) { argument
21 *uninitialized = 1;
30 int uninitialized; local
32 MaybeInit(&uninitialized);
33 if (uninitialized) // trigger msan report.
/external/compiler-rt/test/msan/
H A Ddtls_test.c20 long uninitialized; local
24 *x = uninitialized;
/external/llvm/lib/Object/
H A DAndroid.mk33 # Our windows cross-compiler triggers a spurious uninitialized warning.
34 LOCAL_CFLAGS_windows := -Wno-uninitialized
/external/clang/test/Analysis/
H A Dmisc-ps.c139 // This was triggering a false "use of uninitialized value" warning.
156 // Test that we handle an uninitialized value within a logical expression.
176 int uninitialized; local
177 context->callback(uninitialized); // expected-warning {{uninitialized}}
/external/libpcap/tests/
H A Dvalgrindtest.c61 * make sure that, in the uninitialized-data tests, the filters aren't
223 struct bpf_insn uninitialized[INSN_COUNT]; local
226 struct sock_filter uninitialized[INSN_COUNT]; local
350 * Try setting a filter with an uninitialized bpf_program
366 * structure that points to an uninitialized program.
374 bad_fcode.bf_insns = uninitialized;
378 bad_fcode.filter = uninitialized;
/external/lldb/source/Interpreter/
H A DMakefile22 # Drop -Wself-assign, -Wmissing-field-initializers and -Wsometimes-uninitialized,
24 EXTRA_OPTIONS += -Wno-missing-field-initializers -Wno-self-assign -Wno-sometimes-uninitialized
/external/javassist/src/main/javassist/bytecode/
H A DStackMap.java192 uninitialized(pos, offsetOfNew);
220 public void uninitialized(int pos, int offset) {} method in class:StackMap.Walker
262 public void uninitialized(int pos, int offset) { method in class:StackMap.Copier
331 public void uninitialized(int pos, int offset) { method in class:StackMap.SimpleCopy
455 uninitialized(pos, offsetOfNew);
/external/clang/
H A Dclang-host-build.mk33 LOCAL_CFLAGS_windows := -Wno-error=uninitialized
/external/lldb/
H A Dlldb-build.mk7 -Wno-uninitialized \
/external/dhcpcd-6.8.2/
H A DAndroid.mk77 # Compiler complains about possibly uninitialized variables in rpc-dbus.c.
78 LOCAL_CFLAGS += -Wno-maybe-uninitialized
/external/llvm/include/llvm/ADT/
H A DAPFloat.h186 /// Convenience enum used to construct an uninitialized APFloat.
188 uninitialized enumerator in enum:llvm::APFloat::uninitializedTag
217 APFloat Val(Sem, uninitialized);
226 APFloat Val(Sem, uninitialized);
/external/v8/test/cctest/
H A Dtypes-fuzz.h75 uninitialized = isolate->factory()->uninitialized_value();
82 UninitializedConstant = Type::Constant(uninitialized, zone);
89 values.push_back(uninitialized);
131 Handle<i::Oddball> uninitialized; member in class:v8::internal::Types
/external/llvm/
H A Dllvm-host-build.mk15 -Wno-maybe-uninitialized \
/external/boringssl/src/crypto/md5/asm/
H A Dmd5-x86_64.pl111 no warnings qw(uninitialized);
/external/libunwind/
H A DAndroid.mk36 # gcc 4.8 appears to be overeager declaring that a variable is uninitialized,
41 -Wno-maybe-uninitialized \
/external/selinux/libselinux/src/
H A DMakefile79 -Wno-shadow -Wno-uninitialized -Wno-missing-prototypes -Wno-missing-declarations
/external/toybox/
H A DAndroid.mk210 -Wno-uninitialized \
/external/clang/www/demo/
H A Dindex.cgi99 $input =~ s@\b(add|sub|mul|div|rem|and|or|xor|setne|seteq|setlt|setgt|setle|setge|phi|tail|call|cast|to|shl|shr|vaarg|vanext|ret|br|switch|invoke|unwind|malloc|alloca|free|load|store|getelementptr|begin|end|true|false|declare|global|constant|const|internal|uninitialized|external|implementation|linkonce|weak|appending|null|to|except|not|target|endian|pointersize|big|little|volatile)\b@<span class="llvm_keyword">$1</span>@g;
/external/v8/src/
H A Dfactory.cc2114 // allocating SharedFunctionInfo to avoid GC seeing the uninitialized SFI.
2136 share->set_debug_info(DebugInfo::uninitialized(), SKIP_WRITE_BARRIER);
2368 Smi* uninitialized = Smi::FromInt(JSRegExp::kUninitializedValue); local
2372 store->set(JSRegExp::kIrregexpLatin1CodeIndex, uninitialized);
2373 store->set(JSRegExp::kIrregexpUC16CodeIndex, uninitialized);
2374 store->set(JSRegExp::kIrregexpLatin1CodeSavedIndex, uninitialized);
2375 store->set(JSRegExp::kIrregexpUC16CodeSavedIndex, uninitialized);
2379 store->set(JSRegExp::kIrregexpCaptureNameMapIndex, uninitialized);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddfa.rb159 raise unless e.message =~ /uninitialized constant/
/external/zlib/src/contrib/pascal/
H A Dexample.pas544 (* compr and uncompr are cleared to avoid reading uninitialized
/external/llvm/lib/Support/
H A DAPFloat.cpp669 APFloat value(Sem, uninitialized);
3440 APFloat Val(Sem, uninitialized);
3450 APFloat Val(Sem, uninitialized);
3456 APFloat Val(Sem, uninitialized);
/external/v8/src/arm/
H A Dcode-stubs-arm.cc1751 // are uninitialized, monomorphic (indicated by a JSFunction), and
1805 // A monomorphic miss (i.e, here the cache is not uninitialized) goes
1817 // An uninitialized cache is patched with the function
1971 Label uninitialized, miss, not_allocation_site; local
1993 __ b(eq, &uninitialized);
2009 __ bind(&uninitialized);
/external/v8/src/ia32/
H A Dcode-stubs-ia32.cc1414 // are uninitialized, monomorphic (indicated by a JSFunction), and
1462 // A monomorphic miss (i.e, here the cache is not uninitialized) goes
1474 // An uninitialized cache is patched with the function or sentinel to
1626 Label uninitialized, miss, not_allocation_site; local
1648 __ j(equal, &uninitialized);
1664 __ bind(&uninitialized);
/external/v8/src/mips/
H A Dcode-stubs-mips.cc1874 // are uninitialized, monomorphic (indicated by a JSFunction), and
1926 // A monomorphic miss (i.e, here the cache is not uninitialized) goes
1938 // An uninitialized cache is patched with the function.
2087 Label uninitialized, miss, not_allocation_site; local
2108 __ Branch(&uninitialized, eq, t0, Operand(at));
2125 __ bind(&uninitialized);

Completed in 388 milliseconds

12