Lines Matching refs:DataRefImpl
22 union DataRefImpl { union
29 DataRefImpl() { std::memset(this, 0, sizeof(DataRefImpl)); } in DataRefImpl() function
32 inline bool operator==(const DataRefImpl &a, const DataRefImpl &b) {
35 return std::memcmp(&a, &b, sizeof(DataRefImpl)) == 0;
38 inline bool operator!=(const DataRefImpl &a, const DataRefImpl &b) {
42 inline bool operator<(const DataRefImpl &a, const DataRefImpl &b) {
45 return std::memcmp(&a, &b, sizeof(DataRefImpl)) < 0;
79 DataRefImpl SymbolPimpl;
99 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
111 DataRefImpl getRawDataRefImpl() const;
125 virtual void moveSymbolNext(DataRefImpl &Symb) const = 0;
128 DataRefImpl Symb) const = 0;
130 virtual uint32_t getSymbolFlags(DataRefImpl Symb) const = 0;
165 inline BasicSymbolRef::BasicSymbolRef(DataRefImpl SymbolP, in BasicSymbolRef()
189 inline DataRefImpl BasicSymbolRef::getRawDataRefImpl() const { in getRawDataRefImpl()