Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_allocator_stats.h54 AllocatorStats *next_; variable
63 next_ = this; in InitLinkerInitialized()
73 s->next_ = next_; in Register()
75 next_->prev_ = s; in Register()
76 next_ = s; in Register()
81 s->prev_->next_ = s->next_; in Unregister()
82 s->next_->prev_ = s->prev_; in Unregister()
94 stats = stats->next_; in Get()
H A Dsanitizer_ring_buffer.h30 RB->last_ = RB->next_ = reinterpret_cast<T*>(End - sizeof(T)); in New()
49 *next_ = t; in push()
50 next_--; in push()
52 if (next_ <= reinterpret_cast<T*>(&next_)) in push()
53 next_ = last_; in push()
59 if (IdxNext > last_ - next_)
61 return next_[IdxNext];
76 T *next_; variable
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_allocator_stats.h52 AllocatorStats *next_; variable
61 next_ = this; in InitLinkerInitialized()
71 s->next_ = next_; in Register()
73 next_->prev_ = s; in Register()
74 next_ = s; in Register()
79 s->prev_->next_ = s->next_; in Unregister()
80 s->next_->prev_ = s->prev_; in Unregister()
92 stats = stats->next_; in Get()
H A Dsanitizer_ring_buffer.h28 RB->last_ = RB->next_ = reinterpret_cast<T*>(End - sizeof(T)); in New()
47 *next_ = t; in push()
48 next_--; in push()
50 if (next_ <= reinterpret_cast<T*>(&next_)) in push()
51 next_ = last_; in push()
57 if (IdxNext > last_ - next_)
59 return next_[IdxNext];
74 T *next_; variable
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_allocator_stats.h53 AllocatorStats *next_; variable
62 next_ = this; in InitLinkerInitialized()
72 s->next_ = next_; in Register()
74 next_->prev_ = s; in Register()
75 next_ = s; in Register()
80 s->prev_->next_ = s->next_; in Unregister()
81 s->next_->prev_ = s->prev_; in Unregister()
93 stats = stats->next_; in Get()
H A Dsanitizer_ring_buffer.h29 RB->last_ = RB->next_ = reinterpret_cast<T*>(End - sizeof(T)); in New()
48 *next_ = t; in push()
49 next_--; in push()
51 if (next_ <= reinterpret_cast<T*>(&next_)) in push()
52 next_ = last_; in push()
58 if (IdxNext > last_ - next_)
60 return next_[IdxNext];
75 T *next_; variable
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_ilist.h24 INode* next_ = nullptr;
78 node_.next_ = node_.prev_ = &node_; in IList()
94 DCHECK_EQ(n->next_, nullptr); in Push()
96 INode* next = after->next_; in Push()
97 n->next_ = next; in Push()
100 after->next_ = n; in Push()
107 INode* next = n->next_; in Remove()
113 prev->next_ = next; in Remove()
114 n->prev_ = n->next_ = nullptr; in Remove()
136 return size_ ? ToElem(node_.next_) : nullptr; in Front()
[all …]
/netbsd-src/external/mit/libuv/dist/src/win/
H A Dloop-watcher.c90 if (loop->next_##name##_handle == handle) { \
91 loop->next_##name##_handle = handle->name##_next; \
110 (loop)->next_##name##_handle = (loop)->name##_handles; \
112 while ((loop)->next_##name##_handle != NULL) { \
113 handle = (loop)->next_##name##_handle; \
114 (loop)->next_##name##_handle = handle->name##_next; \
/netbsd-src/external/gpl3/binutils.old/dist/gold/
H A Dtarget-select.h111 { return this->next_; } in next()
235 Target_selector* next_; variable
H A Dtarget-select.cc63 this->next_ = target_selectors; in Target_selector()
H A Dmips.cc697 got_page_offset_next_(0), got_page_offsets_(), next_(NULL), index_(-1U), in Mips_got_info()
854 { return this->next_; } in next()
859 { this->next_ = next; } in set_next()
939 Mips_got_info<size, big_endian>* next_; member in __anon67c201da0111::Mips_got_info
/netbsd-src/external/gpl3/binutils/dist/gold/
H A Dtarget-select.h111 { return this->next_; } in next()
235 Target_selector* next_; variable
H A Dtarget-select.cc63 this->next_ = target_selectors; in Target_selector()
H A Dmips.cc697 got_page_offset_next_(0), got_page_offsets_(), next_(NULL), index_(-1U), in Mips_got_info()
854 { return this->next_; } in next()
859 { this->next_ = next; } in set_next()
939 Mips_got_info<size, big_endian>* next_; member in __anon5561842d0111::Mips_got_info
/netbsd-src/sys/altq/
H A Daltq_rmclass.c327 cl->next_ = parent->children_; in rmc_newclass()
505 t = t->next_; in rmc_depth_recompute()
527 t = t->next_; in rmc_depth_recompute()
570 if (head->next_ == NULL) { in rmc_delete_class()
577 cl->parent_->children_ = cl->next_; in rmc_delete_class()
579 previous->next_ = cl->next_; in rmc_delete_class()
580 cl->next_ = NULL; in rmc_delete_class()
584 p = p->next_; in rmc_delete_class()
863 p = p->next_; in rmc_satisfied()
[all...]
H A Daltq_rmclass.h144 rm_class_t *next_; /* Next pointer, used if child */ member