Searched defs:LazyOffsetPtr (Results 1 – 1 of 1) sorted by relevance
318 struct LazyOffsetPtr { struct327 LazyOffsetPtr() : Ptr(0) { } in LazyOffsetPtr() function329 explicit LazyOffsetPtr(T *Ptr) : Ptr(reinterpret_cast<uint64_t>(Ptr)) { } in LazyOffsetPtr() function330 explicit LazyOffsetPtr(uint64_t Offset) : Ptr((Offset << 1) | 0x01) { in LazyOffsetPtr() argument359 bool isValid() const { return Ptr != 0; } in isValid()362 bool isOffset() const { return Ptr & 0x01; } in isOffset()369 T* get(ExternalASTSource *Source) const { in get()