| /llvm-project-15.0.7/libcxxabi/test/ |
| H A D | catch_multi_level_pointer.pass.cpp | 76 typedef Tp const* CType; typedef 86 typedef const Member (Class::*CType); 97 typedef typename ThrowTypes::CType CType; in operator ()() typedef 102 run_catch_tests<CType>(); in operator ()() 110 typedef typename CatchTypes::CType CType; in run_catch_tests() typedef 115 catch_pointer_test<ThrowTp, CType>(); in run_catch_tests() 120 generate_tests_imp<ThrowTp, CType, level-1>()(); in run_catch_tests()
|
| /llvm-project-15.0.7/polly/lib/External/isl/imath/tests/gmp-compat-test/ |
| H A D | gmpapi.py | 6 class CType: class 45 void = CType("void") 46 voidp = CType("void *") 47 charp = CType("char *") 48 iint = CType("int") 49 size_t = CType("size_t") 50 size_tp = CType("size_t*") 51 ilong = CType("long") 52 ulong = CType("unsigned long") 53 mpz_t = CType("mpz_t") [all …]
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyTIL.h | 697 typename C::CType Ct = in compare() 754 typename C::CType Ct = Cmp.compare(body(), E->body()); in compare() 787 typename C::CType compare(const Code* E, C& Cmp) const { in compare() 862 typename C::CType Ct = Cmp.compare(fun(), E->fun()); in compare() 900 typename C::CType Ct = Cmp.compare(sfun(), E->sfun()); in compare() 985 typename C::CType compare(const Call* E, C& Cmp) const { in compare() 1191 typename C::CType Ct = in compare() 1237 typename C::CType Ct = in compare() 1277 typename C::CType Ct = in compare() 1335 typename C::CType compare(const Phi *E, C &Cmp) const { in compare() [all …]
|
| H A D | ThreadSafetyTraverse.h | 332 using CType = bool; 334 CType trueResult() { return true; } in trueResult() 335 bool notTrue(CType ct) { return !ct; } in notTrue() 366 using CType = bool; 368 CType trueResult() { return true; } in trueResult() 369 bool notTrue(CType ct) { return !ct; } in notTrue()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InlineAsmLowering.cpp | 163 TargetLowering::ConstraintType CType = in chooseConstraint() local 167 if (OpInfo.isIndirect && !(CType == TargetLowering::C_Memory || in chooseConstraint() 168 CType == TargetLowering::C_Register || in chooseConstraint() 169 CType == TargetLowering::C_RegisterClass)) in chooseConstraint() 176 if (CType == TargetLowering::C_Other || in chooseConstraint() 177 CType == TargetLowering::C_Immediate) { in chooseConstraint() 185 if (CType == TargetLowering::C_Memory && OpInfo.hasMatchingInput()) in chooseConstraint() 189 int Generality = getConstraintGenerality(CType); in chooseConstraint() 191 BestType = CType; in chooseConstraint()
|
| /llvm-project-15.0.7/libc/spec/ |
| H A D | gnu_ext.td | 3 HeaderSpec CType = HeaderSpec< 115 CType,
|
| H A D | posix.td | 374 HeaderSpec CType = HeaderSpec< 630 CType,
|
| H A D | stdc.td | 22 HeaderSpec CType = HeaderSpec< 872 CType,
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/ |
| H A D | LoopConvertCheck.cpp | 441 QualType CType = VDec->getType(); in containerIsConst() local 443 if (!CType->isPointerType()) in containerIsConst() 445 CType = CType->getPointeeType(); in containerIsConst() 450 CType = CType.getNonReferenceType(); in containerIsConst() 451 return CType.isConstQualified(); in containerIsConst()
|
| /llvm-project-15.0.7/libcxx/src/filesystem/ |
| H A D | filesystem_common.h | 387 template <class CType, class ChronoType> 388 static _LIBCPP_CONSTEXPR_AFTER_CXX11 bool checked_set(CType* out, 390 using Lim = numeric_limits<CType>; 393 *out = static_cast<CType>(time);
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | 2008-03-24-BitField-And-Alloca.c | 44 unsigned int CType : 4; member
|
| /llvm-project-15.0.7/llvm/lib/Target/BPF/ |
| H A D | BPFAbstractMemberAccess.cpp | 512 const DIType *CType = stripQualifiers(cast<DIType>(ChildType)); in IsValidAIChain() local 516 if (isa<DIDerivedType>(CType)) in IsValidAIChain() 523 return stripQualifiers(PtrTy->getBaseType()) == CType; in IsValidAIChain() 528 const auto *CTy = dyn_cast<DICompositeType>(CType); in IsValidAIChain()
|
| /llvm-project-15.0.7/mlir/lib/Bindings/Python/ |
| H A D | IRAffine.cpp | 34 template <typename PyType, typename CType> 36 llvm::SmallVectorImpl<CType> &result, in pyListToVector()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeGPU.cpp | 2179 QualType CType = C.getIntTypeForBitwidth( in emitInterWarpCopyFunction() local 2181 llvm::Type *CopyType = CGF.ConvertTypeForMem(CType); in emitInterWarpCopyFunction() 2243 ElemPtr, /*Volatile=*/false, CType, Loc, in emitInterWarpCopyFunction() 2246 CGF.EmitStoreOfScalar(Elem, MediumPtr, /*Volatile=*/true, CType, in emitInterWarpCopyFunction() 2303 CGF.EmitLoadOfScalar(SrcMediumPtr, /*Volatile=*/true, CType, Loc); in emitInterWarpCopyFunction() 2305 CType); in emitInterWarpCopyFunction()
|
| H A D | CGBuiltin.cpp | 18189 llvm::Type *CType = in EmitNVPTXBuiltinExpr() local 18197 Values.push_back(Builder.CreateBitCast(V, CType)); in EmitNVPTXBuiltinExpr()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 5593 TargetLowering::ConstraintType CType = in ChooseConstraint() local 5597 if (OpInfo.isIndirect && !(CType == TargetLowering::C_Memory || in ChooseConstraint() 5598 CType == TargetLowering::C_Register || in ChooseConstraint() 5599 CType == TargetLowering::C_RegisterClass)) in ChooseConstraint() 5606 if ((CType == TargetLowering::C_Other || in ChooseConstraint() 5607 CType == TargetLowering::C_Immediate) && Op.getNode()) { in ChooseConstraint() 5614 BestType = CType; in ChooseConstraint() 5622 if (CType == TargetLowering::C_Memory && OpInfo.hasMatchingInput()) in ChooseConstraint() 5626 int Generality = getConstraintGenerality(CType); in ChooseConstraint() 5628 BestType = CType; in ChooseConstraint()
|