Searched defs:row_end (Results 1 - 8 of 8) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dincomplete_lq_factorization.cc47 const int row_end = matrix->rows()[row + 1]; local
51 for (int i = row_begin; i < row_end; ++i) {
57 for (int i = row_begin; i < row_end; ++i) {
H A Dcompressed_row_sparse_matrix.cc528 const int row_end = m_rows[r + 1]; local
529 for (int idx1 = row_begin; idx1 < row_end; ++idx1) {
H A Dcovariance_test.cc334 const int row_end = FindOrDie(column_bounds_, block1).second; local
338 Matrix actual(row_end - row_begin, col_end - col_begin);
346 row_end - row_begin,
348 diff_norm /= (row_end - row_begin) * (col_end - col_begin);
352 << "rows: " << row_begin << " " << row_end << " "
356 row_end - row_begin,
H A Dcovariance_impl.cc528 const int row_end = rows[r + 1]; local
529 if (row_end == row_begin) {
547 for (int idx = row_begin; idx < row_end; ++idx) {
717 const int row_end = rows[r + 1]; local
718 if (row_end == row_begin) {
739 for (int idx = row_begin; idx < row_end; ++idx) {
/external/chromium_org/chrome/utility/cloud_print/
H A Dpwg_encoder.cc131 RandomAccessIterator row_end,
145 while (pos != row_end) {
147 RandomAccessIterator end = std::min(pos + kPwgMaxPackedPixels, row_end);
171 // to end, but row_end.
172 if (it != row_end && *it == *(it - 1)) {
248 const uint32* row_end = pos + image.size().width(); local
250 EncodeRow<InputStruct>(pos, row_end, monochrome, output);
253 EncodeRow<InputStruct>(std::reverse_iterator<const uint32*>(row_end),
130 EncodeRow(RandomAccessIterator pos, RandomAccessIterator row_end, bool monochrome, std::string* output) const argument
/external/eigen/bench/
H A Dsparse_setter.cpp360 I row_end = Ap[i+1]; local
364 for(I jj = row_start; jj < row_end; jj++){
370 for(I jj = row_start, n = 0; jj < row_end; jj++, n++){
385 I row_end = 0; local
387 I jj = row_end;
388 row_end = Ap[i+1];
389 while( jj < row_end ){
393 while( jj < row_end && Aj[jj] == j ){
/external/libpng/
H A Dpngwrite.c1735 png_uint_16p row_end; local
1759 * above to 'row' means that row_end can actually be beyond the end of the
1762 row_end = output_row + image->width * (channels+1);
1769 while (out_ptr < row_end)
1897 png_bytep row_end; local
1912 /* Use row_end in place of a loop counter: */
1913 row_end = output_row + image->width * (channels+1);
1920 while (out_ptr < row_end)
1941 } /* while out_ptr < row_end */
1951 /* No alpha channel, so the row_end reall
1954 png_bytep row_end = output_row + image->width * channels; local
[all...]
/external/pdfium/core/src/fxge/dib/
H A Dfx_dib_transform.cpp80 int row_end = bXFlip ? m_Height - dest_clip.left : dest_clip.right; local
85 for (int row = row_start; row < row_end; row ++) {
106 for (int row = row_start; row < row_end; row ++) {
140 for (int row = row_start; row < row_end; row ++) {

Completed in 1443 milliseconds