Home
last modified time | relevance | path

Searched refs:cells_ (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/core/lib/monitoring/
Dcounter.h116 for (const auto& cell : cells_) { in Counter()
139 std::map<LabelArray, CounterCell> cells_ GUARDED_BY(mu_);
176 const auto found_it = cells_.find(label_array); in GetCell()
177 if (found_it != cells_.end()) { in GetCell()
180 return &(cells_ in GetCell()
Dsampler.h157 for (const auto& cell : cells_) { in Sampler()
188 std::map<LabelArray, SamplerCell> cells_ GUARDED_BY(mu_);
225 const auto found_it = cells_.find(label_array); in GetCell()
226 if (found_it != cells_.end()) { in GetCell()
229 return &(cells_ in GetCell()
Dpercentile_sampler.h135 for (const auto& cell : cells_) { in PercentileSampler()
181 std::map<LabelArray, PercentileSamplerCell> cells_ GUARDED_BY(mu_);
208 const auto found_it = cells_.find(label_array); in GetCell()
209 if (found_it != cells_.end()) { in GetCell()
212 return &(cells_ in GetCell()
Dgauge.h168 for (const auto& cell : cells_) { in Gauge()
191 std::map<LabelArray, GaugeCell<ValueType> > cells_ GUARDED_BY(mu_);
245 const auto found_it = cells_.find(label_array); in GetCell()
246 if (found_it != cells_.end()) { in GetCell()
249 return &(cells_ in GetCell()
/external/webrtc/webrtc/system_wrappers/source/
Ddata_log.cc52 CellMap cells_; member in webrtc::Row
107 : cells_(), in Row()
112 for (CellMap::iterator it = cells_.begin(); it != cells_.end();) { in ~Row()
115 cells_.erase(it++); in ~Row()
123 assert(cells_.count(column_name) == 0); in InsertCell()
124 if (cells_.count(column_name) > 0) in InsertCell()
126 cells_[column_name] = value_container; in InsertCell()
133 const Container* container = cells_[column_name]; in ToString()
/external/v8/src/heap/
Dslot-set.h420 uint32_t cells_[kCellsPerBucket]; variable
425 cells_[i] = 0; in Bucket()
429 uint32_t* cells() { return cells_; } in cells()
460 if (cells_[i] != 0) { in IsEmpty()
Dmark-compact.h42 cells_ = bitmap->cells(); in MarkBitCellIterator()
52 return &cells_[cell_index_]; in CurrentCell()
81 return cells_[cell_index_ + 1]; in PeekNext()
88 MarkBit::CellType* cells_; variable