HomeSort by relevance Sort by last modified time
    Searched full:row (Results 126 - 150 of 4359) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libvpx/libvpx/vp8/common/arm/armv6/
vp8_variance_halfpixvar16x16_hv_armv6.asm 38 add r9, r0, r1 ; pointer to pixels on the next row
40 ldr r4, [r0, #0] ; load source pixels a, row N
41 ldr r6, [r0, #1] ; load source pixels b, row N
42 ldr r5, [r9, #0] ; load source pixels c, row N+1
43 ldr r7, [r9, #1] ; load source pixels d, row N+1
45 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N
49 ; y = (c + d + 1) >> 1, interpolate pixels horizontally on row N+1
80 ldr r4, [r0, #4] ; load source pixels a, row N
81 ldr r6, [r0, #5] ; load source pixels b, row N
82 ldr r5, [r9, #4] ; load source pixels c, row N+
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
AggregatorRecordStorage.java 34 * The data is stored in the sqlite database row by row without primary key, all
40 * HashMap<String, String> row = new HashMap<String, String>();
41 * row.put("clusterid", "home");
42 * row.put("long", "110.203");
43 * row.put("lat", "-13.787");
44 * db.addData(row);
45 * row.put("clusterid", "office");
46 * row.put("long", "1.203");
47 * row.put("lat", "33.787")
    [all...]
  /external/chromium_org/chrome/browser/history/android/
sql_handler.h 46 // value stored in |row|. Return true if the update succeeds.
47 virtual bool Update(const HistoryAndBookmarkRow& row,
50 // Inserts the given |row|, return true on success; The id of insertted row
51 // should be set in |row|, so other implemnetations could use it to complete
53 virtual bool Insert(HistoryAndBookmarkRow* row) = 0;
59 // Return true if |row| has a value explicitly set for at least one of the
60 // columns in |row| that are known to this class.
61 bool HasColumnIn(const HistoryAndBookmarkRow& row);
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macmouse.c 56 int row, bytes; local
74 for ( row=0; row<h; ++row ) {
75 SDL_memcpy(&cursor->curs.data[row], data, bytes);
78 for ( row=0; row<h; ++row ) {
79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 35 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * Weight) >> 7;
42 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] +
53 return ((mvsadcost[0][(mv->as_mv.row - ref->as_mv.row)] +
68 x->ss[search_site_count].mv.row = 0;
77 x->ss[search_site_count].mv.row = -Len;
83 x->ss[search_site_count].mv.row = Len;
89 x->ss[search_site_count].mv.row = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.cpp 60 // To match Firefox, the row indices work like this:
63 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
68 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
69 if (row == this)
71 if (row->hasTagName(trTag))
79 for (Node* row = section->firstChild(); row; row = row->nextSibling())
    [all...]
  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 61 inline CoeffReturnType coeff(Index row, Index col) const
63 return m_expression.coeff(row, col);
66 inline Scalar& coeffRef(Index row, Index col)
68 return m_expression.const_cast_derived().coeffRef(row, col);
71 inline const Scalar& coeffRef(Index row, Index col) const
73 return m_expression.const_cast_derived().coeffRef(row, col);
92 inline const PacketScalar packet(Index row, Index col) const
94 return m_expression.template packet<LoadMode>(row, col);
98 inline void writePacket(Index row, Index col, const PacketScalar& x)
100 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x)
    [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...]
  /external/chromium_org/ui/gfx/
transform_util.cc 368 SkMScalar row[3][3]; local
371 row[i][j] = matrix.get(j, i);
373 // Compute X scale factor and normalize first row.
374 decomp->scale[0] = Length3(row[0]);
376 Scale3(row[0], 1.0 / decomp->scale[0]);
378 // Compute XY shear factor and make 2nd row orthogonal to 1st.
379 decomp->skew[0] = Dot<3>(row[0], row[1]);
380 Combine<3>(row[1], row[1], row[0], 1.0, -decomp->skew[0])
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
screen_account_picker.js 44 login.PodRow.decorate($('pod-row'));
54 $('pod-row').onWindowResize();
72 // sign out requests generated in a row.
73 if ($('pod-row').lockedPod && !$('sign-out-user-button').disabled) {
84 $('pod-row').handleAfterShow();
95 var podRow = $('pod-row');
119 // $('pod-row').startInitAnimation();
134 $('pod-row').handleHide();
143 var activatedPod = $('pod-row').activatedPod;
145 $('bubble').showContentForElement($('pod-row'),
    [all...]
  /external/eigen/test/
nomalloc.cpp 54 m2.col(0).noalias() -= m1 * m1.row(0).adjoint();
55 m2.col(0).noalias() -= m1.adjoint() * m1.row(0).adjoint();
57 m2.row(0).noalias() = m1.row(0) * m1;
58 m2.row(0).noalias() -= m1.row(0) * m1.adjoint();
59 m2.row(0).noalias() -= m1.col(0).adjoint() * m1;
60 m2.row(0).noalias() -= m1.col(0).adjoint() * m1.adjoint();
65 m2.col(0).noalias() -= m1.template triangularView<Upper>() * m1.row(0).adjoint();
66 m2.col(0).noalias() -= m1.adjoint().template triangularView<Upper>() * m1.row(0).adjoint()
    [all...]
  /frameworks/base/libs/androidfw/
CursorWindow.cpp 166 // Fill in the row slot
177 LOG_WINDOW("The row failed, so back out the new row accounting "
184 LOG_WINDOW("Allocated row %u, rowSlot is at offset %u, fieldDir is %d bytes at offset %u\n",
223 CursorWindow::RowSlot* CursorWindow::getRowSlot(uint32_t row) {
224 uint32_t chunkPos = row;
257 CursorWindow::FieldSlot* CursorWindow::getFieldSlot(uint32_t row, uint32_t column) {
258 if (row >= mHeader->numRows || column >= mHeader->numColumns) {
259 ALOGE("Failed to read row %d, column %d from a CursorWindow which "
261 row, column, mHeader->numRows, mHeader->numColumns)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.cpp 53 static inline void setRowLogicalHeightToRowStyleLogicalHeight(RenderTableSection::RowStruct& row)
55 ASSERT(row.rowRenderer);
56 row.logicalHeight = row.rowRenderer->style()->logicalHeight();
59 static inline void updateLogicalHeightForCell(RenderTableSection::RowStruct& row, const RenderTableCell* cell)
67 Length cRowLogicalHeight = row.logicalHeight;
72 row.logicalHeight = logicalHeight;
77 row.logicalHeight = logicalHeight;
139 RenderObject* row = beforeChild->previousSibling(); local
140 if (row && row->isTableRow() && row->isAnonymous())
156 RenderObject* row = RenderTableRow::createAnonymousWithParentRenderer(this); local
171 RenderTableRow* row = toRenderTableRow(child); local
645 Row& row = m_grid[r].row; local
746 Row& row = m_grid[r].row; local
1331 RenderTableRow* row = toRenderTableRow(cell->parent()); local
1483 unsigned row = r - 1; local
1497 RenderTableRow* row = m_grid[r].rowRenderer; local
1524 RenderTableRow* row = m_grid[r].rowRenderer; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 91 /** Height assigned to a newly added row with the Add Row action */
119 * Array of positions (indexed by row) of the top edge of table cells; this
120 * corresponds to the row positions in the grid
132 * Array of positions (indexed by row) of the maximum bottom bounds of a node in the
133 * given row; this represents the visual edge of a row even when the actual row is
231 * should be positioned at the given row and column. This will skip over any nodes
235 * @param row the target row of the new nod
449 int row = declaredRowCount; local
503 int row = 0; local
516 assert nextRow > row; local
539 assert nextRow > row; local
547 int row = 0; local
644 int row = minField.getInt(rowInterval); local
762 int row = view.row; local
836 int row = view.row; local
1302 int row = Arrays.binarySearch(mTop, y); local
1339 int row = Arrays.binarySearch(mTop, y); local
1783 int row = view.row; local
1832 public int row; field in class:GridModel.ViewData
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 31 GtkWidget* InitRowLabel(int row, int label_id, GtkWidget* details_table) {
36 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 0); local
41 GtkWidget* InitDetailRow(int row, int label_id,
43 GtkWidget* name_label = InitRowLabel(row, label_id, details_table);
49 1, 2, row, row + 1); local
54 GtkWidget* InitComboboxRow(int row, int label_id,
58 GtkWidget* name_label = InitRowLabel(row, label_id, details_table);
73 1, 2, row, row + 1) local
299 int row = 0; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 35 GtkWidget* InitRowLabel(int row, int label_id, GtkWidget* details_table) {
40 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 0); local
45 GtkWidget* InitDetailRow(int row, int label_id,
47 GtkWidget* name_label = InitRowLabel(row, label_id, details_table);
53 1, 2, row, row + 1); local
58 GtkWidget* InitComboboxRow(int row, int label_id,
62 GtkWidget* name_label = InitRowLabel(row, label_id, details_table);
77 1, 2, row, row + 1) local
303 int row = 0; local
    [all...]
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 163 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
166 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
176 const Index row = RowsAtCompileTime == 1 ? 0 : index; local
178 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
183 EIGEN_STRONG_INLINE const PacketScalar packet(Index row, Index col) const
189 ::run(row, col, m_lhs, m_rhs, res);
242 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res)
244 product_coeff_impl<DefaultTraversal, UnrollingIndex-1, Lhs, Rhs, RetScalar>::run(row, col, lhs, rhs, res);
245 res += lhs.coeff(row, UnrollingIndex) * rhs.coeff(UnrollingIndex, col);
253 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
popup.js 140 document.getElementsByClassName("trunk-status-row")[0].rowIndex;
147 var row = table.insertRow(position);
148 row.setAttribute("data-issue", issue.issue);
150 return row;
158 var row = document.querySelector("*[data-issue='" + issue.issue + "']");
160 if (row)
161 row.parentNode.removeChild(row);
165 if (!row)
166 row = createTryStatusRow(issue)
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserException.java 13 protected int row = -1; field in class:XmlPullParserException
29 public XmlPullParserException(String s, int row, int column) {
31 this.row = row;
42 this.row = parser.getLineNumber();
50 public int getLineNumber() { return row; }
  /packages/inputmethods/LatinIME/java/res/xml-sw600dp/
rows_colemak.xml 26 <Row
36 </Row>
37 <Row
45 </Row>
46 <Row
59 </Row>
rows_georgian.xml 26 <Row
34 </Row>
35 <Row
44 </Row>
45 <Row
58 </Row>
rows_greek.xml 26 <Row
36 </Row>
37 <Row
46 </Row>
47 <Row
60 </Row>
rows_nordic.xml 26 <Row
34 </Row>
35 <Row
43 </Row>
44 <Row
60 </Row>
rows_qwerty.xml 26 <Row
34 </Row>
35 <Row
44 </Row>
45 <Row
58 </Row>

Completed in 1197 milliseconds

1 2 3 4 56 7 8 91011>>