HomeSort by relevance Sort by last modified time
    Searched refs:IsQuad (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Basic/
TargetBuiltins.h 99 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
102 if (IsQuad)
112 bool isQuad() const { return (Flags & QuadFlag) != 0; }
  /external/clang/utils/TableGen/
NeonEmitter.cpp 136 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
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? 'q' : 'd'
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 331 int IsQuad = Type.isQuad();
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;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 143 milliseconds