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

/external/clang/include/clang/Basic/
H A DTargetBuiltins.h122 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
125 if (IsQuad)
/external/clang/lib/Sema/
H A DSemaChecking.cpp356 int IsQuad = ForceQuad ? true : Type.isQuad(); local
360 return shift ? 7 : (8 << IsQuad) - 1;
363 return shift ? 15 : (4 << IsQuad) - 1;
365 return shift ? 31 : (2 << IsQuad) - 1;
368 return shift ? 63 : (1 << IsQuad) - 1;
370 return shift ? 127 : (1 << IsQuad) - 1;
373 return (4 << IsQuad) - 1;
376 return (2 << IsQuad) - 1;
379 return (1 << IsQuad) - 1;
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1708 int IsQuad = TypeFlags.isQuad(); local
1712 return llvm::VectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad));
1716 return llvm::VectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad));
1718 return llvm::VectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad));
1721 return llvm::VectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad));
1728 return llvm::VectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad));
1730 return llvm::VectorType::get(CGF->DoubleTy, V1Ty ? 1 : (1 << IsQuad));

Completed in 175 milliseconds