Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/java/src/main/native/
Djni_utils.cc57 start_idx_ = 0; in BufferErrorReporter()
66 if (start_idx_ > 0 && start_idx_ < end_idx_) { in Report()
67 buffer_[start_idx_++] = '\n'; in Report()
70 if (start_idx_ < end_idx_) { in Report()
71 size = vsnprintf(buffer_ + start_idx_, end_idx_ - start_idx_, format, args); in Report()
73 start_idx_ += size; in Report()
Djni_utils.h44 int start_idx_ = 0; variable
/external/perfetto/src/trace_processor/containers/
Drow_map.h72 RangeIterator(const RowMap* rm) : rm_(rm), index_(rm->start_idx_) {} in RangeIterator()
80 uint32_t ordinal() const { return index_ - rm_->start_idx_; } in ordinal()
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()
294 return row - start_idx_; in IndexOf()
336 bit_vector_.Resize(start_idx_, false); in Insert()
401 start_idx_ = std::max(start_idx_, other.start_idx_); in Intersect()
402 end_idx_ = std::max(start_idx_, std::min(end_idx_, other.end_idx_)); in Intersect()
548 if (ordinal < out->start_idx_) in FilterIntoScanSelfBv()
[all …]
Drow_map.cc149 start_idx_(start), in RowMap()
162 return RowMap(start_idx_, end_idx_); in Copy()
179 return SelectRangeWithRange(start_idx_, end_idx_, selector.start_idx_, in SelectRowsSlow()
182 return SelectBvWithRange(bit_vector_, selector.start_idx_, in SelectRowsSlow()
185 return SelectIvWithRange(index_vector_, selector.start_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/perfetto/src/trace_processor/
Dtp_metatrace.cc46 uint64_t start = (write_idx_ - start_idx_) < kCapacity in ReadAll()
47 ? start_idx_ in ReadAll()
69 start_idx_ = write_idx_; in ReadAll()
Dtp_metatrace.h131 uint64_t start_idx_ = 0; variable
/external/pdfium/xfa/fde/
Dcfde_texteditengine.cpp30 : engine_(engine), start_idx_(start_idx), added_text_(added_text) {} in InsertOperation()
35 engine_->Insert(start_idx_, added_text_, in Redo()
40 engine_->Delete(start_idx_, added_text_.GetLength(), in Undo()
46 size_t start_idx_; member in __anonf1d23afb0111::InsertOperation
55 : engine_(engine), start_idx_(start_idx), removed_text_(removed_text) {} in DeleteOperation()
60 engine_->Delete(start_idx_, removed_text_.GetLength(), in Redo()
65 engine_->Insert(start_idx_, removed_text_, in Undo()
71 size_t start_idx_; member in __anonf1d23afb0111::DeleteOperation