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

  /system/extras/memtrack/
memtrack.cpp 41 : data_(buffer), max_(buffer_len), cur_idx_(0), len_(0),
56 if (cur_idx_ + bytes_needed < len_) {
64 if (cur_idx_ != len_) {
66 len_ = len_ - cur_idx_;
67 memcpy(data_, data_ + cur_idx_, len_);
71 cur_idx_ = 0;
72 while (cur_idx_ + bytes_needed >= len_) {
81 return cur_idx_ + bytes_needed < len_;
91 if (data_[cur_idx_] != 'P' || data_[cur_idx_+1] != 's' |
    [all...]
memtrack.h 45 size_t cur_idx_; member in class:FileData

Completed in 102 milliseconds