Lines Matching defs:reserve
244 /// Trivial deserialization calls a static 'reserve(SequenceT&)' method on your
245 /// specialization (you must implement this) to reserve space, and then calls
270 static void reserve(std::string &S, uint64_t Size) { S.reserve(Size); }
299 static void reserve(std::vector<T> &V, uint64_t Size) { V.reserve(Size); }
325 static void reserve(std::unordered_map<K, V> &M, uint64_t Size) {
326 M.reserve(Size);
362 TBSD::reserve(S, Size);
531 /// determine the amount of space to reserve, and then again to serialize).