Searched refs:stdmap (Results 1 - 1 of 1) sorted by relevance

/external/google-breakpad/src/processor/
H A Dstatic_map_unittest.cc49 static char* Serialize(const std::map<Key, Value> &stdmap, argument
53 unsigned int memsize = sizeof(int32_t) + size_per_node * stdmap.size();
61 new (address) uint32_t(static_cast<uint32_t>(stdmap.size()));
66 address += sizeof(uint32_t) * stdmap.size();
70 address += sizeof(Key) * stdmap.size();
73 typename std::map<Key, Value>::const_iterator iter = stdmap.begin();
74 for (int index = 0; iter != stdmap.end(); ++iter, ++index) {

Completed in 123 milliseconds