HomeSort by relevance Sort by last modified time
    Searched refs:byte_count_ (Results 1 - 13 of 13) 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/protobuf/src/google/protobuf/util/
json_util_test.cc 186 : segments_(segments), last_segment_(static_cast<char*>(NULL), 0), byte_count_(0) {}
196 byte_count_ += *length;
205 byte_count_ -= length;
208 virtual int64 ByteCount() const { return byte_count_; }
213 int64 byte_count_; member in class:google::protobuf::util::__anon29989::SegmentedZeroCopyOutputStream
  /external/webrtc/webrtc/base/
bitbuffer.cc 77 : bytes_(bytes), byte_count_(byte_count), byte_offset_(), bit_offset_() {
78 RTC_DCHECK(static_cast<uint64_t>(byte_count_) <=
83 return (static_cast<uint64_t>(byte_count_) - byte_offset_) * 8 - bit_offset_;
212 if (byte_offset > byte_count_ || bit_offset > 7 ||
213 (byte_offset == byte_count_ && bit_offset > 0)) {
bitbuffer.h 82 size_t byte_count_; member in class:rtc::BitBuffer
  /art/runtime/jdwp/
jdwp_request.cc 30 byte_count_ = Read4BE();
31 end_ = bytes + byte_count_;
32 CHECK_LE(byte_count_, available);
jdwp.h 471 size_t GetLength() { return byte_count_; }
492 uint32_t byte_count_; member in class:art::JDWP::Request
  /external/webrtc/talk/app/webrtc/
datachannel.cc 83 DataChannel::PacketQueue::PacketQueue() : byte_count_(0) {}
102 byte_count_ -= packets_.front()->size();
107 byte_count_ += packet->size();
116 byte_count_ = 0;
120 size_t other_byte_count = other->byte_count_;
121 other->byte_count_ = byte_count_;
122 byte_count_ = other_byte_count;
datachannel.h 214 return byte_count_;
231 size_t byte_count_; member in class:webrtc::DataChannel::PacketQueue
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 101 int64 byte_count_; member in class:google::protobuf::io::GzipInputStream
gzip_stream.cc 51 : format_(format), sub_stream_(sub_stream), zerror_(Z_OK), byte_count_(0) {
138 byte_count_ += zcontext_.total_out;
183 int64 ret = byte_count_ + zcontext_.total_out;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 101 int64 byte_count_; member in class:google::protobuf::io::GzipInputStream
  /art/runtime/gc/
allocation_record.h 160 : byte_count_(count), klass_(klass), trace_(std::move(trace)) {}
171 return byte_count_;
194 const size_t byte_count_; member in class:art::gc::AllocRecord

Completed in 272 milliseconds