HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 376 - 400 of 1550) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vs_surface_state.c 89 float *row = (float *)brw->vs.const_bo->virtual + i * 4; local
91 i, row[0], row[1], row[2], row[3]);
  /external/chromium_org/ui/views/examples/
table_example.cc 110 string16 TableExample::GetText(int row, int column_id) {
111 if (row == -1)
121 return ASCIIToUTF16(cells[row % 5][column_id]);
124 gfx::ImageSkia TableExample::GetIcon(int row) {
125 SkBitmap row_icon = row % 2 ? icon1_ : icon2_;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
Scaling.h 20 * NOTE It is assumed that the matrix does not have empty row or column,
88 { // Iterate until the infinite norm of each row and column is approximately 1
89 // Get the maximum value in each row and column
95 if ( Dr(it.row()) < abs(it.value()) )
96 Dr(it.row()) = abs(it.value());
119 it.valueRef() = it.value()/( Dr(it.row()) * Dc(it.col()) );
120 // Accumulate the norms of the row and column vectors
121 if ( DrRes(it.row()) < abs(it.value()) )
122 DrRes(it.row()) = abs(it.value());
  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 112 int row, col, active_end; local
128 for (row = 0; row < mb_rows; ++row)
134 /* Find the first active macroblock in this row. */
141 /* No more active macroblock in this row. */
145 /* Find the end of active region in this row. */
156 row << 4,
  /external/libvpx/libvpx/vp9/common/
vp9_scale.c 30 scaled_y(mv->row, scale->sfc) + scale->y_offset_q4,
38 mv->row,
45 int row, int col) {
47 scale->y_offset_q4 = scaled_y(row << SUBPEL_BITS, scale->sfc) & SUBPEL_MASK;
51 int row, int col) {
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 92 int row, col, active_end; local
111 for (row = 0; row < mb_rows; ++row) {
115 // Find the first active macroblock in this row.
121 // No more active macroblock in this row.
125 // Find the end of active region in this row.
135 row << 4,
  /external/mesa3d/src/glx/
singlepix.c 39 GLvoid * row, GLvoid * column, GLvoid * span)
82 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row);
112 GLenum type, GLvoid * row,
123 p(target, format, type, row, column, span);
179 __glEmptyImage(gc, 1, width, 1, 1, format, type, buf, row);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_surface_state.c 89 float *row = (float *)brw->vs.const_bo->virtual + i * 4; local
91 i, row[0], row[1], row[2], row[3]);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ScrollingThroughListOfFocusablesTest.java 83 // move to next row
146 assertTrue("bottom of last row of last item should be at " +
165 // (make sure we are at last row of second item)
179 // move up to next row
186 // now we are at top row, should have caused scrolling, and fading edge...
194 assertEquals("top of selected row should be just below top vertical fading edge",
211 * @param row
215 int row) {
216 assertEquals("expecting selected row",
217 row, internalFocused.getSelectedRow())
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
TimeZoneNames.java 122 String[] row = zoneStrings[index]; local
124 return (style == TimeZone.LONG) ? row[LONG_NAME_DST] : row[SHORT_NAME_DST];
126 return (style == TimeZone.LONG) ? row[LONG_NAME] : row[SHORT_NAME];
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 146 inline Scalar coeff(Index row, Index col) const {
147 const Index outer = IsRowMajor ? row : col;
148 const Index inner = IsRowMajor ? col : row;
195 inline Scalar& coeffRef(Index row, Index col) {
196 const Index outer = IsRowMajor ? row : col;
197 const Index inner = IsRowMajor ? col : row;
206 if (col > row) //upper matrix
212 if (col < row) //lower matrix
240 inline Scalar coeffLower(Index row, Index col) const {
241 const Index outer = IsRowMajor ? row : col
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 135 int row; field in class:LockPatternView.Cell
149 * @param row The row of the cell.
152 private Cell(int row, int column) {
153 checkRange(row, column);
154 this.row = row;
159 return row;
167 * @param row The row of the cell
    [all...]
  /external/ceres-solver/internal/ceres/
schur_complement_solver.cc 200 // Add to the chunk until the first block in the row is
201 // different than the one in the first row for the chunk.
203 const CompressedRow& row = bs->rows[r]; local
204 if (row.cells.front().block_id != e_block_id) {
208 // Iterate over the blocks in the row, ignoring the first
210 for (int c = 1; c < row.cells.size(); ++c) {
211 const Cell& cell = row.cells[c];
228 const CompressedRow& row = bs->rows[r]; local
229 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
230 for (int i = 0; i < row.cells.size(); ++i)
    [all...]
  /external/chromium/base/metrics/
stats_table.cc 44 // If the first character of the counter_name is '\0', then that row is
133 int* row(int counter_id) const { function in class:base::StatsTable::Private
379 int* row = impl_->row(counter_id); local
380 return &(row[slot_id-1]);
399 int* row = impl_->row(index); local
402 rv += row[slot_id];
415 int row = FindCounter(name); local
416 if (!row)
    [all...]
  /external/chromium/chrome/browser/ui/views/
hung_renderer_view.cc 52 virtual string16 GetText(int row, int column_id);
53 virtual SkBitmap GetIcon(int row);
94 string16 HungPagesTableModel::GetText(int row, int column_id) {
95 DCHECK(row >= 0 && row < RowCount());
96 string16 title = tab_contentses_[row]->GetTitle();
106 SkBitmap HungPagesTableModel::GetIcon(int row) {
107 DCHECK(row >= 0 && row < RowCount());
108 return tab_contentses_.at(row)->GetFavicon()
    [all...]
  /external/eigen/Eigen/src/Core/
Transpose.h 120 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
123 return derived().nestedExpression().const_cast_derived().coeffRef(col, row);
132 inline const Scalar& coeffRef(Index row, Index col) const
134 return derived().nestedExpression().coeffRef(col, row);
142 inline CoeffReturnType coeff(Index row, Index col) const
144 return derived().nestedExpression().coeff(col, row);
153 inline const PacketScalar packet(Index row, Index col) const
155 return derived().nestedExpression().template packet<LoadMode>(col, row);
159 inline void writePacket(Index row, Index col, const PacketScalar& x)
161 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(col, row, x)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
Cinematic.java 351 Map<String, Object> row = data.get(type); local
352 if (row == null) {
353 row = new HashMap<String, Object>();
355 row.put(name, object);
360 Map<String, Object> row = eventsData.get(type); local
361 if (row != null) {
362 return row.get(name);
370 Map<String, Object> row = eventsData.get(type); local
371 if (row != null) {
372 row.remove(name)
    [all...]
  /external/jpeg/
jcprepct.c 33 * For the simple (no-context-row) case, we just need to buffer one
34 * row group's worth of pixels for the downsampling step. At the bottom of
35 * the image, we pad to a full row group by replicating the last pixel row.
36 * The downsampler's last output row is then replicated if needed to pad
37 * out to a full iMCU row.
39 * When providing context rows, we must buffer three row groups' worth of
40 * pixels. Three row groups are physically allocated, but the row pointer
41 * arrays are made five row groups high, with the extra pointers above an
109 register int row; local
219 int row; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jcprepct.c 33 * For the simple (no-context-row) case, we just need to buffer one
34 * row group's worth of pixels for the downsampling step. At the bottom of
35 * the image, we pad to a full row group by replicating the last pixel row.
36 * The downsampler's last output row is then replicated if needed to pad
37 * out to a full iMCU row.
39 * When providing context rows, we must buffer three row groups' worth of
40 * pixels. Three row groups are physically allocated, but the row pointer
41 * arrays are made five row groups high, with the extra pointers above an
109 register int row; local
219 int row; local
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldFunctionContextTest.java 51 String row[] = (String[]) res.rows.elementAt(0); local
52 String val = row[0];
64 String row[] = (String[]) res.rows.elementAt(0); local
65 String val = row[0];
77 String row[] = (String[]) res.rows.elementAt(0); local
78 String val = row[0];
122 String row[] = (String[]) res.rows.elementAt(0); local
123 String val = row[0];
160 String row[] = (String[]) res.rows.elementAt(0); local
161 String val = row[0]
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
ca.c 1721 OPENSSL_STRING row[DB_NUMBER]; local
2414 char *row[DB_NUMBER],**rrow,**irow; local
2531 char *row[DB_NUMBER],**rrow; local
    [all...]
  /external/openssl/apps/
ca.c 1721 OPENSSL_STRING row[DB_NUMBER]; local
2414 char *row[DB_NUMBER],**rrow,**irow; local
2531 char *row[DB_NUMBER],**rrow; local
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 145 static void rpng2_win_display_row(ulg row);
449 " -nommx*\tdisable optimized MMX routines for decoding row filters,\n"
818 ulg i, row; local
853 for (row = 0; row < rpng2_info.height; ++row) {
854 yidx = row % bgscale;
855 even_odd_vert = (row / bgscale) & 1;
    [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngpriv.h     [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBarLayout.java 46 /** Alignment parameters that determine where in the main row an item will float. */
50 /** Whether the View is meant for the main row. */
56 /** When on the main row, indicates whether the control floats on the left or the right. */
101 * The last entry is the number of child Views, allowing calculation of the size of each row by
263 for (int row = 1; row < mIndicesOfRows.size() - 1; row++) {
264 rowTop = layoutRow(row, rowTop, rowWidth);
269 * Lays out the controls in the main row.
277 * of the controls in the main row
    [all...]

Completed in 688 milliseconds

<<11121314151617181920>>