HomeSort by relevance Sort by last modified time
    Searched refs:row_pos (Results 1 - 7 of 7) sorted by null

  /external/ceres-solver/internal/ceres/
block_random_access_crs_matrix.cc 91 int row_pos = 0; local
109 rows[row_pos + j + 1] = rows[row_pos + j] + num_cols;
118 const int column_block_begin = rows[row_pos + r] + col_pos;
126 row_pos += row_block_size;
compressed_row_jacobian_writer.cc 78 int row_pos = 0; local
108 rows[row_pos + j + 1] = rows[row_pos + j] + num_derivatives;
123 const int column_block_begin = rows[row_pos + r] + col_pos;
131 row_pos += num_residuals;
compressed_col_sparse_matrix_utils_test.cc 93 int row_pos = 0; local
95 row_pos += row_blocks[i];
106 rows[offset] = row_pos + r;
  /external/chromium_org/remoting/codec/
video_encoder_verbatim.cc 59 int row_pos = 0; // Position in the current row in bytes. local
71 std::min(row_size - row_pos, max_packet_size_ - filled);
72 memcpy(out + filled, in + row_pos, bytes_to_copy);
73 row_pos += bytes_to_copy;
77 if (row_pos == row_size) {
78 row_pos = 0;
85 DCHECK_EQ(row_pos, 0);
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 512 RowIter row_pos = std::lower_bound(first_row, last_row, row, local
514 if (row_pos == last_row) {
517 uint32_t index = found_seq.FirstRowIndex + (row_pos - first_row);
518 if (row_pos->Address > address) {
519 if (row_pos == first_row)
566 RowIter row_pos = std::upper_bound(first_row, last_row, row, local
568 // The 'row_pos' iterator references the first row that is greater than
571 first_row_index = cur_seq.FirstRowIndex + (row_pos - first_row);
572 if (row_pos != first_row)
584 RowIter row_pos = std::upper_bound(first_row, last_row, row local
    [all...]
  /external/chromium_org/chrome/browser/history/
url_index_private_data.cc 292 HistoryInfoMap::iterator row_pos = history_info_map_.find(row_id); local
293 if (row_pos == history_info_map_.end()) {
303 URLRow& row_to_update = row_pos->second.url_row;
341 HistoryInfoMap::iterator row_pos = history_info_map_.find(url_id); local
342 if (row_pos != history_info_map_.end()) {
343 VisitInfoVector* visits = &row_pos->second.visits;
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index.cc 303 HistoryInfoMap::iterator row_pos = history_info_map_.find(row_id); local
304 if (row_pos == history_info_map_.end()) {
312 URLRow& old_row = row_pos->second;
    [all...]

Completed in 316 milliseconds