Searched refs:CT (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/lib/Target/R600/
H A DR600TextureIntrinsicsReplacer.cpp39 unsigned SrcSelect[4], unsigned CT[4],
92 CT[0] = 0;
93 CT[1] = 0;
98 CT[2] = 0;
103 CT[1] = 0;
105 CT[2] = 0;
110 CT[2] = 0;
123 Value *Sampler, unsigned CT[4], Value *Coord) {
142 ConstantInt::get(Int32Type, CT[0]),
143 ConstantInt::get(Int32Type, CT[
38 getAdjustmentFromTextureTarget(unsigned TextureType, bool hasLOD, unsigned SrcSelect[4], unsigned CT[4], bool &useShadowVariant) argument
121 ReplaceCallInst(CallInst &I, FunctionType *FT, const char *Name, unsigned SrcSelect[4], Value *Offset[3], Value *Resource, Value *Sampler, unsigned CT[4], Value *Coord) argument
168 unsigned CT[4] = {1, 1, 1, 1}; local
192 unsigned CT[4] = {1, 1, 1, 1}; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp874 CanThrowResult CT = canDynamicCastThrow(cast<CXXDynamicCastExpr>(E)); local
875 if (CT == CT_Can)
876 return CT;
877 return mergeCanThrow(CT, canSubExprsThrow(*this, E));
893 CanThrowResult CT; local
895 CT = CT_Dependent;
897 CT = CT_Cannot;
899 CT = canCalleeThrow(*this, E, CE->getCalleeDecl());
901 CT = CT_Can;
902 if (CT
909 CanThrowResult CT = canCalleeThrow(*this, E, local
918 CanThrowResult CT = CT_Cannot; local
927 CanThrowResult CT; local
938 CanThrowResult CT; local
959 CanThrowResult CT = canCalleeThrow(*this, E, local
1012 CanThrowResult CT = E->isTypeDependent() ? CT_Dependent : CT_Cannot; local
[all...]
H A DSemaPseudoObject.cpp1027 QualType CT = Conversion->getConversionType().getNonReferenceType(); local
1028 if (CT->isIntegralOrEnumerationType()) {
1032 else if (CT->isObjCIdType() ||CT->isBlockPointerType()) {
H A DSemaCast.cpp310 static bool tryDiagnoseOverloadedCast(Sema &S, CastType CT, argument
314 switch (CT) {
334 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
336 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
377 << CT << srcType << destType
H A DSemaChecking.cpp2260 StringLiteralCheckType CT = local
2264 if (CT != SLCT_NotALiteral)
2266 return CT == SLCT_CheckedLiteral;
4424 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
4425 T = CT->getElementType().getTypePtr();
4459 if (const ComplexType *CT = dyn_cast<ComplexType>(T))
4460 T = CT->getElementType().getTypePtr();
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DGetElementPtrTypeIterator.h58 CompositeType *CT = cast<CompositeType>(CurTy); local
59 return CT->getTypeAtIndex(getOperand());
69 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) {
70 CurTy = CT->getTypeAtIndex(getOperand());
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp377 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) {
379 if (CT->getResNo() >= getOpcode().getNumResults())
382 MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo());
384 return TypesAreContradictory(NodeType, CT->getType());
391 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M))
392 return TypesAreContradictory(getType(), CT->getType());
H A DDAGISelMatcherOpt.cpp50 if (CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(MC->getNext()))
52 CT->getResNo() == 0) // CheckChildType checks res #0
53 New = new CheckChildTypeMatcher(MC->getChildNo(), CT->getType());
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DExprClassification.cpp591 CanQualType CT = Ctx.getCanonicalType(E->getType()); local
593 if (CT.isConstQualified())
595 if (CT.getQualifiers().getAddressSpace() == LangAS::opencl_constant)
599 if (CT->isArrayType())
602 if (CT->isIncompleteType())
606 if (const RecordType *R = CT->getAs<RecordType>()) {
H A DMangle.cpp194 CXXCtorType CT, const BlockDecl *BD,
198 mangleCXXCtor(CD, CT, Out);
193 mangleCtorBlock(const CXXConstructorDecl *CD, CXXCtorType CT, const BlockDecl *BD, raw_ostream &ResStream) argument
H A DType.cpp399 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
400 return CT->getElementType()->isFloatingType();
790 if (const ComplexType *CT = dyn_cast<ComplexType>(CanonicalType))
791 return CT->getElementType()->isFloatingType();
853 } else if (const ComplexType *CT = dyn_cast<ComplexType>(T)) {
854 if (CT->getElementType()->isRealFloatingType())
2114 const Type *CT = T->getCanonicalTypeInternal().getTypePtr(); local
2115 ensure(CT);
2117 T->TypeBits.CachedLinkage = CT->TypeBits.CachedLinkage;
2118 T->TypeBits.CachedLocalOrUnnamed = CT
[all...]
H A DASTContext.cpp1765 if (const ComplexType* CT = T->getAs<ComplexType>())
1766 T = CT->getElementType().getTypePtr();
2119 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos))
2120 return QualType(CT, 0);
4243 if (const ComplexType *CT = T->getAs<ComplexType>())
4244 return getFloatingRank(CT->getElementType());
5168 CanQualType CT = getCanonicalType(T); local
5169 switch (CT->getTypeClass()) {
5174 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CT))
5177 S += ObjCEncodingForEnumType(this, cast<EnumType>(CT));
5181 const ComplexType *CT = T->castAs<ComplexType>(); local
6401 QualType CT = Ty->getCanonicalTypeInternal(); local
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/R600/InstPrinter/
H A DAMDGPUInstPrinter.cpp294 unsigned CT = MI->getOperand(OpNo).getImm(); local
295 switch (CT) {
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DAnalysis.cpp405 CompositeType *CT = cast<CompositeType>(DeeperType); local
406 if (!indexReallyValid(CT, 0))
409 SubTypes.push_back(CT);
412 DeeperType = CT->getTypeAtIndex(0U);
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
H A DMangle.h135 void mangleCtorBlock(const CXXConstructorDecl *CD, CXXCtorType CT,
/freebsd-10-stable/libexec/getty/
H A Dgettytab.h138 #define CT gettynums[27].value macro
H A Dmain.c246 if (getty_chat(IC, CT, DC) > 0) {
269 i = getty_chat(AC, CT, DC);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Index/
H A DUSRGeneration.cpp395 case TTK_Class: Out << "@CT"; break;
644 if (const ComplexType *CT = T->getAs<ComplexType>()) {
646 T = CT->getElementType();
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.h120 void CollectContainingType(const CXXRecordDecl *RD, llvm::DICompositeType CT);
H A DCGCall.cpp540 } else if (const ComplexType *CT = type->getAs<ComplexType>()) {
541 llvm::Type *EltTy = ConvertType(CT->getElementType());
597 } else if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
598 QualType EltTy = CT->getElementType();
871 if (const ComplexType *CT = ResultType->getAs<ComplexType>()) {
872 if (const BuiltinType *BT = CT->getElementType()->getAs<BuiltinType>()) {
H A DTargetInfo.cpp1547 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
1548 QualType ET = getContext().getCanonicalType(CT->getElementType());
3369 if (const ComplexType *CT = Ty->getAs<ComplexType>()) {
3371 Ty = CT->getElementType();
3587 if (const ComplexType *CT = Ty->getAs<ComplexType>())
3588 return isIntegerLikeType(CT->getElementType(), Context, VMContext);
/freebsd-10-stable/contrib/binutils/opcodes/
H A Dppc-opc.c208 /* The CT field in an X form instruction. */
209 #define CT CRFS + 1
211 #define MO CT
217 #define D CT + 1
3135 { "icbt", X(31,22), X_MASK, BOOKE|PPCE300, { CT, RA, RB } },
3160 { "icbte", X(31,30), X_MASK, BOOKE64, { CT, RA, RB } },
3264 { "dcbtstls",X(31,134), X_MASK, PPCCHLK, { CT, RA, RB }},
3284 { "dcbtstlse",X(31,142),X_MASK, PPCCHLK64, { CT, RA, RB }},
3313 { "dcbtls", X(31,166), X_MASK, PPCCHLK, { CT, RA, RB }},
3314 { "dcbtlse", X(31,174), X_MASK, PPCCHLK64, { CT, R
207 #define CT macro
[all...]
/freebsd-10-stable/contrib/llvm/lib/IR/
H A DInstructions.cpp1375 CompositeType *CT = dyn_cast<CompositeType>(Agg); local
1376 if (!CT || CT->isPointerTy()) return 0;
1378 if (!CT->indexValid(Index)) return 0;
1379 Agg = CT->getTypeAtIndex(Index);
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp931 DICompositeType CT(Ty);
934 IsImplementation = (CT.getRunTimeLang() == 0) || CT.isObjcClassComplete();
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2743 LandingPadInst::ClauseType CT = local
2744 LandingPadInst::ClauseType(Record[Idx++]); (void)CT;
2752 assert((CT != LandingPadInst::Catch ||
2755 assert((CT != LandingPadInst::Filter ||

Completed in 403 milliseconds

12