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/CodeGen/
DCGBuiltin.cpp2526 int IsQuad = TypeFlags.isQuad(); in GetNeonType() local
2530 return llvm::VectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad)); in GetNeonType()
2534 return llvm::VectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
2536 return llvm::VectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
2539 return llvm::VectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
2546 return llvm::VectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
2548 return llvm::VectorType::get(CGF->DoubleTy, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
2555 int IsQuad = IntTypeFlags.isQuad(); in GetFloatNeonType() local
2558 return llvm::VectorType::get(CGF->FloatTy, (2 << IsQuad)); in GetFloatNeonType()
2560 return llvm::VectorType::get(CGF->DoubleTy, (1 << IsQuad)); in GetFloatNeonType()
/external/clang/lib/Sema/
DSemaChecking.cpp1118 int IsQuad = ForceQuad ? true : Type.isQuad(); in RFT() local
1122 return shift ? 7 : (8 << IsQuad) - 1; in RFT()
1125 return shift ? 15 : (4 << IsQuad) - 1; in RFT()
1127 return shift ? 31 : (2 << IsQuad) - 1; in RFT()
1130 return shift ? 63 : (1 << IsQuad) - 1; in RFT()
1132 return shift ? 127 : (1 << IsQuad) - 1; in RFT()
1135 return (4 << IsQuad) - 1; in RFT()
1138 return (2 << IsQuad) - 1; in RFT()
1141 return (1 << IsQuad) - 1; in RFT()