Home
last modified time | relevance | path

Searched refs:size_to_alloc (Results 1 – 2 of 2) sorted by relevance

/external/google-breakpad/src/processor/
Dmap_serializers-inl.h103 unsigned int size_to_alloc = SizeOf(m); in Serialize() local
105 char *serialized_data = new char[size_to_alloc]; in Serialize()
114 if (size) *size = size_to_alloc; in Serialize()
172 unsigned int size_to_alloc = SizeOf(m); in Serialize() local
174 char *serialized_data = new char[size_to_alloc]; in Serialize()
184 if (size) *size = size_to_alloc; in Serialize()
251 unsigned int size_to_alloc = SizeOf(m); in Serialize() local
253 char *serialized_data = new char[size_to_alloc]; in Serialize()
260 if (size) *size = size_to_alloc; in Serialize()
Dmodule_serializer.cc106 unsigned int size_to_alloc = SizeOf(module); in Serialize() local
109 char *serialized_data = new char[size_to_alloc]; in Serialize()
112 << "size to alloc: " << size_to_alloc; in Serialize()
122 if (size_to_alloc != size_written) { in Serialize()
124 << size_to_alloc << " vs " << size_written; in Serialize()
129 *size = size_to_alloc; in Serialize()