Searched refs:mStorage (Results 1 – 4 of 4) sorted by relevance
24 while (mStorage.size() + 1 > mBufferSize) { in emplace()25 if (mStorage.empty()) { in emplace()28 mStorage.pop(); in emplace()30 mStorage.emplace(std::forward<StatsData>(data)); in emplace()34 return mStorage; in dump()
33 mStorage = std::vector<uint8_t>((numBits + 7) / 8, 0); in resize()39 const uint8_t byte = mStorage[byteIndex]; in set()41 mStorage[byteIndex] = newValue; in set()47 const uint8_t byte = mStorage[byteIndex]; in get()52 return mStorage; in getBitmask()
66 size_t count() { return mStorage.size(); } in count()74 std::queue<StatsData> mStorage; variable
70 std::vector<uint8_t> mStorage;