Home
last modified time | relevance | path

Searched refs:CTy (Results 1 – 13 of 13) sorted by relevance

/external/vulkan-validation-layers/libs/glm/gtx/
Dio.hpp117 template <typename CTy, typename CTr, typename T, precision P>
118 …GLM_FUNC_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, tquat<T,P> con…
119 template <typename CTy, typename CTr, typename T, precision P>
120 …GLM_FUNC_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, tvec2<T,P> con…
121 template <typename CTy, typename CTr, typename T, precision P>
122 …GLM_FUNC_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, tvec3<T,P> con…
123 template <typename CTy, typename CTr, typename T, precision P>
124 …GLM_FUNC_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, tvec4<T,P> con…
125 template <typename CTy, typename CTr, typename T, precision P>
126 …GLM_FUNC_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, tmat2x2<T,P> c…
[all …]
Dio.inl106 template <typename CTy, typename CTr, typename T, precision P>
107 …GLM_FUNC_QUALIFIER std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>& os, tquat<… argument
109 typename std::basic_ostream<CTy,CTr>::sentry const cerberus(os);
116 << std::right << std::setfill<CTy>(' ') << std::setw(io::value_width()) << a.w << ','
117 << std::right << std::setfill<CTy>(' ') << std::setw(io::value_width()) << a.x << ','
118 << std::right << std::setfill<CTy>(' ') << std::setw(io::value_width()) << a.y << ','
119 << std::right << std::setfill<CTy>(' ') << std::setw(io::value_width()) << a.z
126 template <typename CTy, typename CTr, typename T, precision P>
127 …GLM_FUNC_QUALIFIER std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>& os, tvec2<… argument
129 typename std::basic_ostream<CTy,CTr>::sentry const cerberus(os);
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.cpp516 if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { in isUnsignedDIType() local
519 if (CTy->getTag() == dwarf::DW_TAG_enumeration_type) in isUnsignedDIType()
748 else if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { in getOrCreateTypeDIE() local
750 if (MDString *TypeId = CTy->getRawIdentifier()) { in getOrCreateTypeDIE()
751 DD->addDwarfTypeUnitType(getCU(), TypeId->getString(), TyDIE, CTy); in getOrCreateTypeDIE()
755 constructTypeDIE(TyDIE, CTy); in getOrCreateTypeDIE()
885 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DISubroutineType *CTy) { in constructTypeDIE() argument
887 auto Elements = cast<DISubroutineType>(CTy)->getTypeArray(); in constructTypeDIE()
906 if (CTy->isLValueReference()) in constructTypeDIE()
909 if (CTy->isRValueReference()) in constructTypeDIE()
[all …]
DDwarfUnit.h328 void constructTypeDIE(DIE &Buffer, const DICompositeType *CTy);
349 void constructArrayTypeDIE(DIE &Buffer, const DICompositeType *CTy);
350 void constructEnumTypeDIE(DIE &Buffer, const DICompositeType *CTy);
DDwarfDebug.cpp1921 const DICompositeType *CTy) { in addDwarfTypeUnitType() argument
1928 const DwarfTypeUnit *&TU = DwarfTypeUnits[CTy]; in addDwarfTypeUnitType()
1944 std::make_pair(std::move(OwnedUnit), CTy)); in addDwarfTypeUnitType()
1960 NewTU.setType(NewTU.createTypeDIE(CTy)); in addDwarfTypeUnitType()
1980 CU.constructTypeDIE(RefDie, cast<DICompositeType>(CTy)); in addDwarfTypeUnitType()
DDwarfDebug.h515 DIE &Die, const DICompositeType *CTy);
/external/llvm/lib/IR/
DDIBuilder.cpp442 auto *CTy = in createExternalTypeRef() local
447 retainType(CTy); in createExternalTypeRef()
448 return CTy; in createExternalTypeRef()
455 auto *CTy = DICompositeType::get( in createEnumerationType() local
460 AllEnumTypes.push_back(CTy); in createEnumerationType()
462 retainType(CTy); in createEnumerationType()
463 trackIfUnresolved(CTy); in createEnumerationType()
464 return CTy; in createEnumerationType()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineC.cpp135 QualType CTy = in VisitBinaryOperator() local
137 CTy = getContext().getCanonicalType(CTy); in VisitBinaryOperator()
149 SVal Result = svalBuilder.evalCast(evalBinOp(state, Op, V, RightV, CTy), in VisitBinaryOperator()
150 B->getType(), CTy); in VisitBinaryOperator()
164 Result = svalBuilder.evalCast(LHSVal, CTy, LTy); in VisitBinaryOperator()
169 LHSVal = svalBuilder.evalCast(Result, LTy, CTy); in VisitBinaryOperator()
/external/clang/lib/AST/
DASTDiagnostic.cpp146 const Class##Type *CTy = cast<Class##Type>(Ty); \ in Desugar()
147 if (CTy->isSugared()) { \ in Desugar()
149 Underlying = CTy->desugar(); \ in Desugar()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2939 if (auto *CTy = LHSTy->getAs<ComplexType>()) { in EmitCompare() local
2941 CETy = CTy->getElementType(); in EmitCompare()
2947 if (auto *CTy = RHSTy->getAs<ComplexType>()) { in EmitCompare() local
2950 CTy->getElementType()) && in EmitCompare()
2952 (void)CTy; in EmitCompare()
DTargetInfo.cpp486 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in is32Or64BitBasicType() local
487 Ty = CTy->getElementType(); in is32Or64BitBasicType()
3468 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in EmitVAArg() local
3470 (void)CTy; in EmitVAArg()
3800 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in getParamTypeAlignment() local
3801 Ty = CTy->getElementType(); in getParamTypeAlignment()
4112 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in EmitVAArg() local
4130 llvm::Type *EltTy = CGF.ConvertTypeForMem(CTy->getElementType()); in EmitVAArg()
DCGDebugInfo.cpp1468 if (auto *CTy = dyn_cast<llvm::DICompositeType>(T)) in getOrCreateStandaloneType() local
1469 if (!CTy->getIdentifier().empty()) in getOrCreateStandaloneType()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp223 Type *CTy; in print() local
225 if (U->isOffsetOf(CTy, FieldNo)) { in print()
226 OS << "offsetof(" << *CTy << ", "; in print()
422 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { in isOffsetOf() argument
435 CTy = Ty; in isOffsetOf()