HomeSort by: relevance | last modified time | path
    Searched refs:isQuad (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetBuiltins.h 165 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
168 if (IsQuad)
178 bool isQuad() const { return (Flags & QuadFlag) != 0; }
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 5279 int IsQuad = TypeFlags.isQuad();
5283 return llvm::FixedVectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad));
5286 return llvm::FixedVectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad));
5289 return llvm::FixedVectorType::get(CGF->BFloatTy, V1Ty ? 1 : (4 << IsQuad));
5291 return llvm::FixedVectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad));
5294 return llvm::FixedVectorType::get(CGF->HalfTy, V1Ty ? 1 : (4 << IsQuad));
5296 return llvm::FixedVectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad));
5298 return llvm::FixedVectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad));
5301 return llvm::FixedVectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad));
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 2015 int IsQuad = ForceQuad ? true : Type.isQuad();
2019 return shift ? 7 : (8 << IsQuad) - 1;
2022 return shift ? 15 : (4 << IsQuad) - 1;
2024 return shift ? 31 : (2 << IsQuad) - 1;
2027 return shift ? 63 : (1 << IsQuad) - 1;
2029 return shift ? 127 : (1 << IsQuad) - 1;
2032 return (4 << IsQuad) - 1;
2035 return (2 << IsQuad) - 1;
2038 return (1 << IsQuad) - 1
    [all...]

Completed in 32 milliseconds