/external/libvpx/libvpx/vpx_scale/generic/ |
vpxscale.c | 482 /* first row needs to be done so that we can stay one row ahead for vertical zoom */ 494 } else { /* Duplicate the last row */ 495 /* copy temp_area row 0 over from last row in the past */ 506 /* copy temp_area row 0 over from last row in the past */ 976 int row = (dst_yuv_config->y_height - expanded_frame_height) / 2; local 978 /*int YOffset = row * dst_yuv_config->y_width + col; 979 int UVOffset = (row>>1) * dst_yuv_config->uv_width + (col>>1);* 983 int row = (src_yuv_config->y_height - expanded_frame_height) \/ 2; local [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
png.c | 572 int row; local 573 for (row = 0; row < (int)info_ptr->height; row++) 575 png_free(png_ptr, info_ptr->row_pointers[row]); 576 info_ptr->row_pointers[row]=NULL;
|
pngread.c | 549 "Ignoring extra png_read_update_info() call; row buffer not reallocated"); 571 png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row) 581 png_debug2(1, "in png_read_row (row %lu, pass %d)\n", 619 /* if interlaced and we do not need a new row, combine row and return */ 696 png_error(png_ptr, "Invalid attempt to read row data"); 786 if (row != NULL) 787 png_combine_row(png_ptr, row, 793 if (row != NULL) 794 png_combine_row(png_ptr, row, 0xff) 1330 int row; local [all...] |
/external/skia/src/core/ |
SkBitmapProcState.cpp | 340 const SkPMColor* row = s.fBitmap->getAddr32(0, iy); local 345 sk_memset32(colors, row[0], n); 357 memcpy(colors, row + ix, n * sizeof(SkPMColor)); 366 sk_memset32(colors, row[maxX], count); 414 const SkPMColor* row = s.fBitmap->getAddr32(0, iy); local 419 memcpy(colors, row + ix, n * sizeof(SkPMColor));
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
GLUtils.cpp | 393 // Create a row of pure color using the first pixel. 402 // Then compare the pure color row with each row of the bitmap. 502 int row; local 509 for (row = 0 ; row < bitmap.height(); row ++) { 510 uint8_t* dst = &(img[buffer.stride * row * bpp]); 511 uint8_t* src = &(bitmapOrigin[bitmap.width() * row * bpp]);
|
/external/replicaisland/tools/ |
ExtractPoints.js | 120 var row = Math.floor(tile.centerY / tileSizeY); 123 tile.yOffset = row * tileSizeY; 128 var tileIndex = Math.floor(row * tilesPerRow + column);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
OutputHLSL.cpp | [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/ |
SettingsActivity.java | 290 for (TimeZoneRow row : timezones) { 291 timeZones[0][i] = row.mId; 292 timeZones[1][i++] = row.mDisplayName;
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BitmapFactoryTest.java | 310 for (int row = 0; row < height; ++row) { 312 int idx = row * width + col;
|
BitmapRegionDecoderTest.java | 383 for (int row = 0; row < height; ++row) { 385 int idx = row * width + col;
|
/cts/tests/tests/widget/src/android/widget/cts/ |
SimpleCursorAdapterTest.java | 363 * @param rowCount the row count 375 Object[] row = new Object[colCount + 1]; local 378 row[j] = "" + i + "" + j; 380 row[colCount] = i; 381 cursor.addRow(row);
|
/external/chromium/chrome/browser/accessibility/ |
renderer_accessibility_browsertest.cc | 216 // child of both a row and a column, so it appears to use multiple 231 const WebAccessibility& row = table.children[0]; local 232 EXPECT_EQ(WebAccessibility::ROLE_ROW, row.role); 233 const WebAccessibility& cell1 = row.children[0]; 235 const WebAccessibility& cell2 = row.children[1];
|
/external/chromium/chrome/browser/history/ |
history_types.cc | 394 bool RowQualifiesAsSignificant(const URLRow& row, 398 return (row.typed_count() > kLowQualityMatchTypedLimit) || 399 (row.visit_count() > kLowQualityMatchVisitLimit) || 400 (row.last_visit() >= real_threshold);
|
visit_database.cc | 413 VisitRow row; local 414 if (!GetRowForVisit(to_visit, &row)) 418 *from_visit = row.referring_visit; 425 statement.BindInt64(0, row.referring_visit);
|
/external/chromium/chrome/browser/sync/glue/ |
typed_url_change_processor.cc | 157 if (!details->row.typed_count()) { 162 if (!history_backend_->GetVisitsForURL(details->row.id(), &visits) || 169 DCHECK(static_cast<size_t>(details->row.visit_count()) == visits.size()); 172 std::string tag = details->row.url().spec();
|
/external/eigen/Eigen/src/QR/ |
ColPivHouseholderQR.h | 436 m_colSqNorms.tail(cols-k-1) -= m_qr.row(k).tail(cols-k-1).cwiseAbs2(); 491 for(Index i = 0; i < nonzero_pivots; ++i) dst.row(dec().colsPermutation().indices().coeff(i)) = c.row(i); 492 for(Index i = nonzero_pivots; i < cols; ++i) dst.row(dec().colsPermutation().indices().coeff(i)).setZero();
|
/external/eigen/test/ |
sparse_product.cpp | 27 VERIFY_IS_APPROX(m4=m2.row(r).transpose()*refMat2.col(c1).transpose(), refMat4=refMat2.row(r).transpose()*refMat2.col(c1).transpose()); 28 VERIFY_IS_APPROX(m4=refMat2.col(c1)*m2.row(r), refMat4=refMat2.col(c1)*refMat2.row(r));
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockOfDynamicSparseMatrix.h | 35 inline Index row() const { return IsRowMajor ? m_outer : this->index(); } function in class:Eigen::SparseInnerVectorSet::InnerIterator
|
/external/libvpx/libvpx/vp8/encoder/ |
temporal_filter.c | 168 best_ref_mv1_full.as_mv.row = best_ref_mv1.as_mv.row >>3; 289 mbd->block[0].bmi.mv.as_mv.row = 0; 327 mbd->block[0].bmi.mv.as_mv.row,
|
/external/quake/quake/src/QW/client/ |
draw.c | 139 int row, col; local 151 row = num>>4; 153 source = draw_chars + (row<<10) + (col<<3); 311 int row, col; local 318 row = num>>4; 320 source = draw_chars + (row<<10) + (col<<3); 617 int row, col; local 622 row = num>>4; 624 source = draw_chars + (row<<10) + (col<<3);
|
/external/replicaisland/src/com/replica/replicaisland/ |
MainMenuActivity.java | 140 final int row = prefs.getInt(PreferenceConstants.PREFERENCE_LEVEL_ROW, 0); local 143 if (row != 0 || index != 0) { 191 final int row = prefs.getInt(PreferenceConstants.PREFERENCE_LEVEL_ROW, 0); local 193 if (row != 0 || index != 0) {
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLTableElement32.js | 78 The deleteRow() method deletes a table row. 81 with an index of 0(first row). Currently there are four rows in the
|
HTMLTableElement33.js | 78 The deleteRow() method deletes a table row. 81 with an index of 3(last row). Currently there are four rows in the
|
HTMLTableElement40.js | 78 The deleteRow() method deletes a table row. If the index is -1 79 the last row of the table is deleted.
|
HTMLTableRowElement13.js | 78 The deleteCell() method deletes a cell from the current row. 84 deleteCell() method which will delete a cell from the current row.
|