reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/Basic/TargetInfo.h
  278       return SignedLong;
  318     case SignedLong:
tools/clang/lib/AST/ASTContext.cpp
 7886   case TargetInfo::SignedLong: return LongTy;
 9437       case TargetInfo::SignedLong:
 9458       case TargetInfo::SignedLong:
tools/clang/lib/Basic/TargetInfo.cpp
   89   PtrDiffType = SignedLong;
   91   IntPtrType = SignedLong;
  167   case SignedLong:       return "long int";
  182   case SignedLong:       return "L";
  210   case SignedLong:
  228   case SignedLong:
  244     return IsSigned ? SignedLong : UnsignedLong;
  259     return IsSigned ? SignedLong : UnsignedLong;
  299   case SignedLong:
  314   case SignedLong:
  371     PtrDiffType = Is32BitArch ? SignedInt : SignedLong;
  372     IntPtrType = Is32BitArch ? SignedInt : SignedLong;
  375     Int64Type = SignedLong;
tools/clang/lib/Basic/Targets/AArch64.cpp
   46     Int64Type = SignedLong;
   47     IntMaxType = SignedLong;
tools/clang/lib/Basic/Targets/AMDGPU.cpp
  286     PtrDiffType = SignedLong;
  287     IntPtrType = SignedLong;
tools/clang/lib/Basic/Targets/ARM.cpp
  239           ? SignedLong
tools/clang/lib/Basic/Targets/BPF.h
   32     PtrDiffType = SignedLong;
   33     IntPtrType = SignedLong;
   34     IntMaxType = SignedLong;
   35     Int64Type = SignedLong;
tools/clang/lib/Basic/Targets/MSP430.h
   47     SigAtomicType = SignedLong;
tools/clang/lib/Basic/Targets/Mips.h
  147       Int64Type = SignedLong;
  152     PtrDiffType = SignedLong;
tools/clang/lib/Basic/Targets/NVPTX.cpp
   96       PtrDiffType = TargetInfo::SignedLong;
   97       IntPtrType = TargetInfo::SignedLong;
tools/clang/lib/Basic/Targets/OSTargets.h
  307     this->IntPtrType = TargetInfo::SignedLong;
  308     this->PtrDiffType = TargetInfo::SignedLong;
  309     this->ProcessIDType = TargetInfo::SignedLong;
  645       this->WCharType = this->WIntType = this->SignedLong;
tools/clang/lib/Basic/Targets/PPC.h
  344       PtrDiffType = SignedLong;
  345       IntPtrType = SignedLong;
  375     IntMaxType = SignedLong;
  376     Int64Type = SignedLong;
tools/clang/lib/Basic/Targets/RISCV.h
  109     IntMaxType = Int64Type = SignedLong;
tools/clang/lib/Basic/Targets/SPIR.h
  122     PtrDiffType = IntPtrType = TargetInfo::SignedLong;
tools/clang/lib/Basic/Targets/Sparc.h
  165       IntPtrType = SignedLong;
  166       PtrDiffType = SignedLong;
  204       IntMaxType = SignedLong;
tools/clang/lib/Basic/Targets/SystemZ.h
   37     IntMaxType = SignedLong;
   38     Int64Type = SignedLong;
tools/clang/lib/Basic/Targets/TCE.h
   58     IntMaxType = SignedLong;
tools/clang/lib/Basic/Targets/WebAssembly.h
   50     SigAtomicType = SignedLong;
   57     PtrDiffType = SignedLong;
   58     IntPtrType = SignedLong;
  141     PtrDiffType = SignedLong;
  142     IntPtrType = SignedLong;
tools/clang/lib/Basic/Targets/X86.h
  423     IntPtrType = SignedLong;
  424     PtrDiffType = SignedLong;
  442     IntPtrType = SignedLong;
  584     IntPtrType = SignedLong;
  585     PtrDiffType = SignedLong;
  611     PtrDiffType = IsX32 ? SignedInt : SignedLong;
  612     IntPtrType = IsX32 ? SignedInt : SignedLong;
  613     IntMaxType = IsX32 ? SignedLongLong : SignedLong;
  614     Int64Type = IsX32 ? SignedLongLong : SignedLong;
tools/clang/lib/Frontend/InitPreprocessor.cpp
  783   DefineTypeSize("__LONG_MAX__", TargetInfo::SignedLong, TI, Builder);
  879     DefineExactWidthIntType(TargetInfo::SignedLong, TI, Builder);
  903     DefineExactWidthIntTypeSize(TargetInfo::SignedLong, TI, Builder);
tools/clang/lib/Sema/SemaChecking.cpp
 1690         Context.getTargetInfo().getInt64Type() == TargetInfo::SignedLong;