Searched defs:EntryWithSize (Results 1 – 1 of 1) sorted by relevance
32 struct EntryWithSize { struct33 EntryWithSize(const S&& d) : EntryWithSize(std::move(d), 0) {} in EntryWithSize() argument35 EntryWithSize(const S&& d, const size_t ds) : data(std::move(d)), dataSize(ds) { in EntryWithSize() argument43 bool operator==(const EntryWithSize& rhs) const { return data == rhs.data; } argument