Home
last modified time | relevance | path

Searched refs:IsQuad (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetBuiltins.h205 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { in NeonTypeFlags() argument
208 if (IsQuad) in NeonTypeFlags()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp2930 int IsQuad = ForceQuad ? true : Type.isQuad(); in RFT() local
2934 return shift ? 7 : (8 << IsQuad) - 1; in RFT()
2937 return shift ? 15 : (4 << IsQuad) - 1; in RFT()
2939 return shift ? 31 : (2 << IsQuad) - 1; in RFT()
2942 return shift ? 63 : (1 << IsQuad) - 1; in RFT()
2944 return shift ? 127 : (1 << IsQuad) - 1; in RFT()
2947 return (4 << IsQuad) - 1; in RFT()
2950 return (2 << IsQuad) - 1; in RFT()
2953 return (1 << IsQuad) - 1; in RFT()
2956 return (4 << IsQuad) - 1; in RFT()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp6071 int IsQuad = TypeFlags.isQuad(); in GetNeonType() local
6075 return llvm::FixedVectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad)); in GetNeonType()
6078 return llvm::FixedVectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
6086 return llvm::FixedVectorType::get(CGF->HalfTy, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
6090 return llvm::FixedVectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
6093 return llvm::FixedVectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
6100 return llvm::FixedVectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
6109 int IsQuad = IntTypeFlags.isQuad(); in GetFloatNeonType() local
6112 return llvm::FixedVectorType::get(CGF->HalfTy, (4 << IsQuad)); in GetFloatNeonType()
6114 return llvm::FixedVectorType::get(CGF->FloatTy, (2 << IsQuad)); in GetFloatNeonType()
[all …]