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

1 2

  /external/marisa-trie/lib/marisa/
progress.h 23 MARISA_THROW_IF(total_size_ > (MARISA_UINT32_MAX - total_size),
25 total_size_ += total_size;
35 return total_size_;
54 std::size_t total_size_; member in class:marisa::Progress
progress.cc 5 Progress::Progress(int flags) : flags_(flags), trie_id_(0), total_size_(0) {
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
progress.h 23 MARISA_ALPHA_THROW_IF(total_size_ > (MARISA_ALPHA_UINT32_MAX - total_size),
25 total_size_ += total_size;
35 return total_size_;
54 std::size_t total_size_; member in class:marisa_alpha::Progress
progress.cc 5 Progress::Progress(int flags) : flags_(flags), trie_id_(0), total_size_(0) {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.cc 46 if (total_size_ >= new_size) return;
49 total_size_ = max(kMinRepeatedFieldAllocationSize,
50 max(total_size_ * 2, new_size));
51 elements_ = new void*[total_size_];
63 int swap_total_size = total_size_;
68 total_size_ = other->total_size_;
73 other->total_size_ = swap_total_size;
repeated_field.h 176 int total_size_; member in class:google::protobuf::RepeatedField
319 int total_size_; member in class:google::protobuf::internal::RepeatedPtrFieldBase
554 total_size_(kInitialSize) {
561 total_size_(kInitialSize) {
570 total_size_(kInitialSize) {
596 return total_size_;
631 if (current_size_ == total_size_) Reserve(total_size_ + 1);
637 if (current_size_ == total_size_) Reserve(total_size_ + 1)
    [all...]
  /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_org/net/spdy/
spdy_read_queue.cc 13 SpdyReadQueue::SpdyReadQueue() : total_size_(0) {}
20 DCHECK_EQ(queue_.empty(), total_size_ == 0);
25 return total_size_;
30 total_size_ += buffer->GetRemainingSize();
50 total_size_ -= bytes_copied;
spdy_read_queue.h 44 size_t total_size_; member in class:net::SpdyReadQueue
  /external/chromium_org/cc/base/
tiling_data.cc 36 total_size_(total_size),
46 total_size_(total_size),
52 total_size_ = total_size;
135 int total_size_x = total_size_.width();
136 int total_size_y = total_size_.height();
165 DCHECK_LE(x, total_size_.width());
166 DCHECK_LE(y, total_size_.height());
174 int total_size_x = total_size_.width();
175 int total_size_y = total_size_.height();
194 DCHECK_LE(x, total_size_.width())
    [all...]
tiling_data.h 34 gfx::Size total_size() const { return total_size_; }
138 gfx::Size total_size_; member in class:cc::TilingData
  /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_org/net/base/
upload_data_stream.h 78 uint64 size() const { return total_size_; }
134 // |total_size_| is set to zero when the data is chunked.
135 uint64 total_size_; member in class:net::UploadDataStream
upload_data_stream.cc 19 total_size_(0),
32 total_size_(0),
69 return current_position_ == total_size_;
99 // Initialize a reader for the newly appended chunk. We leave |total_size_| at
121 total_size_ = 0;
152 total_size_ = total_size;
222 DCHECK(is_chunked_ || total_size_ >= current_position_);
  /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
  /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/chromium_org/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_win32.cc 64 total_size_ += find_data.nFileSizeLow;
diskcache.h 104 size_t max_cache_, total_size_; member in class:talk_base::DiskCache
  /external/chromium_org/webkit/browser/blob/
blob_url_request_job.h 108 int64 total_size_; member in class:webkit_blob::BlobURLRequestJob
blob_url_request_job.cc 58 total_size_(0),
174 if (item_length > kint64max - total_size_) {
182 total_size_ += item_length;
188 total_size_ = 0;
219 if (!byte_range_.ComputeBounds(total_size_)) {
  /external/chromium_org/webkit/browser/database/
database_tracker.h 56 int64 TotalSize() const { return total_size_; }
69 int64 total_size_; member in class:webkit_database::OriginInfo
202 total_size_ += new_size - old_size;

Completed in 874 milliseconds

1 2