Lines Matching refs:EltName

2214   const char *EltName = nullptr;  in mangleNeonVectorType()  local
2219 EltName = "poly8_t"; in mangleNeonVectorType()
2223 EltName = "poly16_t"; in mangleNeonVectorType()
2226 EltName = "poly64_t"; in mangleNeonVectorType()
2232 case BuiltinType::SChar: EltName = "int8_t"; break; in mangleNeonVectorType()
2233 case BuiltinType::UChar: EltName = "uint8_t"; break; in mangleNeonVectorType()
2234 case BuiltinType::Short: EltName = "int16_t"; break; in mangleNeonVectorType()
2235 case BuiltinType::UShort: EltName = "uint16_t"; break; in mangleNeonVectorType()
2236 case BuiltinType::Int: EltName = "int32_t"; break; in mangleNeonVectorType()
2237 case BuiltinType::UInt: EltName = "uint32_t"; break; in mangleNeonVectorType()
2238 case BuiltinType::LongLong: EltName = "int64_t"; break; in mangleNeonVectorType()
2239 case BuiltinType::ULongLong: EltName = "uint64_t"; break; in mangleNeonVectorType()
2240 case BuiltinType::Double: EltName = "float64_t"; break; in mangleNeonVectorType()
2241 case BuiltinType::Float: EltName = "float32_t"; break; in mangleNeonVectorType()
2242 case BuiltinType::Half: EltName = "float16_t";break; in mangleNeonVectorType()
2256 Out << strlen(BaseName) + strlen(EltName); in mangleNeonVectorType()
2257 Out << BaseName << EltName; in mangleNeonVectorType()
2304 StringRef EltName; in mangleAArch64NeonVectorType() local
2308 EltName = "Poly8"; in mangleAArch64NeonVectorType()
2311 EltName = "Poly16"; in mangleAArch64NeonVectorType()
2314 EltName = "Poly64"; in mangleAArch64NeonVectorType()
2320 EltName = mangleAArch64VectorBase(cast<BuiltinType>(EltType)); in mangleAArch64NeonVectorType()
2323 ("__" + EltName + "x" + llvm::utostr(T->getNumElements()) + "_t").str(); in mangleAArch64NeonVectorType()