HomeSort by relevance Sort by last modified time
    Searched defs:Reserve (Results 1 - 6 of 6) sorted by null

  /external/protobuf/src/google/protobuf/
repeated_field.cc 42 void RepeatedPtrFieldBase::Reserve(int new_size) {
repeated_field.h 94 // Reserve space to expand the field to at least the given size. If the
96 void Reserve(int new_size);
207 void Reserve(int new_size);
331 // Reserve space to expand the field to at least the given size. This only
334 void Reserve(int new_size);
476 if (current_size_ == total_size_) Reserve(total_size_ + 1);
482 if (current_size_ == total_size_) Reserve(total_size_ + 1);
499 Reserve(current_size_ + other.current_size_);
574 // Avoid inlining of Reserve(): new, memcpy, and delete[] lead to a significant
577 void RepeatedField<Element>::Reserve(int new_size)
    [all...]
  /external/chromium/net/tools/flip_server/
simple_buffer.cc 88 (void)Reserve(size);
139 // Attempts to reserve a contiguous block of buffer space by either reclaiming
141 bool SimpleBuffer::Reserve(int size) {
ring_buffer.cc 170 bool RingBuffer::Reserve(int size) {
balsa_headers.h 190 char* storage = Reserve(sp.size(), block_buffer_idx);
200 char* Reserve(size_t size,
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 442 clone->Reserve(size_);
451 void Reserve(int new_capacity) {
471 Reserve(new_capacity);
    [all...]

Completed in 219 milliseconds