Home
last modified time | relevance | path

Searched refs:end_idx_ (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/src/trace_processor/containers/
Drow_map.h76 operator bool() const { return index_ < rm_->end_idx_; }
245 return end_idx_ - start_idx_; in size()
275 return row >= start_idx_ && row < end_idx_; in Contains()
292 if (row < start_idx_ || row >= end_idx_) in IndexOf()
329 if (row == end_idx_) { in Insert()
332 end_idx_++; in Insert()
337 bit_vector_.Resize(end_idx_, true); in Insert()
402 end_idx_ = std::max(start_idx_, std::min(end_idx_, other.end_idx_)); in Intersect()
545 BitVector bv(out->end_idx_, false); in FilterIntoScanSelfBv()
550 if (ordinal >= out->end_idx_) in FilterIntoScanSelfBv()
[all …]
Drow_map.cc150 end_idx_(end), in RowMap()
162 return RowMap(start_idx_, end_idx_); in Copy()
179 return SelectRangeWithRange(start_idx_, end_idx_, selector.start_idx_, in SelectRowsSlow()
180 selector.end_idx_); in SelectRowsSlow()
183 selector.end_idx_); in SelectRowsSlow()
186 selector.end_idx_); in SelectRowsSlow()
192 return SelectRangeWithBv(start_idx_, end_idx_, selector.bit_vector_); in SelectRowsSlow()
202 return SelectRangeWithIv(start_idx_, end_idx_, in SelectRowsSlow()
/external/tensorflow/tensorflow/lite/java/src/main/native/
Djni_utils.cc58 end_idx_ = limit - 1; in BufferErrorReporter()
66 if (start_idx_ > 0 && start_idx_ < end_idx_) { in Report()
70 if (start_idx_ < end_idx_) { in Report()
71 size = vsnprintf(buffer_ + start_idx_, end_idx_ - start_idx_, format, args); in Report()
Djni_utils.h45 int end_idx_ = 0; variable