Home
last modified time | relevance | path

Searched refs:CTy (Results 1 – 18 of 18) 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()
720 else if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { in getOrCreateTypeDIE() local
722 if (MDString *TypeId = CTy->getRawIdentifier()) { in getOrCreateTypeDIE()
723 DD->addDwarfTypeUnitType(getCU(), TypeId->getString(), TyDIE, CTy); in getOrCreateTypeDIE()
727 constructTypeDIE(TyDIE, CTy); in getOrCreateTypeDIE()
857 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DISubroutineType *CTy) { in constructTypeDIE() argument
859 auto Elements = cast<DISubroutineType>(CTy)->getTypeArray(); in constructTypeDIE()
879 if (CTy->getCC() && CTy->getCC() != dwarf::DW_CC_normal) in constructTypeDIE()
881 CTy->getCC()); in constructTypeDIE()
[all …]
DDwarfUnit.h318 void constructTypeDIE(DIE &Buffer, const DICompositeType *CTy);
339 void constructArrayTypeDIE(DIE &Buffer, const DICompositeType *CTy);
340 void constructEnumTypeDIE(DIE &Buffer, const DICompositeType *CTy);
DCodeViewDebug.cpp1785 const auto *CTy = cast<DICompositeType>(Ty); in getCompleteTypeIndex() local
1786 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()}); in getCompleteTypeIndex()
1795 TypeIndex FwdDeclTI = getTypeIndex(CTy); in getCompleteTypeIndex()
1800 if (CTy->isForwardDecl()) in getCompleteTypeIndex()
1804 switch (CTy->getTag()) { in getCompleteTypeIndex()
1807 TI = lowerCompleteTypeClass(CTy); in getCompleteTypeIndex()
1810 TI = lowerCompleteTypeUnion(CTy); in getCompleteTypeIndex()
DDwarfDebug.cpp1872 const DICompositeType *CTy) { in addDwarfTypeUnitType() argument
1879 auto Ins = TypeSignatures.insert(std::make_pair(CTy, 0)); in addDwarfTypeUnitType()
1893 std::make_pair(std::move(OwnedUnit), CTy)); in addDwarfTypeUnitType()
1910 NewTU.setType(NewTU.createTypeDIE(CTy)); in addDwarfTypeUnitType()
1930 CU.constructTypeDIE(RefDie, cast<DICompositeType>(CTy)); in addDwarfTypeUnitType()
DDwarfDebug.h480 DIE &Die, const DICompositeType *CTy);
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp711 void CompileUnit::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { in constructTypeDIE() argument
713 StringRef Name = CTy.getName(); in constructTypeDIE()
715 uint64_t Size = CTy.getSizeInBits() >> 3; in constructTypeDIE()
716 unsigned Tag = CTy.getTag(); in constructTypeDIE()
722 constructArrayTypeDIE(Buffer, &CTy); in constructTypeDIE()
725 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE()
740 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE()
767 DIArray Elements = CTy.getTypeArray(); in constructTypeDIE()
809 if (CTy.isAppleBlockExtension()) in constructTypeDIE()
812 unsigned RLang = CTy.getRunTimeLang(); in constructTypeDIE()
[all …]
DDwarfCompileUnit.h268 DICompositeType CTy);
275 DICompositeType *CTy);
/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/llvm/lib/IR/
DDIBuilder.cpp418 auto *CTy = DICompositeType::get( in createEnumerationType() local
422 AllEnumTypes.push_back(CTy); in createEnumerationType()
423 trackIfUnresolved(CTy); in createEnumerationType()
424 return CTy; in createEnumerationType()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolutionExpander.cpp458 Type *CTy; in expandAddToGEP() local
460 if (U->isOffsetOf(CTy, FieldNo) && CTy == STy) { in expandAddToGEP()
DScalarEvolution.cpp210 Type *CTy; in print() local
212 if (U->isOffsetOf(CTy, FieldNo)) { in print()
213 OS << "offsetof(" << *CTy << ", "; in print()
399 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { in isOffsetOf() argument
412 CTy = Ty; in isOffsetOf()
2616 const SCEV *ScalarEvolution::getOffsetOfExpr(Type *CTy, in getOffsetOfExpr() argument
2618 Constant *C = ConstantExpr::getOffsetOf(CTy, FieldNo); in getOffsetOfExpr()
2622 Type *Ty = getEffectiveSCEVType(PointerType::getUnqual(CTy)); in getOffsetOfExpr()
/external/clang/lib/AST/
DASTDiagnostic.cpp147 const Class##Type *CTy = cast<Class##Type>(Ty); \ in Desugar()
148 if (CTy->isSugared()) { \ in Desugar()
150 Underlying = CTy->desugar(); \ in Desugar()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DScalarEvolution.h632 const SCEV *getOffsetOfExpr(Type *CTy, Constant *FieldNo);
/external/clang/lib/CodeGen/
DTargetInfo.cpp1152 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in is32Or64BitBasicType() local
1153 Ty = CTy->getElementType(); in is32Or64BitBasicType()
3692 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in EmitVAArg() local
3694 (void)CTy; in EmitVAArg()
4026 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) in getParamTypeAlignment() local
4027 Ty = CTy->getElementType(); in getParamTypeAlignment()
4349 if (const ComplexType *CTy = Ty->getAs<ComplexType>()) { in EmitVAArg() local
4367 llvm::Type *EltTy = CGF.ConvertTypeForMem(CTy->getElementType()); in EmitVAArg()
DCGExprScalar.cpp2926 if (auto *CTy = LHSTy->getAs<ComplexType>()) { in EmitCompare() local
2928 CETy = CTy->getElementType(); in EmitCompare()
2934 if (auto *CTy = RHSTy->getAs<ComplexType>()) { in EmitCompare() local
2937 CTy->getElementType()) && in EmitCompare()
2939 (void)CTy; in EmitCompare()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp227 Type *CTy; in print() local
229 if (U->isOffsetOf(CTy, FieldNo)) { in print()
230 OS << "offsetof(" << *CTy << ", "; in print()
424 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const { in isOffsetOf() argument
437 CTy = Ty; in isOffsetOf()