HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 776 - 800 of 1524) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/zlib/
crc32.c 378 unsigned long row; local
388 row = 1;
390 odd[n] = row;
391 row <<= 1;
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 78 inline Scalar coeff(Index row, Index col) const
80 if( (int(Direction)==Vertical && row==m_matrix.rows())
83 return m_matrix.coeff(row, col);
135 * \returns a matrix expression of homogeneous column (or row) vectors
295 dst += m_rhs.row(m_rhs.rows()-1).colwise()
  /external/eigen/doc/
tutorial.cpp 21 m3.row(2) = m4.block<1,3>(2,0);
  /external/eigen/test/
product_notemporary.cpp 82 VERIFY_EVALUATION_COUNT( rm3.col(c0).noalias() = (s1 * m1.adjoint()).template triangularView<UnitUpper>() * (s2*m2.row(c0)).adjoint(), 1);
92 VERIFY_EVALUATION_COUNT( m3.col(c0).noalias() = (s1 * m1).adjoint().template selfadjointView<Lower>() * (-m2.row(c0)*s3).adjoint(), 1);
93 VERIFY_EVALUATION_COUNT( m3.col(c0).noalias() -= (s1 * m1).adjoint().template selfadjointView<Upper>() * (-m2.row(c0)*s3).adjoint(), 1);
122 VERIFY_EVALUATION_COUNT( cvres.noalias() -= m1 * m2.row(0).transpose(), 0 );
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 74 jac.row(i) = av[i].derivatives();
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableTable.java 102 @Override public ImmutableMap<Object, Object> row(Object rowKey) { method in class:EmptyImmutableTable
Table.java 30 * A collection that associates an ordered pair of keys, called a row key and a
32 * fraction of row key / column key pairs possessing a corresponding value.
34 * <p>The mappings corresponding to a given row key may be viewed as a {@link
36 * column with a row key / value map. Note that, in some implementations, data
38 * than data access by row key.
49 * @param <R> the type of the table row keys
63 * row and column keys.
65 * @param rowKey key of row to search for
72 * row key.
74 * @param rowKey key of row to search fo
176 Map<C, V> row(R rowKey); method in interface:Table
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
EmptyImmutableTableTest.java 97 assertEquals(ImmutableMap.of(), INSTANCE.row('a'));
ForwardingTableTest.java 121 forward.row("String");
122 assertEquals("[row(Object)]", getCalls());
  /external/libpng/contrib/pngminus/
png2pnm.c 204 int row, col; local
374 for (row = 0; row < height; row++)
420 } /* end for row */
pnm2png.c 207 int row, col; local
341 for (row = 0; row < height; row++)
378 } /* end for row */
411 /* if needed we will allocate memory for an new array of row-pointers */
  /external/libpng/
pngread.c 583 "Ignoring extra png_read_update_info() call; row buffer not reallocated");
608 png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row)
619 png_debug2(1, "in png_read_row (row %lu, pass %d)",
659 /* If interlaced and we do not need a new row, combine row and return */
736 png_error(png_ptr, "Invalid attempt to read row data");
837 if (row != NULL)
838 png_combine_row(png_ptr, row,
844 if (row != NULL)
845 png_combine_row(png_ptr, row, 0xff)
1541 int row; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_debugmodes.c 70 fprintf(mvs, "%4d:%4d ", mi_8x8[mi_index]->mbmi.mv[0].as_mv.row,
vp9_entropymv.h 99 if (mv->row == 0) {
  /external/libyuv/files/source/
convert_from.cc 20 #include "libyuv/row.h"
636 if (width * 16 / 6 > kMaxStride) { // Row buffer of V210 is required.
649 SIMD_ALIGNED(uint8 row[kMaxStride]);
665 I42xToUYVYRow(src_y, src_u, src_v, row, width);
666 UYVYToV210Row(row, dst_frame, width);
667 I42xToUYVYRow(src_y + src_stride_y, src_u, src_v, row, width);
668 UYVYToV210Row(row, dst_frame + dst_stride_frame, width);
676 I42xToUYVYRow(src_y, src_u, src_v, row, width);
677 UYVYToV210Row(row, dst_frame, width);
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texture.c 629 GLuint row; local
630 for (row = 0; row < height; row++) {
632 height, format, type, row, 0);
640 GLuint row; local
650 for (row = 0; row < height; row++) {
653 height, format, type, row, 0)
758 GLint row, yStep; local
    [all...]
  /external/webrtc/src/system_wrappers/source/
data_log_unittest.cc 48 int row = 0; local
65 EXPECT_EQ(str, it->second.values[row]);
66 if (str != it->second.values[row])
69 ++row;
92 // header or a cell of a row.
  /external/zlib/src/
crc32.c 361 unsigned long row; local
371 row = 1;
373 odd[n] = row;
374 row <<= 1;
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraTestUtils.java 199 for (int row = 0; row < h; row++) {
202 // Special case: optimized read of the entire row
205 // Advance buffer the remainder of the row stride
  /external/ceres-solver/internal/ceres/
incomplete_lq_factorization.cc 44 // Normalize a row and return it's norm.
45 inline double NormalizeRow(const int row, CompressedRowSparseMatrix* matrix) {
46 const int row_begin = matrix->rows()[row];
47 const int row_end = matrix->rows()[row + 1];
108 // In the row vector dense_row(0:num_cols), drop values smaller than
110 // choose at most level_of_fill values and then add the resulting row
  /external/chromium/chrome/browser/history/
in_memory_url_index.h 146 void UpdateURL(URLID row_id, const URLRow& row);
286 bool IndexRow(const URLRow& row);
328 // if all of the terms in |terms_vector| occur in |row| and, if so,
338 const URLRow& row,
starred_url_database_unittest.cc 26 URLRow row(url);
27 row.set_visit_count(1);
28 EXPECT_TRUE(AddURL(row));
url_database_unittest.cc 217 URLRow row; local
219 for (; history_enum.GetNextURL(&row); ++row_count)
220 EXPECT_EQ(1U, good_urls.count(row.url().spec()));
233 // Insert a row with favicon
248 // Insert another row without favicon
257 // Insert a row with favicon
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.h 58 // Returns the model data for a given |row| and |col_id|.
59 std::string GetModelText(int row, int col_id);
61 // Retrieves the resource icon from the model for |row|.
62 GdkPixbuf* GetModelIcon(int row);
64 // Sets the treeview row data. |row| is an index into the model and |iter|
66 void SetRowDataFromModel(int row, GtkTreeIter* iter);
94 // row-activated handler that foregrounds a process on activation (e.g.,
  /external/chromium_org/chrome/browser/ui/gtk/
task_manager_gtk.h 56 // Returns the model data for a given |row| and |col_id|.
57 std::string GetModelText(int row, int col_id);
59 // Retrieves the resource icon from the model for |row|.
60 GdkPixbuf* GetModelIcon(int row);
62 // Sets the treeview row data. |row| is an index into the model and |iter|
64 void SetRowDataFromModel(int row, GtkTreeIter* iter);
92 // row-activated handler that foregrounds a process on activation (e.g.,

Completed in 446 milliseconds

<<31323334353637383940>>