Home
last modified time | relevance | path

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

/external/clang/include/clang/Basic/
DTargetBuiltins.h122 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { in NeonTypeFlags() argument
125 if (IsQuad) in NeonTypeFlags()
/external/clang/lib/Sema/
DSemaChecking.cpp575 int IsQuad = ForceQuad ? true : Type.isQuad(); in RFT() local
579 return shift ? 7 : (8 << IsQuad) - 1; in RFT()
582 return shift ? 15 : (4 << IsQuad) - 1; in RFT()
584 return shift ? 31 : (2 << IsQuad) - 1; in RFT()
587 return shift ? 63 : (1 << IsQuad) - 1; in RFT()
589 return shift ? 127 : (1 << IsQuad) - 1; in RFT()
592 return (4 << IsQuad) - 1; in RFT()
595 return (2 << IsQuad) - 1; in RFT()
598 return (1 << IsQuad) - 1; in RFT()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp1878 int IsQuad = TypeFlags.isQuad(); in GetNeonType() local
1882 return llvm::VectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad)); in GetNeonType()
1886 return llvm::VectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
1888 return llvm::VectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
1891 return llvm::VectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
1898 return llvm::VectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
1900 return llvm::VectorType::get(CGF->DoubleTy, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()