HomeSort by relevance Sort by last modified time
    Searched refs:total_size_ (Results 1 - 4 of 4) sorted by null

  /external/protobuf/src/google/protobuf/
repeated_field.cc 43 if (total_size_ >= new_size) return;
46 total_size_ = max(total_size_ * 2, new_size);
47 elements_ = new void*[total_size_];
58 int swap_total_size = total_size_;
67 total_size_ = other->total_size_;
73 other->total_size_ = swap_total_size;
repeated_field.h 136 int total_size_; member in class:google::protobuf::RepeatedField
253 int total_size_; member in class:google::protobuf::internal::RepeatedPtrFieldBase
424 total_size_(kInitialSize) {
441 return total_size_;
476 if (current_size_ == total_size_) Reserve(total_size_ + 1);
482 if (current_size_ == total_size_) Reserve(total_size_ + 1);
519 int swap_total_size = total_size_;
527 total_size_ = other->total_size_
    [all...]
  /external/chromium/net/base/
upload_data_stream.h 30 uint64 size() const { return total_size_; }
62 uint64 total_size_; member in class:net::UploadDataStream
upload_data_stream.cc 20 total_size_(data->GetContentLength()),

Completed in 34 milliseconds