Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DTargetBuiltins.h123 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { in NeonTypeFlags() argument
126 if (IsQuad) in NeonTypeFlags()
/external/clang/lib/Sema/
DSemaChecking.cpp618 int IsQuad = ForceQuad ? true : Type.isQuad(); in RFT() local
622 return shift ? 7 : (8 << IsQuad) - 1; in RFT()
625 return shift ? 15 : (4 << IsQuad) - 1; in RFT()
627 return shift ? 31 : (2 << IsQuad) - 1; in RFT()
630 return shift ? 63 : (1 << IsQuad) - 1; in RFT()
632 return shift ? 127 : (1 << IsQuad) - 1; in RFT()
635 return (4 << IsQuad) - 1; in RFT()
638 return (2 << IsQuad) - 1; in RFT()
641 return (1 << IsQuad) - 1; in RFT()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp2117 int IsQuad = TypeFlags.isQuad(); in GetNeonType() local
2121 return llvm::VectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad)); in GetNeonType()
2125 return llvm::VectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
2127 return llvm::VectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
2130 return llvm::VectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
2137 return llvm::VectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
2139 return llvm::VectorType::get(CGF->DoubleTy, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
2146 int IsQuad = IntTypeFlags.isQuad(); in GetFloatNeonType() local
2149 return llvm::VectorType::get(CGF->FloatTy, (2 << IsQuad)); in GetFloatNeonType()
2151 return llvm::VectorType::get(CGF->DoubleTy, (1 << IsQuad)); in GetFloatNeonType()