Lines Matching refs:first_row
510 RowIter first_row = Rows.begin() + found_seq.FirstRowIndex; in lookupAddress() local
512 RowIter row_pos = std::lower_bound(first_row, last_row, row, in lookupAddress()
517 uint32_t index = found_seq.FirstRowIndex + (row_pos - first_row); in lookupAddress()
519 if (row_pos == first_row) in lookupAddress()
564 RowIter first_row = Rows.begin() + cur_seq.FirstRowIndex; in lookupAddressRange() local
566 RowIter row_pos = std::upper_bound(first_row, last_row, row, in lookupAddressRange()
571 first_row_index = cur_seq.FirstRowIndex + (row_pos - first_row); in lookupAddressRange()
572 if (row_pos != first_row) in lookupAddressRange()
582 RowIter first_row = Rows.begin() + cur_seq.FirstRowIndex; in lookupAddressRange() local
584 RowIter row_pos = std::upper_bound(first_row, last_row, row, in lookupAddressRange()
588 last_row_index = cur_seq.FirstRowIndex + (row_pos - first_row) - 1; in lookupAddressRange()