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

  /external/clang/include/clang/Basic/
TargetBuiltins.h 122 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
125 if (IsQuad)
135 bool isQuad() const { return (Flags & QuadFlag) != 0; }
  /external/clang/lib/Sema/
SemaChecking.cpp 356 int IsQuad = ForceQuad ? true : Type.isQuad();
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
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 123 milliseconds