Home
last modified time | relevance | path

Searched refs:next_ (Results 1 – 5 of 5) sorted by relevance

/developtools/profiler/device/plugins/memory_plugin/src/
Dbuffer_splitter.cpp20 next_ = const_cast<char*>(buf); in BufferSplitter()
22 end_ = next_ + size; in BufferSplitter()
24 next_[size - 1] = '\0'; in BufferSplitter()
37 if (next_ < end_) { in NextLine()
38 next_ = nextLine_; in NextLine()
40 for (; next_ < end_; next_++) { in NextLine()
41 if (*next_ == delimiter) { in NextLine()
44 curLine_ = next_; in NextLine()
46 if (++next_ >= end_) { in NextLine()
48 next_ = curLine_; in NextLine()
[all …]
/developtools/hiperf/include/
Dhashlist.h28 Link(const Link &link) : prev_ {link.prev_}, next_ {link.next_} {} in Link()
29 Link(Link &&link) : prev_ {link.prev_}, next_ {link.next_} in Link()
32 link.next_ = nullptr;
37 next_ = link.next_;
44 next_ = link.next_;
45 link.next_ = nullptr;
49 Link *next_ {nullptr};
164 return (dataHead_.next_ == &dataHead_) and (dataHead_.prev_ == &dataHead_); in empty()
172 return freeHead_.next_ == &freeHead_; in IsFull()
351 Link* plink = pnode_->link_.next_;
[all …]
/developtools/profiler/device/plugins/native_daemon/include/
Dhashlistpp.h151 Link* plink = pnode_->link_.next_;
170 Link* plink = pnode_->link_.next_;
389 plink = phashList_->dataHead_.next_;
391 plink = pnode_->link_.next_;
412 plink = phashList_->dataHead_.next_;
414 plink = pnode_->link_.next_;
498 dataHead_.next_ = &dataHead_;
504 freeHead_.next_ = &(pData_[0].link_);
508 curNnode.link_.next_ = &(pData_[++index].link_);
510 pData_[last].link_.next_ = &freeHead_;
[all …]
Dhashlist.h28 Link(const Link &link) : prev_ {link.prev_}, next_ {link.next_} {} in Link()
29 Link(Link &&link) : prev_ {link.prev_}, next_ {link.next_} in Link()
32 link.next_ = nullptr;
37 next_ = link.next_;
44 next_ = link.next_;
45 link.next_ = nullptr;
49 Link *next_ {nullptr};
164 return (dataHead_.next_ == &dataHead_) and (dataHead_.prev_ == &dataHead_); in empty()
172 return freeHead_.next_ == &freeHead_; in IsFull()
/developtools/profiler/device/plugins/memory_plugin/include/
Dbuffer_splitter.h63 char* next_; variable