Lines Matching refs:EltName
3776 const char *EltName = nullptr; in mangleNeonVectorType() local
3781 EltName = "poly8_t"; in mangleNeonVectorType()
3785 EltName = "poly16_t"; in mangleNeonVectorType()
3789 EltName = "poly64_t"; in mangleNeonVectorType()
3795 case BuiltinType::SChar: EltName = "int8_t"; break; in mangleNeonVectorType()
3796 case BuiltinType::UChar: EltName = "uint8_t"; break; in mangleNeonVectorType()
3797 case BuiltinType::Short: EltName = "int16_t"; break; in mangleNeonVectorType()
3798 case BuiltinType::UShort: EltName = "uint16_t"; break; in mangleNeonVectorType()
3799 case BuiltinType::Int: EltName = "int32_t"; break; in mangleNeonVectorType()
3800 case BuiltinType::UInt: EltName = "uint32_t"; break; in mangleNeonVectorType()
3801 case BuiltinType::LongLong: EltName = "int64_t"; break; in mangleNeonVectorType()
3802 case BuiltinType::ULongLong: EltName = "uint64_t"; break; in mangleNeonVectorType()
3803 case BuiltinType::Double: EltName = "float64_t"; break; in mangleNeonVectorType()
3804 case BuiltinType::Float: EltName = "float32_t"; break; in mangleNeonVectorType()
3805 case BuiltinType::Half: EltName = "float16_t"; break; in mangleNeonVectorType()
3806 case BuiltinType::BFloat16: EltName = "bfloat16_t"; break; in mangleNeonVectorType()
3820 Out << strlen(BaseName) + strlen(EltName); in mangleNeonVectorType()
3821 Out << BaseName << EltName; in mangleNeonVectorType()
3878 StringRef EltName; in mangleAArch64NeonVectorType() local
3882 EltName = "Poly8"; in mangleAArch64NeonVectorType()
3885 EltName = "Poly16"; in mangleAArch64NeonVectorType()
3889 EltName = "Poly64"; in mangleAArch64NeonVectorType()
3895 EltName = mangleAArch64VectorBase(cast<BuiltinType>(EltType)); in mangleAArch64NeonVectorType()
3898 ("__" + EltName + "x" + Twine(T->getNumElements()) + "_t").str(); in mangleAArch64NeonVectorType()