HomeSort by relevance Sort by last modified time
    Searched refs:total_size_ (Results 1 - 11 of 11) 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 54 uint64 size() const { return total_size_; }
114 uint64 total_size_; member in class:net::UploadDataStream
upload_data_stream.cc 53 total_size_(data->is_chunked() ? 0 : data->GetContentLength()),
  /external/chromium/chrome/browser/chromeos/cros/
mount_library.h 68 uint64 total_size() const { return total_size_; }
90 uint64 total_size_; member in class:chromeos::MountLibrary::Disk
mount_library.cc 39 total_size_(total_size),
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.cc 77 DiskCache::DiskCache() : max_cache_(0), total_size_(0), total_accessors_(0) {
90 ASSERT(0 == total_size_);
120 if ((total_size_ > max_cache_) && !CheckLimit()) {
149 total_size_ -= previous_size;
224 total_size_ -= entry->size;
236 ASSERT(cache_size == total_size_);
241 while (total_size_ > max_cache_) {
352 this2->total_size_ += new_size;
diskcache.h 104 size_t max_cache_, total_size_; member in class:talk_base::DiskCache
  /external/v8/src/
hydrogen.h 1020 unsigned total_size_; member in class:v8::internal::HStatistics
    [all...]
liveobjectlist.cc 779 total_size_(0),
794 total_size_ += size;
810 return total_size_;
834 int total_size_; member in class:v8::internal::LiveObjectSummary
    [all...]
hydrogen.cc     [all...]

Completed in 518 milliseconds