reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
30 Ptr += Offset; 35 assert(Ptr != nullptr && RHS.Ptr != nullptr && "Invalid code pointer"); 35 assert(Ptr != nullptr && RHS.Ptr != nullptr && "Invalid code pointer"); 36 return Ptr - RHS.Ptr; 36 return Ptr - RHS.Ptr; 40 assert(Ptr != nullptr && "Invalid code pointer"); 41 return CodePtr(Ptr - RHS); 44 bool operator!=(const CodePtr &RHS) const { return Ptr != RHS.Ptr; } 44 bool operator!=(const CodePtr &RHS) const { return Ptr != RHS.Ptr; } 48 T Value = ReadHelper<T>(Ptr); 49 Ptr += sizeof(T);