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

  /art/runtime/base/
hex_dump.h 33 : address_(address), byte_count_(byte_count), show_actual_addresses_(show_actual_addresses),
41 const size_t byte_count_; member in class:art::HexDump
hex_dump.cc 26 if (byte_count_ == 0) {
55 size_t byte_count = byte_count_;
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
tote.h 20 void AddBytes(int ibytes) {byte_count_ += ibytes;}
26 int GetByteCount() const {return byte_count_;}
39 int byte_count_; // Bytes of text scored member in class:Tote
tote.cc 16 byte_count_ = 0;
27 byte_count_ = 0;
134 fprintf(f, "%d %d %d\n", gram_count_, incr_count_, byte_count_);
  /external/chromium_org/components/rappor/
byte_vector_utils.h 54 size_t byte_count() const { return byte_count_; }
60 size_t byte_count_; member in class:rappor::ByteVectorGenerator
byte_vector_utils.cc 120 : byte_count_(byte_count) {}
125 ByteVector bytes(byte_count_);
  /art/runtime/jdwp/
jdwp_request.cc 29 byte_count_ = Read4BE();
30 end_ = bytes + byte_count_;
31 CHECK_LE(byte_count_, available);
jdwp.h 439 size_t GetLength() { return byte_count_; }
460 uint32_t byte_count_; member in class:art::JDWP::Request
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannel.cc 45 DataChannel::PacketQueue::PacketQueue() : byte_count_(0) {}
64 byte_count_ -= packets_.front()->size();
69 byte_count_ += packet->size();
78 byte_count_ = 0;
82 size_t other_byte_count = other->byte_count_;
83 other->byte_count_ = byte_count_;
84 byte_count_ = other_byte_count;
datachannel.h 187 return byte_count_;
204 size_t byte_count_; member in class:webrtc::DataChannel::PacketQueue
  /external/chromium_org/net/disk_cache/blockfile/
backend_impl_v3.h 255 int byte_count_; // Number of bytes read/written lately. member in class:disk_cache::BackendImplV3
backend_impl_v3.cc 306 byte_count_ += bytes;
307 if (byte_count_ < 0)
308 byte_count_ = kint32max;
335 CACHE_UMA(COUNTS, "ByteIORate", byte_count_ / 1024);
338 user_load_ = (entry_count_ > 300 || byte_count_ > 7 * 1024 * 1024);
340 byte_count_ = 0;
1021 entry_count_ = byte_count_ = 0;
    [all...]
backend_impl.h 378 int byte_count_; // Number of bytes read/written lately. member in class:disk_cache::BackendImpl
backend_impl.cc 210 entry_count_ = byte_count_ = 0;
1049 byte_count_ += bytes;
1050 if (byte_count_ < 0)
1051 byte_count_ = kint32max;
1081 CACHE_UMA(COUNTS, "ByteIORate", 0, byte_count_ / 1024);
1084 user_load_ = (entry_count_ > 300 || byte_count_ > 7 * 1024 * 1024);
1086 byte_count_ = 0;
    [all...]
backend_worker_v3.cc 120 entry_count_ = byte_count_ = 0;
  /art/runtime/
debugger.cc 137 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {}
157 return byte_count_;
161 byte_count_ = count;
179 size_t byte_count_; member in class:art::AllocRecord
    [all...]

Completed in 491 milliseconds