Home
last modified time | relevance | path

Searched refs:ids_ (Results 1 – 25 of 583) sorted by relevance

12345678910>>...24

/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/tddb/td/db/binlog/detail/
H A DBinlogEventsProcessor.cpp20 if ((event.flags_ & BinlogEvent::Flags::Rewrite) && !ids_.empty() && ids_.back() >= fixed_id) { in do_event()
21 auto it = std::lower_bound(ids_.begin(), ids_.end(), fixed_id); in do_event()
25 auto pos = it - ids_.begin(); in do_event()
39 if (!(ids_.empty() || ids_.back() < fixed_id)) { in do_event()
40 …return Status::Error(PSLICE() << offset_ << " " << ids_.size() << " " << ids_.back() << " " << fix… in do_event()
47 ids_.push_back(fixed_id); in do_event()
58 CHECK(ids_.size() == events_.size()); in compactify()
59 auto ids_from = ids_.begin(); in compactify()
69 ids_.erase(ids_to, ids_.end()); in compactify()
71 total_events_ = ids_.size(); in compactify()
[all …]
H A DBinlogEventsBuffer.cpp17 auto it = std::find(ids_.begin(), ids_.end(), event.id_); in add_event()
18 if (it != ids_.end()) { in add_event()
19 auto &to_event = events_[it - ids_.begin()]; in add_event()
26 ids_.push_back(event.id_); in add_event()
32 return total_events_ > 5000 || ids_.size() > 100; in need_flush()
36 ids_.clear(); in clear()
H A DBinlogEventsProcessor.h26 for (size_t i = 0; i < ids_.size(); i++) { in for_each()
27 …LOG_CHECK(i == 0 || ids_[i - 1] < ids_[i]) << ids_[i - 1] << " " << events_[i - 1].public_to_strin… in for_each()
28 << ids_[i] << " " << events_[i].public_to_string(); in for_each()
29 if ((ids_[i] & 1) == 0) { in for_each()
47 std::vector<uint64> ids_;
/dports/devel/hpx/hpx-1.2.1/src/util/
H A Dactivate_counters.cpp59 ids_.push_back(id); in find_counter()
70 if (ids_.empty()) in find_counters()
75 ids_.reserve(names.size()); in find_counters()
89 HPX_ASSERT(ids_.size() == uoms_.size()); in find_counters()
106 started.reserve(ids_.size()); in start_counters()
132 if (ids_.empty()) in stop_counters()
145 stopped.reserve(ids_.size()); in stop_counters()
173 if (ids_.empty()) in reset_counters()
185 reset.reserve(ids_.size()); in reset_counters()
215 if (ids_.empty()) in evaluate_counters()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/tracing/core/
H A Did_allocator.cc37 if (id >= ids_.size()) { in AllocateGeneric()
38 ids_.resize(id + 1); in AllocateGeneric()
39 ids_[id] = true; in AllocateGeneric()
43 if (!ids_[id]) { in AllocateGeneric()
44 ids_[id] = true; in AllocateGeneric()
52 if (id == 0 || id >= ids_.size() || !ids_[id]) { in FreeGeneric()
56 ids_[id] = false; in FreeGeneric()
60 for (const auto id : ids_) { in IsEmpty()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/gfx/win/
H A Dcrash_id_helper.cc36 if (!ids_.empty()) in OnWillProcessMessages()
38 ids_.push_back(id.empty() ? "unspecified" : id); in OnWillProcessMessages()
45 DCHECK(!ids_.empty()); in OnDidProcessMessages()
46 ids_.pop_back(); in OnDidProcessMessages()
47 if (ids_.empty()) { in OnDidProcessMessages()
61 DCHECK(!ids_.empty()); in CurrentCrashId()
63 if (ids_.size() == 1) { in CurrentCrashId()
72 return was_nested_ ? "(N) " + ids_[0] : ids_[0]; in CurrentCrashId()
74 return base::JoinString(ids_, ">"); in CurrentCrashId()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/gfx/win/
H A Dcrash_id_helper.cc36 if (!ids_.empty()) in OnWillProcessMessages()
38 ids_.push_back(id.empty() ? "unspecified" : id); in OnWillProcessMessages()
45 DCHECK(!ids_.empty()); in OnDidProcessMessages()
46 ids_.pop_back(); in OnDidProcessMessages()
47 if (ids_.empty()) { in OnDidProcessMessages()
61 DCHECK(!ids_.empty()); in CurrentCrashId()
63 if (ids_.size() == 1) { in CurrentCrashId()
72 return was_nested_ ? "(N) " + ids_[0] : ids_[0]; in CurrentCrashId()
74 return base::JoinString(ids_, ">"); in CurrentCrashId()
/dports/net-im/psi/psi-1.5/src/
H A Dglobaleventqueue.cpp39 return ids_; in ids()
44 Q_ASSERT(ids_.contains(id)); in peek()
54 Q_ASSERT(!ids_.contains(item->id())); in enqueue()
55 if (!item || ids_.contains(item->id())) in enqueue()
58 ids_.append(item->id()); in enqueue()
60 Q_ASSERT(ids_.contains(item->id())); in enqueue()
68 Q_ASSERT(ids_.contains(item->id())); in dequeue()
69 if (!item || !ids_.contains(item->id())) in dequeue()
72 ids_.removeAll(item->id()); in dequeue()
74 Q_ASSERT(!ids_.contains(item->id())); in dequeue()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_unsupported/external/CoMISo/NSolver/
H A DTapeIDSingleton.hh28 const size_t n = ids_.size(); in requestId()
30 if(!ids_[i]) { in requestId()
31 ids_[i] = true; in requestId()
37 size_t id = ids_.size(); in requestId()
38 ids_.push_back(true); in requestId()
44 assert(_i < ids_.size()); in releaseId()
45 ids_[_i] = false; in releaseId()
54 std::vector<bool> ids_; member in TapeIDSingleton
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/tracing/core/
H A Did_allocator.cc37 if (id >= ids_.size()) { in AllocateGeneric()
38 ids_.resize(id + 1); in AllocateGeneric()
39 ids_[id] = true; in AllocateGeneric()
43 if (!ids_[id]) { in AllocateGeneric()
44 ids_[id] = true; in AllocateGeneric()
52 if (id == 0 || id >= ids_.size() || !ids_[id]) { in FreeGeneric()
56 ids_[id] = false; in FreeGeneric()
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/policy/
H A Dselect_any.hpp58 CAF_ASSERT(ids_.size() in select_any()
64 CAF_LOG_TRACE(CAF_ARG(ids_)); in await()
66 for (auto id : ids_) in await()
72 CAF_LOG_TRACE(CAF_ARG(ids_)); in then()
74 for (auto id : ids_) in then()
80 CAF_LOG_TRACE(CAF_ARG(ids_)); in receive()
82 auto pending = std::make_shared<size_t>(ids_.size()); in receive()
85 for (auto id : ids_) { in receive()
94 return ids_; in ids()
115 auto pending = std::make_shared<size_t>(ids_.size()); in make_behavior()
[all …]
H A Dselect_all.hpp117 CAF_ASSERT(ids_.size() in select_all()
127 CAF_LOG_TRACE(CAF_ARG(ids_)); in await()
129 for (auto id : ids_) in await()
135 CAF_LOG_TRACE(CAF_ARG(ids_)); in then()
137 for (auto id : ids_) in then()
143 CAF_LOG_TRACE(CAF_ARG(ids_)); in receive()
145 helper_type helper{ids_.size(), std::forward<F>(f)}; in receive()
153 for (auto id : ids_) { in receive()
161 return ids_; in ids()
169 helper_type helper{ids_.size(), std::move(f)}; in make_behavior()
[all …]
/dports/math/dune-alugrid/dune-alugrid-08c6496d4d4a33df6456c3b402182f353dc2e76d/dune/alugrid/3d/
H A Dindexsets.cc63 for(unsigned int k=0; k<ids_[i].size(); ++k) in print()
79 IteratorType end = ids_[i].end(); in uniquenessCheck()
96 ids_[i].clear(); in buildIdSet()
107 ids_[3][idx] = buildMacroVertexId( fw.item() ); in buildIdSet()
122 ids_[3][idx] = buildMacroVertexId( vx ); in buildIdSet()
133 ids_[2][idx] = buildMacroEdgeId( w.item() ); in buildIdSet()
150 ids_[2][idx] = buildMacroEdgeId( edge ); in buildIdSet()
163 ids_[1][idx] = buildMacroFaceId( w.item() ); in buildIdSet()
180 ids_[1][idx] = buildMacroFaceId( face ); in buildIdSet()
191 ids_[0][idx] = buildMacroElementId( w.item() ); in buildIdSet()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/profiler/
H A Dheap-profiler.cc19 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
79 ids_->RemoveDeadEntries(); in TakeSnapshot()
116 ids_->UpdateHeapObjectsMap(); in StartHeapObjectsTracking()
129 return ids_->PushHeapObjectsStats(stream, timestamp_us); in PushHeapObjectsStats()
133 ids_->StopHeapObjectsTracking(); in StopHeapObjectsTracking()
161 id = ids_->FindMergedNativeEntry(obj); in GetSnapshotObjectId()
168 bool known_object = ids_->MoveObject(from, to, size); in ObjectMoveEvent()
183 ids_->UpdateObjectSize(addr, size); in UpdateObjectSizeEvent()
193 if (ids_->FindEntry(obj.address()) == id) { in FindHeapObjectById()
206 ids_.reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/depsgraph/intern/builder/
H A Dpipeline_from_ids.cc37 ids_.add_multiple(ids); in DepsgraphFromIDsFilter()
42 return ids_.contains(id); in contains()
46 Set<ID *> ids_; member in blender::deg::__anonbc14899e0111::DepsgraphFromIDsFilter
118 : AbstractBuilderPipeline(graph), ids_(ids) in FromIDsBuilderPipeline()
124 return std::make_unique<DepsgraphFromIDsNodeBuilder>(bmain_, deg_graph_, &builder_cache_, ids_); in construct_node_builder()
130 bmain_, deg_graph_, &builder_cache_, ids_); in construct_relation_builder()
136 for (ID *id : ids_) { in build_nodes()
144 for (ID *id : ids_) { in build_relations()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/panmirror/dialogs/
H A DPanmirrorHRefSelect.java87 ids_ = new FormListBox(); in PanmirrorHRefSelect()
89 Roles.getListboxRole().setAriaLabelProperty(ids_.getElement(), "IDs"); in PanmirrorHRefSelect()
90 ids_.setWidth("100%"); in PanmirrorHRefSelect()
93 ids_.addItem("#" + id); in PanmirrorHRefSelect()
146 ids_.setSelectedIndex(i); in setHRef()
150 if (!ids_.getSelectedValue().equalsIgnoreCase(href)) { in setHRef()
151 ids_.addItem(href); in setHRef()
152 ids_.setSelectedIndex(ids_.getItemCount() - 1); in setHRef()
175 return ids_.getSelectedItemText(); in getHRef()
209 hrefContainer_.setWidget(ids_); in syncHRefType()
[all …]
/dports/games/scorched3d/scorched/src/client/client/
H A DUniqueIdStore.cpp40 ids_.clear(); in loadStore()
71 ids_.push_back(entry); in loadStore()
80 for (itor = ids_.begin(); in saveStore()
81 itor != ids_.end(); in saveStore()
101 for (itor = ids_.begin(); in getUniqueId()
102 itor != ids_.end(); in getUniqueId()
151 for (itor = ids_.begin(); in saveUniqueId()
152 itor != ids_.end(); in saveUniqueId()
182 ids_.push_back(entry); in saveUniqueId()
/dports/audio/bambootracker/BambooTracker-0.4.5/BambooTracker/instrument/
H A Dbank.cpp33 : ids_(std::move(ids)), in BtBank()
42 ids_(std::move(ids)), in BtBank()
54 return ids_.size(); in getNumInstruments()
59 return std::to_string(ids_.at(index)); in getInstrumentIdentifier()
154 return ids_.size(); in getNumInstruments()
159 return std::to_string(ids_.at(index)); in getInstrumentIdentifier()
179 : ids_(ids), samples_(samples) in PpcBank()
190 return std::to_string(ids_.at(index)); in getInstrumentIdentifier()
206 : ids_(ids), samples_(samples) in PviBank()
217 return std::to_string(ids_.at(index)); in getInstrumentIdentifier()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/profiler/
H A Dheap-profiler.cc20 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
97 ids_->RemoveDeadEntries(); in TakeSnapshot()
135 ids_->UpdateHeapObjectsMap(); in StartHeapObjectsTracking()
148 return ids_->PushHeapObjectsStats(stream, timestamp_us); in PushHeapObjectsStats()
152 ids_->StopHeapObjectsTracking(); in StopHeapObjectsTracking()
182 id = ids_->FindMergedNativeEntry(obj); in GetSnapshotObjectId()
189 bool known_object = ids_->MoveObject(from, to, size); in ObjectMoveEvent()
204 ids_->UpdateObjectSize(addr, size); in UpdateObjectSizeEvent()
214 if (ids_->FindEntry(obj.address()) == id) { in FindHeapObjectById()
227 ids_.reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/profiler/
H A Dheap-profiler.cc19 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
95 ids_->RemoveDeadEntries(); in TakeSnapshot()
133 ids_->UpdateHeapObjectsMap(); in StartHeapObjectsTracking()
146 return ids_->PushHeapObjectsStats(stream, timestamp_us); in PushHeapObjectsStats()
150 ids_->StopHeapObjectsTracking(); in StopHeapObjectsTracking()
180 id = ids_->FindMergedNativeEntry(obj); in GetSnapshotObjectId()
187 bool known_object = ids_->MoveObject(from, to, size); in ObjectMoveEvent()
202 ids_->UpdateObjectSize(addr, size); in UpdateObjectSizeEvent()
212 if (ids_->FindEntry(obj.address()) == id) { in FindHeapObjectById()
225 ids_.reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/intrusive/example/
H A Ddoc_stateful_value_traits.cpp35 : ids_(ids), nodes_(node_array) in stateful_value_traits()
40 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
42 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
44 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
46 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
49 pointer ids_; member
/dports/devel/boost-python-libs/boost_1_72_0/libs/intrusive/example/
H A Ddoc_stateful_value_traits.cpp35 : ids_(ids), nodes_(node_array) in stateful_value_traits()
40 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
42 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
44 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
46 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
49 pointer ids_; member
/dports/databases/xtrabackup/boost_1_59_0/libs/intrusive/example/
H A Ddoc_stateful_value_traits.cpp35 : ids_(ids), nodes_(node_array) in stateful_value_traits()
40 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
42 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
44 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
46 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
49 pointer ids_; member
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/intrusive/example/
H A Ddoc_stateful_value_traits.cpp35 : ids_(ids), nodes_(node_array) in stateful_value_traits()
40 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
42 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
44 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
46 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
49 pointer ids_; member
/dports/databases/percona57-server/boost_1_59_0/libs/intrusive/example/
H A Ddoc_stateful_value_traits.cpp35 : ids_(ids), nodes_(node_array) in stateful_value_traits()
40 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
42 { return this->nodes_ + (&value - this->ids_); } in to_node_ptr()
44 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
46 { return this->ids_ + (n - this->nodes_); } in to_value_ptr()
49 pointer ids_; member

12345678910>>...24