| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
| H A D | crypt_r.cpp | 14 cd.initialized = 0; in main() 20 cd.initialized = 0; in main() 26 cd.initialized = 0; in main() 32 cd.initialized = 0; in main()
|
| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | block-data01.f90 | 22 integer :: inCommonD, initialized ! ok variable 24 equivalence(inCommonD, initialized) 25 data initialized /2/
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/ |
| H A D | init-variables.rst | 12 float and double types, which are initialized to NaN. 49 A a; // Warning: variable 'a' is not initialized 50 A_c a_c; // Warning: variable 'a_c' is not initialized 51 B b; // Warning: variable 'b' is not initialized 52 B_i b_i; // Warning: variable 'b_i' is not initialized
|
| H A D | pro-type-member-init.rst | 10 type. If these fields aren't initialized, the constructor will leave 19 account but generates false positives for fields initialized in 23 types without a user-provided constructor and are not initialized. The suggested 33 zero-initialized during construction. For performance critical code, it may
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | shared-ptr-array-mismatch.rst | 7 initialized with an array. 9 If a shared pointer ``std::shared_ptr<T>`` is initialized with a new-expression 22 …// ^ warning: shared pointer to non-array is initialized with array [bugprone-… 24 …// ^ warning: shared pointer to non-array is initialized with ar… 30 …// ^ warning: shared pointer to non-array is initialized with array [bugprone-…
|
| H A D | dynamic-static-initializers.rst | 6 Finds instances of static variables that are dynamically initialized 11 static variables initialized at runtime (e.g. by ``-fno-threadsafe-statics``), even if a particular… 27 …` for the first time, there is the possibility that `k` will be double initialized, creating a rac…
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_mutex.cpp | 146 int initialized; member 205 if (initialized != 0) in Initialize() 206 return initialized > 0; in Initialize() 207 initialized = -1; in Initialize() 211 initialized = mutex_type_count ? 1 : -1; in Initialize() 212 return initialized > 0; in Initialize()
|
| H A D | sanitizer_coverage_libcdep_new.cpp | 111 CHECK(!initialized); in Initialize() 113 initialized = true; in Initialize() 120 if (!initialized) Initialize(); in InitTracePcGuard() 144 if (!initialized || !common_flags()->coverage) return; in Dump() 149 bool initialized; member in __sancov::__anonc8230e420111::TracePcGuardController
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | nil-receiver.mm | 18 // This produces a zero-initialized structure. 19 // FIXME: This very fact does deserve the warning, because zero-initialized
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/test/ |
| H A D | initialize-sequence.test | 5 # CHECK-NEXT: "message": "server not initialized" 14 # CHECK-NEXT: "message": "server already initialized"
|
| /llvm-project-15.0.7/clang/test/SemaOpenCL/ |
| H A D | atomic-init.cl | 7 …atomic_int a2 = 0; // expected-error {{atomic variable can be initialized to a variable only in gl… 8 …private atomic_int a3 = 0; // expected-error {{atomic variable can be initialized to a variable on…
|
| H A D | invalid-constant.cl | 2 constant int no_init; // expected-error {{variable in constant address space must be initialized}}
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | LegacyPassManagerTest.cpp | 115 static bool initialized; member 119 EXPECT_TRUE(initialized); in run() 129 EXPECT_TRUE(initialized); in finishedOK() 134 initialized = false; in PassTestBase() 147 template<typename P> bool PassTestBase<P>::initialized; member in llvm::__anon87f73c8d0111::PassTestBase<P> 158 EXPECT_FALSE(PassTestBase<P>::initialized); in doInitialization() 159 PassTestBase<P>::initialized = true; in doInitialization() 199 EXPECT_FALSE(initialized); in LPass() 209 initialized = true; in doInitialization()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | i386-setjmp-pic.ll | 6 ; is properly initialized. 8 ; that the global base pointer is not initialized.
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | kmp_lock.cpp | 1287 if (lck->lk.initialized != lck) { in __kmp_acquire_queuing_lock_with_checks() 1338 if (lck->lk.initialized != lck) { in __kmp_test_queuing_lock_with_checks() 1500 if (lck->lk.initialized != lck) { in __kmp_release_queuing_lock_with_checks() 1524 lck->lk.initialized = lck; in __kmp_init_queuing_lock() 1530 lck->lk.initialized = NULL; in __kmp_destroy_queuing_lock() 1542 if (lck->lk.initialized != lck) { in __kmp_destroy_queuing_lock_with_checks() 1576 if (lck->lk.initialized != lck) { in __kmp_acquire_nested_queuing_lock_with_checks() 1606 if (lck->lk.initialized != lck) { in __kmp_test_nested_queuing_lock_with_checks() 1633 if (lck->lk.initialized != lck) { in __kmp_release_nested_queuing_lock_with_checks() 2467 lck->lk.initialized = lck; in __kmp_init_drdpa_lock() [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/memprof/ |
| H A D | memprof_thread.cpp | 52 static bool initialized; in memprofThreadRegistry() local 55 if (!initialized) { in memprofThreadRegistry() 62 initialized = true; in memprofThreadRegistry()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/fuchsia/ |
| H A D | statically-constructed-objects.rst | 7 the object is statically initialized with a ``constexpr`` constructor or has no 41 static C(get_i()) // Warning, as the constructor is dynamically initialized
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/ |
| H A D | redundant-member-init.rst | 32 base classes are not explicitly initialized in copy constructors. For example, 34 ``base class 'Bar' should be explicitly initialized in the copy constructor``
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/performance/ |
| H A D | unnecessary-copy-initialization.rst | 6 Finds local variable declarations that are initialized using the copy 44 A semicolon-separated list of names of types allowed to be initialized by 55 copy variable is copy initialized by the return value from a type on this
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | pdb-publics-import.test | 115 CHECK-NEXT: initialized data 120 CHECK-NEXT: initialized data 126 CHECK-NEXT: initialized data 132 CHECK-NEXT: initialized data 138 CHECK-NEXT: initialized data 144 CHECK-NEXT: initialized data
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/lib/libear/ |
| H A D | ear.c | 95 static int initialized = 0; variable 139 if (!initialized) in on_load() 140 initialized = bear_capture_env_t(&initial_env); in on_load() 147 initialized = 0; in on_unload() 407 if (!initialized) in bear_report_call()
|
| /llvm-project-15.0.7/lld/test/wasm/ |
| H A D | shared-memory-bss.s | 56 # Regular data gets initialized with memory.init 65 # BSS gets initialized with memory.fill
|
| /llvm-project-15.0.7/compiler-rt/lib/asan/ |
| H A D | asan_globals.cpp | 45 bool initialized; member 430 if (dyn_g.initialized) in __asan_before_dynamic_init() 435 dyn_g.initialized = true; in __asan_before_dynamic_init() 453 if (!dyn_g.initialized) { in __asan_after_dynamic_init()
|
| /llvm-project-15.0.7/clang/test/SemaOpenCLCXX/ |
| H A D | addrspace-constructors.clcpp | 3 __constant int g1; // expected-error {{variable in constant address space must be initialized}} 38 __constant Y cy1; // expected-error{{variable in constant address space must be initialized}}
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_mman.cpp | 197 if (ctx && ctx->initialized) in user_alloc_internal() 206 if (ctx && ctx->initialized) in user_free() 345 if (ctx == 0 || !ctx->initialized || thr->ignore_interceptors) in invoke_malloc_hook() 352 if (ctx == 0 || !ctx->initialized || thr->ignore_interceptors) in invoke_free_hook()
|