/external/javasqlite/src/main/java/SQLite/ |
H A D | TableResult.java | 42 public int nrows; field in class:TableResult 99 ncolumns = nrows = 0; 126 if (maxrows > 0 && nrows >= maxrows) { 131 nrows++; 148 for (i = 0; i < nrows; i++) {
|
H A D | Database.java | 310 while (ret.nrows < ret.maxrows && vm.step(ret)) { 363 while (ret.nrows < ret.maxrows && vm.step(ret)) { 416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) {
|
/external/opencv3/3rdparty/libtiff/ |
H A D | tif_dumpmode.c | 110 * Seek forwards nrows in the current strip. 113 DumpModeSeek(TIFF* tif, uint32 nrows) argument 115 tif->tif_rawcp += nrows * tif->tif_scanlinesize; 116 tif->tif_rawcc -= nrows * tif->tif_scanlinesize;
|
H A D | tif_strip.c | 78 TIFFVStripSize64(TIFF* tif, uint32 nrows) argument 82 if (nrows==(uint32)(-1)) 83 nrows=td->td_imagelength; 121 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); 127 return(_TIFFMultiply64(tif,nrows,TIFFScanlineSize64(tif),module)); 130 TIFFVStripSize(TIFF* tif, uint32 nrows) argument 135 m=TIFFVStripSize64(tif,nrows);
|
H A D | tif_tile.c | 178 TIFFVTileSize64(TIFF* tif, uint32 nrows) argument 217 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); 223 return(_TIFFMultiply64(tif,nrows,TIFFTileRowSize64(tif),module)); 226 TIFFVTileSize(TIFF* tif, uint32 nrows) argument 231 m=TIFFVTileSize64(tif,nrows);
|
H A D | tif_jpeg.c | 1172 tmsize_t nrows; local 1185 nrows = cc / sp->bytesperline; 1189 if( nrows > (tmsize_t) sp->cinfo.d.image_height ) 1190 nrows = sp->cinfo.d.image_height; 1193 if (nrows) 1267 } while (--nrows > 0); 1303 tmsize_t nrows; local 1307 if ( (nrows = sp->cinfo.d.image_height) ) { 1422 nrows -= sp->v_sampling; 1423 } while (nrows > 1770 tmsize_t nrows; local 1843 tmsize_t nrows; local [all...] |
H A D | tiffio.h | 355 extern uint64 TIFFVStripSize64(TIFF* tif, uint32 nrows); 356 extern tmsize_t TIFFVStripSize(TIFF* tif, uint32 nrows); 361 extern uint64 TIFFVTileSize64(TIFF* tif, uint32 nrows); 362 extern tmsize_t TIFFVTileSize(TIFF* tif, uint32 nrows);
|
/external/pdfium/third_party/libtiff/ |
H A D | tif_dumpmode.c | 110 * Seek forwards nrows in the current strip. 113 DumpModeSeek(TIFF* tif, uint32 nrows) argument 115 tif->tif_rawcp += nrows * tif->tif_scanlinesize; 116 tif->tif_rawcc -= nrows * tif->tif_scanlinesize;
|
H A D | tif_strip.c | 78 TIFFVStripSize64(TIFF* tif, uint32 nrows) argument 82 if (nrows==(uint32)(-1)) 83 nrows=td->td_imagelength; 121 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); 127 return(_TIFFMultiply64(tif,nrows,TIFFScanlineSize64(tif),module)); 130 TIFFVStripSize(TIFF* tif, uint32 nrows) argument 135 m=TIFFVStripSize64(tif,nrows);
|
H A D | tif_tile.c | 201 TIFFVTileSize64(TIFF* tif, uint32 nrows) argument 240 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); 246 return(_TIFFMultiply64(tif,nrows,TIFFTileRowSize64(tif),module)); 249 TIFFVTileSize(TIFF* tif, uint32 nrows) argument 254 m=TIFFVTileSize64(tif,nrows);
|
H A D | tif_jpeg.c | 1196 tmsize_t nrows; local 1209 nrows = cc / sp->bytesperline; 1214 if( nrows > (tmsize_t) sp->cinfo.d.image_height ) 1215 nrows = sp->cinfo.d.image_height; 1218 if (nrows) 1234 } while (--nrows > 0); 1252 tmsize_t nrows; local 1265 nrows = cc / sp->bytesperline; 1270 if( nrows > (tmsize_t) sp->cinfo.d.image_height ) 1271 nrows 1374 tmsize_t nrows; local 1885 tmsize_t nrows; local 1965 tmsize_t nrows; local [all...] |
H A D | tiffio.h | 362 extern uint64 TIFFVStripSize64(TIFF* tif, uint32 nrows); 363 extern tmsize_t TIFFVStripSize(TIFF* tif, uint32 nrows); 368 extern uint64 TIFFVTileSize64(TIFF* tif, uint32 nrows); 369 extern tmsize_t TIFFVTileSize(TIFF* tif, uint32 nrows);
|
/external/opencv3/modules/cudaimgproc/src/ |
H A D | mssegmentation.cpp | 231 const int nrows = src.rows; local 245 Graph<SegmLinkVal> g(nrows * ncols, 4 * (nrows - 1) * (ncols - 1) 246 + (nrows - 1) + (ncols - 1)); 255 for (int y = 0; y < nrows - 1; ++y) 295 for (int y = 0; y < nrows - 1; ++y) 307 r1 = rmap.at<Vec4b>(nrows - 1, x); 308 r2[0] = rmap.at<Vec4b>(nrows - 1, x + 1); 309 sp1 = spmap.at<Vec2s>(nrows - 1, x); 310 sp2[0] = spmap.at<Vec2s>(nrows [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
H A D | TableResultX.java | 29 this.nrows = tr.nrows;
|
H A D | JDBCDatabaseMetaData.java | 612 if (rs0.tr.nrows < 1) { 635 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0) { 644 for (int i = 0; i < rs0.tr.nrows; i++) { 765 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0 && 766 rs1 != null && rs1.tr != null && rs1.tr.nrows > 0) { 775 for (int i = 0; i < rs0.tr.nrows; i++) { 794 if (rs2 == null || rs2.tr == null || rs2.tr.nrows <= 0) { 802 for (int k = 0; k < rs2.tr.nrows; k++) { 806 for (int m = 0; m < rs1.tr.nrows; m++) { 825 if (tr.nrows < [all...] |
H A D | JDBCResultSet.java | 104 if (pk.tr.nrows > 0) { 106 pkcols = new String[pk.tr.nrows]; 107 pkcoli = new int[pk.tr.nrows]; 108 for (int i = 0; i < pk.tr.nrows; i++) { 148 return row < tr.nrows; 178 row = tr.nrows + 1 + row; 181 if (row < 0 || row > tr.nrows) { 192 if (this.row + row < 0 || this.row + row >= tr.nrows) { 759 if (tr == null || tr.nrows <= 0) { 773 if (tr == null || tr.nrows < [all...] |
/external/opencv3/modules/videostab/src/ |
H A D | global_motion.cpp | 556 int nrows = 4*npoints; 559 nrows += 2; 561 nrows += 3; 563 nrows += 4; 584 rowlb_.assign(nrows, -INF); 585 rowub_.assign(nrows, INF); 630 A.setDimensions(nrows, ncols);
|
H A D | motion_stabilizing.cpp | 155 int nrows = 8*N + 2*6*(N-1) + 2*6*(N-2) + 2*6*(N-3); local 247 rowlb_.assign(nrows, -INF); 248 rowub_.assign(nrows, INF); 521 A.setDimensions(nrows, ncols);
|
/external/chromium-trace/catapult/experimental/ |
H A D | plot_bisect_results.py | 66 _, (axis0, axis1) = pyplot.subplots(nrows=1, ncols=2, figsize=figsize)
|
/external/autotest/tko/ |
H A D | nightly.py | 12 nrows = perf.db_cur.execute(cmd) 28 nrows = perf.db_cur.execute(cmd) 55 nrows = perf.db_cur.execute(cmd, args) 186 nrows = perf.db_cur.execute(cmd) 187 assert nrows == 1
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
H A D | BigMatrixImpl.java | 854 final int nrows = this.getRowDimension(); 855 final double[] out = new double[nrows]; 856 for (int i=0;i<nrows;i++) {
|
/external/opencv/cxcore/src/ |
H A D | cxmatrix.cpp | 551 int i, j, nrows; local 555 nrows = matrix->rows; 561 int j0 = 0, j1 = nrows; 562 for( i = 0; i < nrows; i++ ) 573 int j0 = 0, j1 = nrows; 574 for( i = 0; i < nrows; i++ )
|
/external/opencv3/3rdparty/libpng/ |
H A D | pngwrite.c | 824 png_set_flush(png_structp png_ptr, int nrows) argument 831 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
|
/external/libpng/ |
H A D | pngwrite.c | 897 png_set_flush(png_structrp png_ptr, int nrows) argument 904 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
|
/external/pdfium/third_party/lpng_v163/ |
H A D | pngwrite.c | 820 png_set_flush(png_structrp png_ptr, int nrows)
argument 827 png_ptr->flush_dist = (nrows < 0 ? 0 : nrows);
|