/external/trappy/trappy/ |
D | plot_utils.py | 74 def pre_plot_setup(width=None, height=None, ncols=1, nrows=1): argument 93 height *= nrows 95 _, axis = plt.subplots(ncols=ncols, nrows=nrows, figsize=(width, height)) 192 axis = pre_plot_setup(width=width, height=height, ncols=num_runs, nrows=2) 206 nrows = number_freq_plots(runs, map_label) 208 axis = pre_plot_setup(width=width, height=height, nrows=nrows, 212 if nrows == 1: 216 elif nrows == 1: 295 nrows = 2 * number_freq_plots(runs, map_label) 296 axis = pre_plot_setup(ncols=num_runs, nrows=nrows)
|
/external/javasqlite/src/main/java/SQLite/ |
D | TableResult.java | 42 public int nrows; field in TableResult 99 ncolumns = nrows = 0; in clear() 126 if (maxrows > 0 && nrows >= maxrows) { in newrow() 131 nrows++; in newrow() 148 for (i = 0; i < nrows; i++) { in toString()
|
D | Database.java | 310 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table() 363 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table() 416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) { in get_table()
|
/external/python/cpython2/Lib/ |
D | 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/python/cpython3/Lib/ |
D | cmd.py | 366 for nrows in range(1, len(list)): 367 ncols = (size+nrows-1) // nrows 372 for row in range(nrows): 373 i = row + nrows*col 385 nrows = len(list) 388 for row in range(nrows): 391 i = row + nrows*col
|
/external/pdfium/third_party/libtiff/ |
D | tif_strip.c | 78 TIFFVStripSize64(TIFF* tif, uint32 nrows) in TIFFVStripSize64() argument 82 if (nrows==(uint32)(-1)) in TIFFVStripSize64() 83 nrows=td->td_imagelength; in TIFFVStripSize64() 121 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); in TIFFVStripSize64() 127 return(_TIFFMultiply64(tif,nrows,TIFFScanlineSize64(tif),module)); in TIFFVStripSize64() 130 TIFFVStripSize(TIFF* tif, uint32 nrows) in TIFFVStripSize() argument 135 m=TIFFVStripSize64(tif,nrows); in TIFFVStripSize()
|
D | tif_dumpmode.c | 113 DumpModeSeek(TIFF* tif, uint32 nrows) in DumpModeSeek() argument 115 tif->tif_rawcp += nrows * tif->tif_scanlinesize; in DumpModeSeek() 116 tif->tif_rawcc -= nrows * tif->tif_scanlinesize; in DumpModeSeek()
|
D | tif_jpeg.c | 1198 tmsize_t nrows; in JPEGDecode() local 1211 nrows = cc / sp->bytesperline; in JPEGDecode() 1216 if( nrows > (tmsize_t) sp->cinfo.d.image_height ) in JPEGDecode() 1217 nrows = sp->cinfo.d.image_height; in JPEGDecode() 1220 if (nrows) in JPEGDecode() 1236 } while (--nrows > 0); in JPEGDecode() 1254 tmsize_t nrows; in JPEGDecode() local 1267 nrows = cc / sp->bytesperline; in JPEGDecode() 1272 if( nrows > (tmsize_t) sp->cinfo.d.image_height ) in JPEGDecode() 1273 nrows = sp->cinfo.d.image_height; in JPEGDecode() [all …]
|
D | tif_tile.c | 201 TIFFVTileSize64(TIFF* tif, uint32 nrows) in TIFFVTileSize64() argument 240 samplingblocks_ver=TIFFhowmany_32(nrows,ycbcrsubsampling[1]); in TIFFVTileSize64() 246 return(_TIFFMultiply64(tif,nrows,TIFFTileRowSize64(tif),module)); in TIFFVTileSize64() 249 TIFFVTileSize(TIFF* tif, uint32 nrows) in TIFFVTileSize() argument 254 m=TIFFVTileSize64(tif,nrows); in TIFFVTileSize()
|
D | tiffio.h | 364 extern uint64 TIFFVStripSize64(TIFF* tif, uint32 nrows); 365 extern tmsize_t TIFFVStripSize(TIFF* tif, uint32 nrows); 370 extern uint64 TIFFVTileSize64(TIFF* tif, uint32 nrows); 371 extern tmsize_t TIFFVTileSize(TIFF* tif, uint32 nrows);
|
/external/syslinux/com32/lib/sys/vesa/ |
D | drawtxt.c | 74 static void vesacon_update_characters(int row, int col, int nrows, int ncols) in vesacon_update_characters() argument 102 for (i = height * nrows; i >= 0; i--) { in vesacon_update_characters() 248 void __vesacon_scroll_up(int nrows, attr_t attr) in __vesacon_scroll_up() argument 251 [(nrows + 1) * (__vesacon_text_cols + 2)]; in __vesacon_scroll_up() 255 (__vesacon_text_rows - nrows) * (__vesacon_text_cols + 2); in __vesacon_scroll_up() 263 dword_count = nrows * (__vesacon_text_cols + 2); in __vesacon_scroll_up()
|
/external/syslinux/com32/modules/ |
D | ls.c | 75 size_t nrows, ncols, perpage; in display_directory() local 124 nrows = ((endpage-i) + ncols - 1)/ncols; in display_directory() 126 for (j = 0; j < nrows; j++) { in display_directory() 128 for (k = i+j; k < endpage; k += nrows) { in display_directory()
|
D | dir.c | 75 size_t nrows, ncols, perpage; in display_directory() local 124 nrows = ((endpage-i) + ncols - 1)/ncols; in display_directory() 126 for (j = 0; j < nrows; j++) { in display_directory() 128 for (k = i+j; k < endpage; k += nrows) { in display_directory()
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCDatabaseMetaData.java | 612 if (rs0.tr.nrows < 1) { in getColumns() 635 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0) { in getColumns() 644 for (int i = 0; i < rs0.tr.nrows; i++) { in getColumns() 765 if (rs0 != null && rs0.tr != null && rs0.tr.nrows > 0 && in getBestRowIdentifier() 766 rs1 != null && rs1.tr != null && rs1.tr.nrows > 0) { in getBestRowIdentifier() 775 for (int i = 0; i < rs0.tr.nrows; i++) { in getBestRowIdentifier() 794 if (rs2 == null || rs2.tr == null || rs2.tr.nrows <= 0) { in getBestRowIdentifier() 802 for (int k = 0; k < rs2.tr.nrows; k++) { in getBestRowIdentifier() 806 for (int m = 0; m < rs1.tr.nrows; m++) { in getBestRowIdentifier() 825 if (tr.nrows <= 0) { in getBestRowIdentifier() [all …]
|
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 <= 0) { [all …]
|
D | TableResultX.java | 29 this.nrows = tr.nrows; in TableResultX()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | inplace_ops.cc | 39 auto nrows = Toutput.dimension(0); in DoParallelConcatUpdate() local 40 auto r = (loc % nrows + nrows) % nrows; // Guard index range. in DoParallelConcatUpdate()
|
D | inplace_ops_functor_gpu.cu.cc | 48 const int64 nrows = Toutput.dimension(0); in DoParallelConcatUpdate() local 54 cfg.virtual_thread_count, nrows, ncols, loc, src, dst); in DoParallelConcatUpdate()
|
/external/lisa/tools/analysis/ |
D | runtime.py | 64 nrows = args.nrows variable 157 for r in result[:nrows]:
|
D | runnable.py | 57 nrows = args.nrows variable 189 for r in result[:nrows]:
|
/external/autotest/tko/ |
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/lisa/libs/utils/analysis/ |
D | residency_analysis.py | 238 fig, axes = plt.subplots(nrows=1, ncols=1, figsize=(8,8)) 257 fig, axes = plt.subplots(nrows=5, ncols=2, figsize=(12,30))
|
/external/trappy/tests/ |
D | test_ftrace.py | 279 _, axis = matplotlib.pyplot.subplots(nrows=2) 307 _, axis = matplotlib.pyplot.subplots(nrows=2) 323 _, axis = matplotlib.pyplot.subplots(nrows=1)
|
/external/eigen/Eigen/src/Core/ |
D | Transpose.h | 82 void resize(Index nrows, Index ncols) { 83 m_matrix.resize(ncols,nrows);
|
/external/eigen/Eigen/src/CholmodSupport/ |
D | CholmodSupport.h | 379 StorageIndex nrows = pi[k + 1] - pi[k]; 381 …Map<const Array<Scalar,1,Dynamic>, 0, InnerStride<> > sk(x + px[k], ncols, InnerStride<>(nrows+1));
|