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

/external/clang/include/clang/Basic/
H A DTargetBuiltins.h99 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
102 if (IsQuad)
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp136 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
139 if (IsQuad)
758 const bool &IsQuad,
766 if ((Count == 3 || Count == 4) && IsQuad) {
793 if (IsQuad && !HasLanePostfix) {
845 const bool &IsQuad) {
847 && IsQuad;
848 const bool IsVMull = NameRef.count("mull") && !IsQuad;
855 const bool &IsQuad,
870 NormedProto += IsQuad
756 GenerateRegisterCheckPatternForLoadStores(const StringRef &NameRef, const std::string& OutTypeCode, const bool &IsQuad, const bool &HasDupPostfix, const bool &HasLanePostfix, const size_t Count, std::string &RegisterSuffix) argument
843 IsSpecialLaneMultiply(const StringRef &NameRef, const bool &HasLanePostfix, const bool &IsQuad) argument
852 NormalizeProtoForRegisterPatternCreation(const std::string &Name, const std::string &Proto, const bool &HasNPostfix, const bool &IsQuad, const bool &HasLanePostfix, const bool &HasDupPostfix, std::string &NormedProto) argument
935 GenerateRegisterCheckPattern(const std::string &Name, const std::string &Proto, const std::string &OutTypeCode, const bool &HasNPostfix, const bool &IsQuad, const bool &HasLanePostfix, const bool &HasDupPostfix, const size_t &TBNumber, std::string &RegisterSuffix) argument
1045 bool IsQuad = false; local
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp331 int IsQuad = Type.isQuad(); local
335 return shift ? 7 : (8 << IsQuad) - 1;
338 return shift ? 15 : (4 << IsQuad) - 1;
340 return shift ? 31 : (2 << IsQuad) - 1;
342 return shift ? 63 : (1 << IsQuad) - 1;
345 return (4 << IsQuad) - 1;
348 return (2 << IsQuad) - 1;
351 return (1 << IsQuad) - 1;
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1602 int IsQuad = TypeFlags.isQuad(); local
1606 return llvm::VectorType::get(CGF->Int8Ty, 8 << IsQuad);
1610 return llvm::VectorType::get(CGF->Int16Ty, 4 << IsQuad);
1612 return llvm::VectorType::get(CGF->Int32Ty, 2 << IsQuad);
1614 return llvm::VectorType::get(CGF->Int64Ty, 1 << IsQuad);
1616 return llvm::VectorType::get(CGF->FloatTy, 2 << IsQuad);
1618 return llvm::VectorType::get(CGF->DoubleTy, 1 << IsQuad);

Completed in 170 milliseconds