Home
last modified time | relevance | path

Searched refs:cct (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_threadprivate.cpp360 } else if (d_tn->cct.cctorv != 0) { in kmp_threadprivate_insert()
364 (void)(*d_tn->cct.cctorv)(d_tn->obj_init, pc_addr, d_tn->vec_len); in kmp_threadprivate_insert()
372 } else if (d_tn->cct.cctor != 0) { in kmp_threadprivate_insert()
376 (void)(*d_tn->cct.cctor)(d_tn->obj_init, pc_addr); in kmp_threadprivate_insert()
467 } else if (d_tn->cct.cctorv != 0) { in kmp_threadprivate_insert()
468 (void)(*d_tn->cct.cctorv)(tn->par_addr, d_tn->obj_init, d_tn->vec_len); in kmp_threadprivate_insert()
475 } else if (d_tn->cct.cctor != 0) { in kmp_threadprivate_insert()
476 (void)(*d_tn->cct.cctor)(tn->par_addr, d_tn->obj_init); in kmp_threadprivate_insert()
523 d_tn->cct.cctor = cctor; in __kmpc_threadprivate_register()
768 d_tn->cct.cctorv = cctor; in __kmpc_threadprivate_register_vec()
H A Dkmp.h1696 } cct; member
/llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp14.cpp38 void capture_with_default_args(CopyCtorDefault cct) { in capture_with_default_args() argument
39 (void)[=] () -> void { cct.foo(); }; in capture_with_default_args()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dstatic-accessed-through-instance.cpp194 CCT<int> cct; in static_through_instance() local
195 cct.foo(); // OK, CCT has no static members. in static_through_instance()
196 cct.x; // OK, CCT has no static members. in static_through_instance()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dcxx-uninitialized-object.cpp638 CopyConstructorTest cct; in fCopyConstructorTest() local
639 CopyConstructorTest copy = cct; // expected-warning{{1 uninitialized field}} in fCopyConstructorTest()
651 CopyConstructorTest cct; in fCopyConstructorTest() local
652 CopyConstructorTest copy = cct; in fCopyConstructorTest()
667 MoveConstructorTest cct; in fMoveConstructorTest() local
669 MoveConstructorTest copy(static_cast<MoveConstructorTest &&>(cct)); // no-warning in fMoveConstructorTest()
/llvm-project-15.0.7/mlir/lib/Dialect/OpenMP/IR/
H A DOpenMPDialect.cpp960 ClauseCancellationConstructType cct = cancellation_construct_type_val(); in verify() local
968 if ((cct == ClauseCancellationConstructType::Parallel) && in verify()
973 if (cct == ClauseCancellationConstructType::Loop) { in verify()
987 } else if (cct == ClauseCancellationConstructType::Sections) { in verify()
1006 ClauseCancellationConstructType cct = cancellation_construct_type_val(); in verify() local
1014 if ((cct == ClauseCancellationConstructType::Parallel) && in verify()
1019 if ((cct == ClauseCancellationConstructType::Loop) && in verify()
1024 if ((cct == ClauseCancellationConstructType::Sections) && in verify()