HomeSort by relevance Sort by last modified time
    Searched refs:nrows (Results 1 - 25 of 43) sorted by null

1 2

  /external/javasqlite/src/main/java/SQLite/
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++) {
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/
tif_dumpmode.c 110 * Seek forwards nrows in the current strip.
113 DumpModeSeek(TIFF* tif, uint32 nrows)
115 tif->tif_rawcp += nrows * tif->tif_scanlinesize;
116 tif->tif_rawcc -= nrows * tif->tif_scanlinesize;
tif_strip.c 78 TIFFVStripSize64(TIFF* tif, uint32 nrows)
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)
135 m=TIFFVStripSize64(tif,nrows);
tif_tile.c 178 TIFFVTileSize64(TIFF* tif, uint32 nrows)
217 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]);
223 return(_TIFFMultiply64(tif,nrows,TIFFTileRowSize64(tif),module));
226 TIFFVTileSize(TIFF* tif, uint32 nrows)
231 m=TIFFVTileSize64(tif,nrows);
tif_jpeg.c 1172 tmsize_t nrows; local
1303 tmsize_t nrows; local
1770 tmsize_t nrows; local
1843 tmsize_t nrows; local
    [all...]
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/
tif_dumpmode.c 110 * Seek forwards nrows in the current strip.
113 DumpModeSeek(TIFF* tif, uint32 nrows)
115 tif->tif_rawcp += nrows * tif->tif_scanlinesize;
116 tif->tif_rawcc -= nrows * tif->tif_scanlinesize;
tif_strip.c 78 TIFFVStripSize64(TIFF* tif, uint32 nrows)
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)
135 m=TIFFVStripSize64(tif,nrows);
tif_tile.c 201 TIFFVTileSize64(TIFF* tif, uint32 nrows)
240 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]);
246 return(_TIFFMultiply64(tif,nrows,TIFFTileRowSize64(tif),module));
249 TIFFVTileSize(TIFF* tif, uint32 nrows)
254 m=TIFFVTileSize64(tif,nrows);
tif_jpeg.c 1196 tmsize_t nrows; local
1252 tmsize_t nrows; local
1374 tmsize_t nrows; local
1885 tmsize_t nrows; local
1965 tmsize_t nrows; local
    [all...]
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/
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 - 1, x + 1)
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
TableResultX.java 29 this.nrows = tr.nrows;
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 <= 0)
    [all...]
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 <= 0)
    [all...]
  /system/extras/memcpy-perf/
graph_memcpy.py 11 fig, ax = plt.subplots(nrows=1)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cmd.py 369 for nrows in range(1, len(list)):
370 ncols = (size+nrows-1) // nrows
375 for row in range(nrows):
376 i = row + nrows*col
388 nrows = len(list)
391 for row in range(nrows):
394 i = row + nrows*col
  /prebuilts/gdb/linux-x86/lib/python2.7/
cmd.py 369 for nrows in range(1, len(list)):
370 ncols = (size+nrows-1) // nrows
375 for row in range(nrows):
376 i = row + nrows*col
388 nrows = len(list)
391 for row in range(nrows):
394 i = row + nrows*col
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cmd.py 369 for nrows in range(1, len(list)):
370 ncols = (size+nrows-1) // nrows
375 for row in range(nrows):
376 i = row + nrows*col
388 nrows = len(list)
391 for row in range(nrows):
394 i = row + nrows*col
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cmd.py 369 for nrows in range(1, len(list)):
370 ncols = (size+nrows-1) // nrows
375 for row in range(nrows):
376 i = row + nrows*col
388 nrows = len(list)
391 for row in range(nrows):
394 i = row + nrows*col
  /external/opencv3/modules/videostab/src/
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);
  /external/chromium-trace/catapult/experimental/
plot_bisect_results.py 66 _, (axis0, axis1) = pyplot.subplots(nrows=1, ncols=2, figsize=figsize)
  /external/autotest/tko/
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
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu.c 430 int nrows, i, len; local
438 for (cmd = dhd_cmds, nrows = 0; cmd->name; cmd++)
439 nrows++;
441 nrows /= 4;
442 nrows++;
444 len = nrows * 80 + 2;
464 if (row == nrows) {
470 for (row = 0; row < nrows; row++)
    [all...]

Completed in 592 milliseconds

1 2