Lines Matching refs:EltName
2342 const char *EltName = nullptr; in mangleNeonVectorType() local
2347 EltName = "poly8_t"; in mangleNeonVectorType()
2351 EltName = "poly16_t"; in mangleNeonVectorType()
2354 EltName = "poly64_t"; in mangleNeonVectorType()
2360 case BuiltinType::SChar: EltName = "int8_t"; break; in mangleNeonVectorType()
2361 case BuiltinType::UChar: EltName = "uint8_t"; break; in mangleNeonVectorType()
2362 case BuiltinType::Short: EltName = "int16_t"; break; in mangleNeonVectorType()
2363 case BuiltinType::UShort: EltName = "uint16_t"; break; in mangleNeonVectorType()
2364 case BuiltinType::Int: EltName = "int32_t"; break; in mangleNeonVectorType()
2365 case BuiltinType::UInt: EltName = "uint32_t"; break; in mangleNeonVectorType()
2366 case BuiltinType::LongLong: EltName = "int64_t"; break; in mangleNeonVectorType()
2367 case BuiltinType::ULongLong: EltName = "uint64_t"; break; in mangleNeonVectorType()
2368 case BuiltinType::Double: EltName = "float64_t"; break; in mangleNeonVectorType()
2369 case BuiltinType::Float: EltName = "float32_t"; break; in mangleNeonVectorType()
2370 case BuiltinType::Half: EltName = "float16_t";break; in mangleNeonVectorType()
2384 Out << strlen(BaseName) + strlen(EltName); in mangleNeonVectorType()
2385 Out << BaseName << EltName; in mangleNeonVectorType()
2432 StringRef EltName; in mangleAArch64NeonVectorType() local
2436 EltName = "Poly8"; in mangleAArch64NeonVectorType()
2439 EltName = "Poly16"; in mangleAArch64NeonVectorType()
2443 EltName = "Poly64"; in mangleAArch64NeonVectorType()
2449 EltName = mangleAArch64VectorBase(cast<BuiltinType>(EltType)); in mangleAArch64NeonVectorType()
2452 ("__" + EltName + "x" + llvm::utostr(T->getNumElements()) + "_t").str(); in mangleAArch64NeonVectorType()