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

  /external/libchrome/base/
pickle.cc 259 write_offset_(0) {
270 write_offset_(0) {
281 write_offset_(0) {
300 write_offset_(other.write_offset_) {
327 write_offset_ = other.write_offset_;
361 DCHECK_LE(write_offset_, std::numeric_limits<uint32_t>::max() - data_len);
362 size_t new_size = write_offset_ + data_len;
458 DCHECK_LE(write_offset_, std::numeric_limits<uint32_t>::max() - data_len)
    [all...]
pickle.h 360 size_t write_offset_; member in class:base::Pickle
  /external/libmojo/mojo/edk/system/
data_pipe_producer_dispatcher.cc 164 DCHECK_LE(write_offset_, options_.capacity_num_bytes);
166 std::min(options_.capacity_num_bytes - write_offset_,
171 memcpy(data + write_offset_, source, tail_bytes_to_write);
177 write_offset_ = (write_offset_ + num_bytes_to_write) %
208 *buffer_num_bytes = std::min(options_.capacity_num_bytes - write_offset_,
214 *buffer = data + write_offset_;
236 write_offset_ + num_bytes_written > options_.capacity_num_bytes) {
239 DCHECK_LE(num_bytes_written + write_offset_, options_.capacity_num_bytes);
241 write_offset_ = (write_offset_ + num_bytes_written)
    [all...]
data_pipe_producer_dispatcher.h 120 uint32_t write_offset_ = 0; member in class:mojo::edk::final

Completed in 1372 milliseconds