HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 176 - 200 of 1110) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libpng/contrib/gregbook/
rpng2-x.c 16 - fix expose/redraw code: don't draw entire row if only part exposed
168 static void rpng2_x_display_row (ulg row);
495 " -nommx*\tdisable optimized MMX routines for decoding row filters,\n"
499 "\t\t row (for demo purposes)\n"
1084 ulg i, row; local
1617 ulg i, row, lastrow = 0; local
1867 ulg i, row; local
    [all...]
  /external/skia/tests/
Matrix44Test.cpp 83 for (int row = 0; row < 4; ++row) {
85 placeholderMatrix->setDouble(row, col, row * col);
95 for (int row = 0; row < 4; ++row) {
97 REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col)))
    [all...]
  /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...]
  /external/chromium/chrome/browser/extensions/
extension_history_api.cc 29 void GetHistoryItemDictionary(const history::URLRow& row,
31 value->SetString(keys::kIdKey, base::Int64ToString(row.id()));
32 value->SetString(keys::kUrlKey, row.url().spec());
33 value->SetString(keys::kTitleKey, row.title());
35 MilliSecondsFromTime(row.last_visit()));
36 value->SetInteger(keys::kTypedCountKey, row.typed_count());
37 value->SetInteger(keys::kVisitCountKey, row.visit_count());
40 void AddHistoryNode(const history::URLRow& row, ListValue* list) {
42 GetHistoryItemDictionary(row, dict);
46 void GetVisitInfoDictionary(const history::VisitRow& row,
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pnggccrd.c 62 * the *beginning* of the row buffer, not the end. This
68 * pixel(s) at the end of the row would have to be saved,
102 * - fixed mmxsupport()/png_do_read_interlace() first-row bug
104 * ebx (where "row" pointer was stored), it nevertheless managed to zero
106 * caused png_do_read_interlace() to return prematurely on the first row of
408 * [still broken: tops of all row-filter blocks (input/output constraints);
424 * of the row buffer, not the end (see 19991007 for details)
2053 png_bytep row = png_ptr->row_buf + 1; local
    [all...]
pngrtran.c 2 /* pngrtran.c - transforms the data in a row for PNG readers
    [all...]
  /frameworks/av/services/camera/libcameraservice/camera2/
CallbackProcessor.cpp 423 for (size_t row = 0; row < src.height; row++) {
445 for (size_t row = 0; row < chromaHeight; row++) {
453 for (size_t row = 0; row < chromaHeight; row++) {
472 // Source has planar chroma layout, can copy by row
    [all...]
  /external/eigen/Eigen/src/Core/
MapBase.h 90 inline const Scalar& coeff(Index row, Index col) const
92 return m_data[col * colStride() + row * rowStride()];
101 inline const Scalar& coeffRef(Index row, Index col) const
103 return this->m_data[col * colStride() + row * rowStride()];
113 inline PacketScalar packet(Index row, Index col) const
116 (m_data + (col * colStride() + row * rowStride()));
201 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
203 return this->m_data[col * colStride() + row * rowStride()];
213 inline void writePacket(Index row, Index col, const PacketScalar& x)
216 (this->m_data + (col * colStride() + row * rowStride()), x)
    [all...]
TriangularMatrix.h 54 inline Scalar coeff(Index row, Index col) const { return derived().coeff(row,col); }
55 inline Scalar& coeffRef(Index row, Index col) { return derived().coeffRef(row,col); }
57 /** \see MatrixBase::copyCoeff(row,col)
60 EIGEN_STRONG_INLINE void copyCoeff(Index row, Index col, Other& other)
62 derived().coeffRef(row, col) = other.coeff(row, col);
65 inline Scalar operator()(Index row, Index col) const
67 check_coordinates(row, col)
437 row = (UnrollCount-1) % Derived1::RowsAtCompileTime enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon7467
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/shims/
MediaItemsLoader.java 112 final Object[] row = new Object[PhotoSetLoader.PROJECTION.length]; local
117 row[PhotoSetLoader.INDEX_ID] = index;
118 row[PhotoSetLoader.INDEX_DATA] = item.getContentUri().toString();
119 row[PhotoSetLoader.INDEX_DATE_ADDED] = item.getDateInMs();
120 row[PhotoSetLoader.INDEX_HEIGHT] = item.getHeight();
121 row[PhotoSetLoader.INDEX_WIDTH] = item.getWidth();
122 row[PhotoSetLoader.INDEX_WIDTH] = item.getWidth();
130 row[PhotoSetLoader.INDEX_MEDIA_TYPE] = mappedMediaType;
131 row[PhotoSetLoader.INDEX_SUPPORTED_OPERATIONS] =
133 cursor.addRow(row);
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.cc 515 g_signal_connect(treeview_, "row-activated",
675 std::string TaskManagerGtk::GetModelText(int row, int col_id) {
676 if (IsSharedByGroup(col_id) && !model_->IsResourceFirstInGroup(row))
681 return UTF16ToUTF8(model_->GetResourceTitle(row));
684 return UTF16ToUTF8(model_->GetResourcePrivateMemory(row));
687 return UTF16ToUTF8(model_->GetResourceSharedMemory(row));
690 return UTF16ToUTF8(model_->GetResourceCPUUsage(row));
693 return UTF16ToUTF8(model_->GetResourceNetworkUsage(row));
696 return UTF16ToUTF8(model_->GetResourceProcessId(row));
699 return UTF16ToUTF8(model_->GetResourceV8MemoryAllocatedSize(row));
802 int row = gtk_tree::GetRowNumForPath(path); local
934 int row = gtk_tree::GetRowNumForPath(path); local
966 int row = gtk_tree::GetRowNumForPath(child_path); local
    [all...]
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model.cc 47 size_t row = *i; local
48 Entry* entry = &entries_[row];
55 entries_.erase(entries_.begin() + row); // Note: |entry| is now garbage.
57 observer_->OnItemsRemoved(row, 1);
73 string16 NotificationExceptionsTableModel::GetText(int row,
75 const Entry& entry = entries_[row];
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 63 * a row-vector (if there is only one row). */
159 for (Index row = 0; row < rows(); row++)
161 if (other.coeff(row, col) != Scalar(0))
162 derived().insert(row, col) = other.coeff(row, col);
  /external/skia/include/utils/
SkCamera.h 61 void setRow(int row, SkScalar a, SkScalar b, SkScalar c, SkScalar d = 0)
63 SkASSERT((unsigned)row < 3);
64 fMat[row][0] = a;
65 fMat[row][1] = b;
66 fMat[row][2] = c;
67 fMat[row][3] = d;
  /external/skia/legacy/include/utils/
SkCamera.h 61 void setRow(int row, SkScalar a, SkScalar b, SkScalar c, SkScalar d = 0)
63 SkASSERT((unsigned)row < 3);
64 fMat[row][0] = a;
65 fMat[row][1] = b;
66 fMat[row][2] = c;
67 fMat[row][3] = d;
  /external/webkit/Tools/WebKitTestRunner/cg/
TestInvocationCG.cpp 77 for (unsigned row = 0; row < pixelsHigh; row++) {
86 for (unsigned row = 0; row < pixelsHigh; row++) {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_neighbour.c 133 u32 i, row, col; local
142 row = col = 0;
152 if (row)
157 if (row && (col < picWidth - 1))
162 if (row && col)
171 row++;
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 104 int row = 0, col = 0; field in class:Charset_TestGenerator.CodesGenerator
121 row++;
142 row++;
160 row++;
190 int row = 0, col = 0; field in class:Charset_TestGenerator.Dumper
212 row++;
  /external/chromium/app/sql/
connection_unittest.cc 96 // Last insert row ID should be valid.
97 int64 row = db().GetLastInsertRowId(); local
98 EXPECT_LT(0, row);
100 // It should be the primary key of the row we just inserted.
102 s.BindInt64(0, row);
  /external/chromium/chrome/browser/ui/search_engines/
template_url_table_model.cc 175 string16 TemplateURLTableModel::GetText(int row, int col_id) {
176 DCHECK(row >= 0 && row < RowCount());
177 const TemplateURL& url = entries_[row]->template_url();
201 SkBitmap TemplateURLTableModel::GetIcon(int row) {
202 DCHECK(row >= 0 && row < RowCount());
203 return entries_[row]->GetIcon();
232 int TemplateURLTableModel::GetGroupID(int row) {
233 DCHECK(row >= 0 && row < RowCount())
    [all...]
  /external/clang/test/Analysis/
dead-stores.cpp 52 class row : protected _Row_base<_Tp, _Number2> { class in namespace:TestTemp
56 explicit row(const pencil_type& __a = pencil_type()) : _Base(__a) {} function in class:TestTemp::row
61 TestTemp::row<const char*> x; // no-warning
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.cpp 51 static inline void setRowLogicalHeightToRowStyleLogicalHeightIfNotRelative(RenderTableSection::RowStruct* row)
53 ASSERT(row && row->rowRenderer);
54 row->logicalHeight = row->rowRenderer->style()->logicalHeight();
55 if (row->logicalHeight.isRelative())
56 row->logicalHeight = Length();
116 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
117 // the anonymous row containing it, if there is one.
126 RenderObject* row = new (renderArena()) RenderTableRow(document() /* anonymous table row */) local
282 Row& row = *m_grid[i].row; local
366 Row* row = m_grid[r].row; local
1012 RenderTableRow* row = toRenderTableRow(cell->parent()); local
    [all...]
  /external/webkit/Tools/DumpRenderTree/cairo/
PixelDumpSupportCairo.cpp 77 for (unsigned row = 0; row < pixelsHigh; row++) {
  /external/libpng/
pngrtran.c 2 /* pngrtran.c - transforms the data in a row for PNG readers
    [all...]
  /cts/apps/CtsVerifier/include/colorchecker/
imagetesthandler.h 42 void drawPoint(int row, int column, const Vec3i &color);

Completed in 505 milliseconds

1 2 3 4 5 6 78 91011>>