Searched refs:row (Results 201 - 225 of 1120) sorted by relevance

1234567891011>>

/external/eigen/test/
H A Dvectorwiseop.cpp48 VERIFY_IS_APPROX(m2.row(r), m1.row(r) + rowvec);
66 VERIFY_IS_APPROX(m2.row(r), m1.row(r) - rowvec);
84 VERIFY_IS_APPROX(m2.row(r), m1.row(r) * rowvec);
102 VERIFY_IS_APPROX(m2.row(r), m1.row(r) / rowvec);
122 VERIFY( (mb.row(r) == (m1.real().row(
[all...]
H A Ddeterminant.cpp36 m2.row(i).swap(m2.row(j));
44 m2.row(i) += x*m2.row(j);
47 m2.row(i) *= x;
H A Dumeyama.cpp51 for (int row = 0; row < size; ++row)
53 typename MatrixType::RowXpr rowVec = Q.row(row);
54 for (int prevRow = 0; prevRow < row; ++prevRow)
56 typename MatrixType::RowXpr prevRowVec = Q.row(prevRow);
59 Q.row(row) = rowVec.normalized();
110 src.row(di
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h91 /** \returns the coefficient value at given position \a row, \a col
94 inline Scalar coeff(Index row, Index col) const argument
96 const Index outer = IsRowMajor ? row : col;
97 const Index inner = IsRowMajor ? col : row;
101 /** \returns a reference to the coefficient value at given position \a row, \a col
105 inline Scalar& coeffRef(Index row, Index col) argument
107 const Index outer = IsRowMajor ? row : col;
108 const Index inner = IsRowMajor ? col : row;
147 /** \returns a reference to the non zero coefficient at position \a row, \a col assuming that:
152 inline Scalar& insertBack(Index row, Inde argument
381 coeff(Index row, Index col) const argument
[all...]
/external/libpng/
H A Dpngwtran.c2 /* pngwtran.c - transforms the data in a row for PNG writers
25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) argument
41 sp = row;
42 dp = row;
79 sp = row;
80 dp = row;
119 sp = row;
120 dp = row;
165 * true number of bits in bit_depth. The row should be packed
166 * according to row_info->bit_depth. Thus, if you had a row o
172 png_do_shift(png_row_infop row_info, png_bytep row, png_const_color_8p bit_depth) argument
311 png_do_write_swap_alpha(png_row_infop row_info, png_bytep row) argument
405 png_do_write_invert_alpha(png_row_infop row_info, png_bytep row) argument
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.c29 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
33 const int subpel_y = mv.row & SUBPEL_MASK;
35 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
49 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
53 const int subpel_y = mv.row & SUBPEL_MASK;
55 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
68 mi->bmi[0].as_mv[idx].as_mv.row + mi->bmi[1].as_mv[idx].as_mv.row
[all...]
H A Dvp9_mvref_common.h27 int row; member in struct:position
239 mv.as_mv.row *= -1;
280 return !(mi_row + mi_pos->row < 0 ||
282 mi_row + mi_pos->row >= mi_rows ||
297 if (mv->row & 1) mv->row += (mv->row > 0 ? -1 : 1);
/external/pdfium/third_party/libpng16/
H A Dpngwtran.c2 /* pngwtran.c - transforms the data in a row for PNG writers
25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) argument
41 sp = row;
42 dp = row;
79 sp = row;
80 dp = row;
119 sp = row;
120 dp = row;
165 * true number of bits in bit_depth. The row should be packed
166 * according to row_info->bit_depth. Thus, if you had a row o
172 png_do_shift(png_row_infop row_info, png_bytep row, png_const_color_8p bit_depth) argument
311 png_do_write_swap_alpha(png_row_infop row_info, png_bytep row) argument
405 png_do_write_invert_alpha(png_row_infop row_info, png_bytep row) argument
[all...]
/external/skia/third_party/libpng/
H A Dpngwtran.c2 /* pngwtran.c - transforms the data in a row for PNG writers
25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) argument
41 sp = row;
42 dp = row;
79 sp = row;
80 dp = row;
119 sp = row;
120 dp = row;
165 * true number of bits in bit_depth. The row should be packed
166 * according to row_info->bit_depth. Thus, if you had a row o
172 png_do_shift(png_row_infop row_info, png_bytep row, png_const_color_8p bit_depth) argument
311 png_do_write_swap_alpha(png_row_infop row_info, png_bytep row) argument
405 png_do_write_invert_alpha(png_row_infop row_info, png_bytep row) argument
[all...]
/external/autotest/tko/
H A Dfrontend.py48 for row in sql_rows:
50 (x,y, status, count, job_tags, reasons) = row
52 (x,y, status, count, job_tags) = row
143 groupnames = sorted([row[0] for row in rows])
171 for row in db.select(','.join(fields), 'tko_machines', where):
172 machines.append(klass(db, *row))
189 return [klass(db, *row) for row in rows]
207 for row i
[all...]
/external/eigen/Eigen/src/Core/
H A DDenseCoeffsBase.h88 * parameters \a row and \a col are in range.
96 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const argument
98 eigen_internal_assert(row >= 0 && row < rows()
100 return internal::evaluator<Derived>(derived()).coeff(row,col);
110 /** \returns the coefficient at given the given row and column.
115 EIGEN_STRONG_INLINE CoeffReturnType operator()(Index row, Index col) const argument
117 eigen_assert(row >= 0 && row < rows()
119 return coeff(row, co
231 packet(Index row, Index col) const argument
340 coeffRef(Index row, Index col) argument
362 operator ()(Index row, Index col) argument
[all...]
/external/pdfium/core/fxge/ge/
H A Dcfx_facecache.cpp45 int col, row, temp; local
48 for (row = 0; row < nHeight; row++) {
49 uint8_t* pRow = pDataIn + row * nSrcRowBytes;
59 for (row = 0; row < nHeight; row++) {
60 FXSYS_memcpy(pDataOut + row * nDstRowBytes, pDataIn + row * nSrcRowByte
[all...]
/external/skia/src/gpu/
H A DGrTextureStripAtlas.h50 * @param data Bitmap data to copy into the row
51 * @return The row index we inserted into, or -1 if we failed to find an open row. The caller
52 * is responsible for calling unlockRow() with this row index when it's done with it.
55 void unlockRow(int row);
58 * These functions help turn an integer row index in [0, 1, 2, ... numRows] into a scalar y
69 * Where yOffset, returned by getYOffset(), is the offset to the start of the row within the
71 * one texel row.
73 SkScalar getYOffset(int row) const { return SkIntToScalar(row) / fNumRow
[all...]
/external/toybox/toys/pending/
H A Dmore.c77 unsigned rows = 24, cols = 80, row = 0, col = 0; local
105 st.st_size = show_prompt = col = row = 0;
112 row += 3;
125 col = row = show_prompt = 0;
136 if (++row >= rows || input_key == '\n') show_prompt = 1;
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldMatrix.java29 * returns the element in the first row, first column of the matrix.</p>
44 * row and column dimensions.
49 * @throws IllegalArgumentException if row or column dimension is not positive
125 * @param startRow Initial row index
126 * @param endRow Final row index (inclusive)
140 * @param selectedRows Array of row indices.
144 * @exception MatrixIndexException if row or column selections are not valid
153 * @param startRow Initial row index
154 * @param endRow Final row index (inclusive)
170 * @param selectedRows Array of row indice
207 setSubMatrix(T[][] subMatrix, int row, int column) argument
218 getRowMatrix(int row) argument
231 setRowMatrix(int row, FieldMatrix<T> matrix) argument
266 getRowVector(int row) argument
279 setRowVector(int row, FieldVector<T> vector) argument
315 getRow(int row) argument
327 setRow(int row, T[] array) argument
370 getEntry(int row, int column) argument
388 setEntry(int row, int column, T value) argument
406 addToEntry(int row, int column, T increment) argument
424 multiplyEntry(int row, int column, T factor) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php75 $row = mysql_fetch_row($count); variable
76 $rows = $row[0];
88 while ($row = mysql_fetch_assoc($result))
90 $file = basename($row["cvsname"], ",v");
91 $row["cvsname"] = preg_replace("#^/cvsroot/[^\/]+/(.+),v$#", "$1", $row["cvsname"]);
93 print "<div>{$row['date']}</div>";
94 print ($row["bugid"] ? "[<a href=\"https://bugs.eclipse.org/bugs/show_bug.cgi?id={$row['bugid']}\">{$row['bugi
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseColEtree.h57 * \param firstRowElt The column index of the first element in each row
72 //Compute first nonzero column in each row
83 Index row = it.row(); local
84 firstRowElt(row) = (std::min)(firstRowElt(row), col);
89 Thus each row clique in A'*A is replaced by a star
109 StorageIndex row = firstRowElt(i); local
110 if (row >= col) continue;
111 rset = internal::etree_find(row, p
[all...]
/external/libjpeg-turbo/
H A Drdcolmap.c175 unsigned int w, h, maxval, row, col; local
195 for (row = 0; row < h; row++) {
206 for (row = 0; row < h; row++) {
/external/mesa3d/src/mesa/swrast/
H A Ds_drawpix.c267 GLint row; local
276 for (row = 0; row < height; row++) {
280 row, 0);
325 GLint row; local
326 for (row = 0; row < height; row++) {
329 GL_DEPTH_COMPONENT, type, row,
346 GLint row; local
373 GLint row; local
463 GLint row; local
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dreconinter.c64 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride +
67 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) {
68 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7,
86 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride +
89 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) {
91 d->bmi.mv.as_mv.row & 7, dst, dst_stride);
101 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride +
104 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) {
106 d->bmi.mv.as_mv.row & 7, dst, dst_stride);
117 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >>
[all...]
/external/autotest/frontend/client/src/autotest/tko/
H A DSeriesSelector.java47 private int row; field in class:SeriesSelector.Series
50 this.row = aRow;
54 deleteSeries(row);
243 int row = table.getRowCount() - 1;
244 Series nextSeries = new Series(row);
247 table.insertRow(row);
248 table.setWidget(row, 0, nextSeries);
249 table.getFlexCellFormatter().setColSpan(row, 0, 2);
250 table.getFlexCellFormatter().setStylePrimaryName(row, 0, "box");
254 private void deleteSeries(int row) { argument
[all...]
/external/libhevc/common/x86/
H A Dihevc_chroma_intra_pred_filters_sse42_intr.c130 WORD32 row, col; local
160 // pu1_ref[2*(two_nt - 1 - row)]
182 for(row = 0; row < nt; row++)
187 const_temp2_4x32b = _mm_set_epi16(pu1_ref[2 * (two_nt - 1 - row) + 1], pu1_ref[2 * (two_nt - 1 - row)], pu1_ref[2 * (two_nt - 1 - row) + 1],
188 pu1_ref[2 * (two_nt - 1 - row)], pu1_ref[2 * (two_nt - 1 - row)
286 WORD32 row; local
[all...]
/external/libhevc/common/arm/
H A Dihevc_intra_pred_filters_neon_intr.c675 /* In width multiple of 4 case the row also has been unrolled by 2 and store has been taken care*/
677 WORD32 row, col = 0; local
726 for(row = 0; row < nt; row++)
728 pu1_ref_two_nt_1_row = pu1_ref[two_nt - 1 - row];
731 const_nt_1_row = nt - 1 - row;
734 const_row_1 = row + 1;
790 for(row = 0; row < n
907 WORD32 row = 0, col = 0, col_count; local
1194 WORD32 row, col; local
1425 WORD32 row, col; local
1729 WORD32 row, col; local
1893 WORD32 row, col, idx; local
2106 WORD32 row, col; local
2318 WORD32 row, col, k; local
2580 WORD32 row, col, k; local
2800 WORD32 row, col; local
[all...]
/external/libpng/contrib/gregbook/
H A Drpng2-x.c16 - fix expose/redraw code: don't draw entire row if only part exposed
184 static void rpng2_x_display_row (ulg row);
506 "\t\t row (for demo purposes)\n"
1088 ulg i, row; local
1127 for (row = 0; row < rpng2_info.height; ++row) {
1128 yidx = (int)(row % bgscale);
1129 even_odd_vert = (int)((row / bgscale) & 1);
1145 dest = (char *)bg_data + row*bg_rowbyte
1372 rpng2_x_display_row(ulg row) argument
1621 ulg i, row, lastrow = 0; local
1874 ulg i, row; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DRelativeDateTimeFormatterTest.java91 for (Object[] row : data) {
93 ((Double) row[0]).doubleValue(), (Direction) row[1], (RelativeUnit) row[2]);
94 assertEquals("Relative date with quantity", row[3], actual);
166 for (Object[] row : data) {
168 ((Double) row[0]).doubleValue(), (Direction) row[1], (RelativeUnit) row[2]);
169 assertEquals("Relative date with quantity", row[
[all...]

Completed in 753 milliseconds

1234567891011>>