Searched defs:row (Results 51 - 75 of 652) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp9/common/
H A Dvp9_tile_common.c24 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) { argument
25 tile->mi_row_start = get_tile_offset(row, cm->mi_rows, cm->log2_tile_rows);
26 tile->mi_row_end = get_tile_offset(row + 1, cm->mi_rows, cm->log2_tile_rows);
/external/qemu/distrib/libpng-1.2.46/
H A Dpngwtran.c2 /* pngwtran.c - transforms the data in a row for PNG writers
37 /* png_uint_32 width; width of row */
38 /* png_uint_32 rowbytes; number of bytes in row */
43 png_ptr->row_buf + 1); /* start of pixel data for row */
92 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) argument
98 row != NULL && row_info != NULL &&
111 sp = row;
112 dp = row;
142 sp = row;
143 dp = row;
219 png_do_shift(png_row_infop row_info, png_bytep row, png_color_8p bit_depth) argument
[all...]
/external/skia/src/core/
H A DSkFilterProc.h51 inline SkFilterProc SkGetBilinearFilterProc22RowProc(const SkFilterProc* row, argument
54 SkASSERT(row);
56 return row[x << 30 >> 30];
85 inline SkFilter32Proc SkGetFilter32Proc22RowProc(const SkFilter32Proc* row, argument
88 SkASSERT(row);
90 return row[x << 30 >> 30];
/external/skia/tests/
H A DKtxTest.cpp41 uint8_t *row = pixels; local
49 SkPMColor &pixel = *(reinterpret_cast<SkPMColor*>(row + x*sizeof(SkPMColor)));
52 row += bm8888.rowBytes();
128 uint8_t *row = decodedPixels; local
131 SkPMColor pixel = *(reinterpret_cast<SkPMColor*>(row + i*sizeof(SkPMColor)));
134 row += decodedBitmap.rowBytes();
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DPlanarYUVLuminanceSource.java60 public byte[] getRow(int y, byte[] row) { argument
62 throw new IllegalArgumentException("Requested row is outside the image: " + y);
65 if (row == null || row.length < width) {
66 row = new byte[width];
69 System.arraycopy(yuvData, offset, row, 0, width);
70 return row;
94 // Otherwise copy one cropped row at a time.
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_diagonal_matrix.cc50 // Build the row/column layout vector and count the number of scalar
93 int* row,
103 *row = 0;
91 GetCell(int row_block_id, int col_block_id, int* row, int* col, int* row_stride, int* col_stride) argument
H A Dblock_random_access_sparse_matrix.cc54 // Build the row/column layout vector and count the number of scalar
130 int* row,
141 *row = 0;
128 GetCell(int row_block_id, int col_block_id, int* row, int* col, int* row_stride, int* col_stride) argument
H A Dblock_random_access_sparse_matrix_test.cc71 int row; local
76 &row, &col,
79 EXPECT_EQ(row, 0);
86 row, col, blocks[row_block_id], blocks[col_block_id]) =
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_history_provider_service.cc52 const history::HistoryAndBookmarkRow& row,
67 row,
191 const history::SearchRow& row,
203 &HistoryBackend::InsertSearchTerm, hs->history_backend_.get(), row),
213 const history::SearchRow& row,
228 row,
51 UpdateHistoryAndBookmarks( const history::HistoryAndBookmarkRow& row, const std::string& selection, const std::vector<base::string16>& selection_args, const UpdateCallback& callback, base::CancelableTaskTracker* tracker) argument
190 InsertSearchTerm( const history::SearchRow& row, const InsertCallback& callback, base::CancelableTaskTracker* tracker) argument
212 UpdateSearchTerms( const history::SearchRow& row, const std::string& selection, const std::vector<base::string16>& selection_args, const UpdateCallback& callback, base::CancelableTaskTracker* tracker) argument
H A Dandroid_urls_database.cc68 bool AndroidURLsDatabase::GetAndroidURLRow(URLID url_id, AndroidURLRow* row) { argument
76 if (row) {
77 row->id = statement.ColumnInt64(0);
78 row->raw_url = statement.ColumnString(1);
79 row->url_id = statement.ColumnInt64(2);
H A Dbookmark_model_sql_handler.cc102 bool BookmarkModelSQLHandler::Update(const HistoryAndBookmarkRow& row, argument
106 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::BOOKMARK)) {
107 if (row.is_bookmark()) {
111 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::PARENT_ID)) {
116 i->url, url_row.title(), row.parent_id()));
131 } else if (row.is_value_set_explicitly(HistoryAndBookmarkRow::TITLE)) {
136 i->url, row.title()));
154 bool BookmarkModelSQLHandler::Insert(HistoryAndBookmarkRow* row) { argument
155 DCHECK(row->is_value_set_explicitly(HistoryAndBookmarkRow::URL));
156 if (!row
[all...]
H A Dbookmark_model_sql_handler_unittest.cc80 HistoryAndBookmarkRow row; local
81 row.set_raw_url("http://bookmark.com");
82 row.set_url(GURL("http://bookmark.com"));
83 row.set_title(base::UTF8ToUTF16("Bookmark Title"));
84 row.set_is_bookmark(true);
87 ASSERT_TRUE(handler.Insert(&row));
90 bookmark_model_->GetNodesByURL(row.url(), &nodes);
92 EXPECT_EQ(row.title(), nodes[0]->GetTitle());
99 HistoryAndBookmarkRow row; local
100 row
127 HistoryAndBookmarkRow row; local
211 HistoryAndBookmarkRow row; local
[all...]
H A Dvisit_sql_handler.cc31 // The created time is updated according the given |row|.
37 // Visit row is insertted/removed to keep consistent with urls table.
42 bool VisitSQLHandler::Update(const HistoryAndBookmarkRow& row, argument
60 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) ||
67 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
69 if (!AddVisit(id->url_id, row.created()))
81 bool VisitSQLHandler::Insert(HistoryAndBookmarkRow* row) { argument
82 DCHECK(row->is_value_set_explicitly(HistoryAndBookmarkRow::URL_ID));
85 if (!history_db_->GetURLRow(row->url_id(), &url_row))
93 // Add a row i
[all...]
/external/chromium_org/chrome/browser/history/
H A Dhistory_backend_android.cc12 const HistoryAndBookmarkRow& row) {
15 id = android_provider_backend_->InsertHistoryAndBookmark(row);
33 const HistoryAndBookmarkRow& row,
39 row, selection, selection_args, &count);
92 SearchTermID HistoryBackend::InsertSearchTerm(const SearchRow& row) { argument
95 id = android_provider_backend_->InsertSearchTerm(row);
100 const SearchRow& row,
106 row, selection, selection_args, &count);
11 InsertHistoryAndBookmark( const HistoryAndBookmarkRow& row) argument
32 UpdateHistoryAndBookmarks( const HistoryAndBookmarkRow& row, const std::string& selection, const std::vector<base::string16>& selection_args) argument
99 UpdateSearchTerms( const SearchRow& row, const std::string& selection, const std::vector<base::string16> selection_args) argument
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dskia_utils_gtk2.cc72 int row = y * rowstride; local
75 guchar* pixel = gdk_pixels + row + (x * 3);
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_popup_view_views.cc62 void AutofillPopupViewViews::InvalidateRow(size_t row) { argument
63 SchedulePaintInRect(controller_->GetRowBounds(row));
/external/chromium_org/chrome/utility/media_galleries/
H A Dpmp_column_reader.cc62 bool PmpColumnReader::ReadString(const uint32 row, std::string* result) const { argument
65 if (field_type_ != PMP_TYPE_STRING || row >= rows_read_)
68 DCHECK_LT(row, strings_.size());
69 *result = strings_[row];
73 bool PmpColumnReader::ReadUInt32(const uint32 row, uint32* result) const { argument
76 if (field_type_ != PMP_TYPE_UINT32 || row >= rows_read_)
79 *result = reinterpret_cast<uint32*>(data_.get() + kPmpHeaderSize)[row];
83 bool PmpColumnReader::ReadDouble64(const uint32 row, double* result) const { argument
86 if (field_type_ != PMP_TYPE_DOUBLE64 || row >= rows_read_)
89 *result = reinterpret_cast<double*>(data_.get() + kPmpHeaderSize)[row];
93 ReadUInt8(const uint32 row, uint8* result) const argument
103 ReadUInt64(const uint32 row, uint64* result) const argument
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_image_data.cc139 uint32_t* row = img.GetAddr32(pp::Point(0, y)); local
141 if (row[x] != 0)
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTableCell.cpp111 // since our table might have multiple sections, we have to offset our row appropriately
141 // Try to find if the first cell in this row is a <th>. If it is,
160 int row = renderCell->rowIndex(); local
166 RenderTableCell* headerCell = section->primaryCellAt(row, 0);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderGrid.h56 const GridCell& gridCell(int row, int column) { return m_grid[row][column]; } argument
/external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
H A DPNGImageEncoder.cpp74 Vector<unsigned char> row; local
101 row.resize(imageSize.width() * sizeof(SkPMColor));
105 preMultipliedBGRAtoRGBA(pixels, imageSize.width(), row.data());
106 png_write_row(png, row.data());
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVariablePacker.cpp94 int row = topRow + r; local
95 ASSERT((rows_[row] & columnFlags) == 0);
96 rows_[row] |= columnFlags;
122 for (int row = topNonFullRow_; row <= bottomRow; ++row) {
123 bool rowEmpty = row < bottomRow ? ((rows_[row] & columnFlags) == 0) : false;
126 topGoodRow = row;
131 int size = row
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Djddctmgr.c246 * coefficients scaled by scalefactor[row]*scalefactor[col], where
280 * coefficients scaled by scalefactor[row]*scalefactor[col], where
285 int row, col; local
292 for (row = 0; row < DCTSIZE; row++) {
296 aanscalefactor[row] * aanscalefactor[col]);
H A Djutils.c126 register int row; local
131 for (row = num_rows; row > 0; row--) {
147 /* Copy a row of coefficient blocks from one place to another. */
H A Drdcolmap.c174 unsigned int w, h, maxval, row, col; local
194 for (row = 0; row < h; row++) {
205 for (row = 0; row < h; row++) {

Completed in 2658 milliseconds

1234567891011>>