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

References

include/llvm/ADT/PointerIntPair.h
   48   intptr_t Value = 0;
  166   static PointerT getPointer(intptr_t Value) {
  171   static intptr_t getInt(intptr_t Value) {
  171   static intptr_t getInt(intptr_t Value) {
  175   static intptr_t updatePointer(intptr_t OrigValue, PointerT Ptr) {
  175   static intptr_t updatePointer(intptr_t OrigValue, PointerT Ptr) {
  176     intptr_t PtrWord =
  184   static intptr_t updateInt(intptr_t OrigValue, intptr_t Int) {
  184   static intptr_t updateInt(intptr_t OrigValue, intptr_t Int) {
  184   static intptr_t updateInt(intptr_t OrigValue, intptr_t Int) {
  185     intptr_t IntWord = static_cast<intptr_t>(Int);
include/llvm/ADT/PointerUnion.h
  298     intptr_t key = (intptr_t)UnionVal.getOpaqueValue();
  299     return DenseMapInfo<intptr_t>::getHashValue(key);
include/llvm/ADT/STLExtras.h
  108   Ret (*callback)(intptr_t callable, Params ...params) = nullptr;
  109   intptr_t callable;
  112   static Ret callback_fn(intptr_t callable, Params ...params) {
include/llvm/CodeGen/ValueTypes.h
  390     intptr_t getRawBits() const {
include/llvm/Support/FileSystem.h
 1271     intptr_t IterationHandle = 0;
kythe_builtins/include/unwind.h
   70 typedef intptr_t _Unwind_Sword;
   75 typedef intptr_t _sleb128_t;
lib/IR/User.cpp
   89   intptr_t SizeInBytes;
lib/Passes/PassPlugin.cpp
   26   intptr_t getDetailsFn =
lib/Support/FoldingSet.cpp
  201   intptr_t Ptr = reinterpret_cast<intptr_t>(NextInBucketPtr);
lib/Support/Signals.cpp
   92                                   const char **Modules, intptr_t *Offsets,
  139   std::vector<intptr_t> Offsets(Depth, 0);
lib/Support/Unix/Signals.inc
  439   intptr_t *offsets;
  451     intptr_t beg = info->dlpi_addr + phdr->p_vaddr;
  452     intptr_t end = beg + phdr->p_memsz;
  456       intptr_t addr = (intptr_t)data->StackTrace[j];
  469                                   const char **Modules, intptr_t *Offsets,
projects/compiler-rt/lib/fuzzer/FuzzerIO.h
   99 intptr_t GetHandleFromFd(int fd);
projects/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
  135 intptr_t GetHandleFromFd(int fd) {
projects/compiler-rt/lib/fuzzer/FuzzerRandom.h
   29   intptr_t operator()(intptr_t From, intptr_t To) {
   29   intptr_t operator()(intptr_t From, intptr_t To) {
   29   intptr_t operator()(intptr_t From, intptr_t To) {
   31     intptr_t RangeSize = To - From + 1;
projects/compiler-rt/lib/profile/InstrProfilingBuffer.c
   28   intptr_t BeginI = (intptr_t)Begin, EndI = (intptr_t)End;
tools/clang/include/clang/AST/ASTDiagnostic.h
   27       intptr_t Val,
   33       ArrayRef<intptr_t> QualTypeVals);
tools/clang/include/clang/Basic/Diagnostic.h
  207   using ArgumentValue = std::pair<ArgumentKind, intptr_t>;
  455       ArgumentKind Kind, intptr_t Val,
  460       ArrayRef<intptr_t> QualTypeVals);
  783   void ConvertArgToString(ArgumentKind Kind, intptr_t Val,
  787                           ArrayRef<intptr_t> QualTypeVals) const {
  941   intptr_t DiagArgumentsVal[MaxArguments];
 1151   void AddTaggedVal(intptr_t V, DiagnosticsEngine::ArgumentKind Kind) const {
 1387   intptr_t getRawArg(unsigned Idx) const {
 1572   intptr_t FromType;
 1573   intptr_t ToType;
tools/clang/include/clang/Basic/PartialDiagnostic.h
   67     intptr_t DiagArgumentsVal[MaxArguments];
  271   void AddTaggedVal(intptr_t V, DiagnosticsEngine::ArgumentKind Kind) const {
tools/clang/lib/AST/ASTDiagnostic.cpp
  234                             ArrayRef<intptr_t> QualTypeVals) {
  326     intptr_t Val,
  332     ArrayRef<intptr_t> QualTypeVals) {
tools/clang/lib/Basic/Diagnostic.cpp
   64 static void DummyArgToStringFn(DiagnosticsEngine::ArgumentKind AK, intptr_t QT,
   69                             ArrayRef<intptr_t> QualTypeVals) {
  800   SmallVector<intptr_t, 2> QualTypeVals;
 1005       intptr_t val = reinterpret_cast<intptr_t>(&TDT);
tools/clang/lib/Basic/Stack.cpp
   55   intptr_t StackDiff = (intptr_t)getStackPointer() - (intptr_t)BottomOfStack;
tools/clang/lib/CodeGen/CGOpenMPRuntime.h
   65   intptr_t CodeGen;
   66   typedef void (*CodeGenTy)(intptr_t, CodeGenFunction &, PrePostActionTy &);
   72   static void CallbackFn(intptr_t CodeGen, CodeGenFunction &CGF,
tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
   31 bool isRootChanged(intptr_t k) { return k == ROOT_CHANGED; }
tools/lldb/source/Expression/DWARFExpression.cpp
 1135         intptr_t ptr;
 1230         intptr_t ptr;
tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
  239   intptr_t data = 0;
  261   intptr_t data = 0;
tools/lldb/source/Symbol/Symbol.cpp
  131     intptr_t str_ptr = m_addr_range.GetBaseAddress().GetOffset();
  145     intptr_t str_ptr = m_addr_range.GetByteSize();
  242     intptr_t shlib = m_addr_range.GetByteSize();
unittests/ADT/PointerEmbeddedIntTest.cpp
   46   PointerEmbeddedInt<intptr_t, CHAR_BIT> IPos = 42, INeg = -42;
   54   PointerEmbeddedInt<intptr_t, std::numeric_limits<intptr_t>::digits>
   54   PointerEmbeddedInt<intptr_t, std::numeric_limits<intptr_t>::digits>
   55       IMax = std::numeric_limits<intptr_t>::max() >> 1,
   56       IMin = std::numeric_limits<intptr_t>::min() >> 1;
usr/include/c++/7.4.0/atomic
  992   typedef atomic<intptr_t>		atomic_intptr_t;
usr/include/python2.7/pyport.h
  160 typedef intptr_t        Py_intptr_t;
usr/include/unistd.h
 1044 extern void *sbrk (intptr_t __delta) __THROW;