HomeSort by relevance Sort by last modified time
    Searched defs:write_ptr_ (Results 1 - 2 of 2) sorted by null

  /external/perfetto/include/perfetto/protozero/
scattered_stream_writer.h 56 if (write_ptr_ >= cur_range_.end)
58 *write_ptr_++ = value;
67 uint8_t* const end = write_ptr_ + size;
69 memcpy(write_ptr_, src, size);
70 write_ptr_ = end;
74 uint8_t* const end = write_ptr_ + size;
91 uint8_t* begin = write_ptr_;
92 write_ptr_ += size;
93 assert(write_ptr_ <= cur_range_.end);
104 return static_cast<size_t>(cur_range_.end - write_ptr_);
117 uint8_t* write_ptr_; member in class:protozero::ScatteredStreamWriter
    [all...]
  /frameworks/base/tools/aapt2/compile/
PngCrunch.cpp 53 : write_ptr_(write_ptr), info_ptr_(info_ptr) {}
56 png_destroy_write_struct(&write_ptr_, &info_ptr_);
60 png_structp write_ptr_; member in class:aapt::PngWriteStructDeleter

Completed in 84 milliseconds