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 83 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
86 if (IsQuad)
96 bool isQuad() const { return (Flags & QuadFlag) != 0; }
  /external/clang/utils/TableGen/
NeonEmitter.h 113 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
116 if (IsQuad)
  /external/clang/lib/Sema/
SemaChecking.cpp 284 int IsQuad = Type.isQuad();
288 return shift ? 7 : (8 << IsQuad) - 1;
291 return shift ? 15 : (4 << IsQuad) - 1;
293 return shift ? 31 : (2 << IsQuad) - 1;
295 return shift ? 63 : (1 << IsQuad) - 1;
298 return (4 << IsQuad) - 1;
301 return (2 << IsQuad) - 1;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 156 milliseconds