/external/python/cpython2/Lib/test/ |
D | curses_tests.py | 14 ncols, nlines = 8, 3 23 win = curses.newwin(nlines, ncols, uly, ulx) 24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols) 29 stdscr.addstr(uly+ncols+2, 0, "Text entered in the box\n") 36 stdscr.move(uly+ncols+2 + i, 0)
|
/external/python/cpython3/Lib/test/ |
D | curses_tests.py | 14 ncols, nlines = 8, 3 23 win = curses.newwin(nlines, ncols, uly, ulx) 24 textpad.rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols) 29 stdscr.addstr(uly+ncols+2, 0, "Text entered in the box\n") 36 stdscr.move(uly+ncols+2 + i, 0)
|
/external/tensorflow/tensorflow/core/kernels/ |
D | inplace_ops_functor_gpu.cu.cc | 49 const int64 ncols = Toutput.dimension(1); in DoParallelConcatUpdate() local 54 d.stream(), cfg.virtual_thread_count, nrows, ncols, loc, src, dst)); in DoParallelConcatUpdate() 112 const int64 ncols = Ty.dimension(1); in DoInplaceOp() local 123 ncols, n, src, rowids, dst)); in DoInplaceOp() 128 cfg.virtual_thread_count, nrows, ncols, n, in DoInplaceOp() 134 cfg.virtual_thread_count, nrows, ncols, n, in DoInplaceOp() 147 const int64 ncols = Ty.dimension(1); in DoInplaceOp() local 157 ncols, n, src, rowids, dst)); in DoInplaceOp()
|
D | sparse_matmul_op.cc | 131 SparseSlice(int nrows, int ncols, int bsize) in SparseSlice() 132 : num_rows(nrows), num_cols(ncols), block_size(bsize) { in SparseSlice()
|
/external/python/cpython3/Lib/ |
D | cmd.py | 367 ncols = (size+nrows-1) // nrows 370 for col in range(ncols): 386 ncols = 1 390 for col in range(ncols):
|
/external/python/cpython2/Lib/ |
D | cmd.py | 370 ncols = (size+nrows-1) // nrows 373 for col in range(ncols): 389 ncols = 1 393 for col in range(ncols):
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_tensor.py | 1118 ncols = input_shape[1] 1178 math_ops.range(1, ncols + 1), 0)) 1203 lengths = math_ops.minimum(lengths, ncols) 1208 mask = array_ops.sequence_mask(lengths, maxlen=ncols) 1216 nvals = nrows * ncols 1217 splits = math_ops.range(nrows + 1) * ncols 1271 ncols = math_ops.maximum(math_ops.reduce_max(rt_row_lengths), 0) 1289 columns = array_ops.expand_dims(math_ops.range(0, ncols), 0) 1301 default_index = array_ops.fill(array_ops.stack([nrows, ncols]), nvals)
|
D | ragged_segment_op_test.py | 69 ncols = max(len(row) for row in data) 70 grouped = [[[] for _ in range(ncols)] for row in range(num_segments)]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | BigMatrixImpl.java | 758 final int ncols = this.getColumnDimension(); in getRowMatrix() local 759 final BigDecimal[][] out = new BigDecimal[1][ncols]; in getRowMatrix() 760 System.arraycopy(data[row], 0, out[0], 0, ncols); in getRowMatrix() 794 final int ncols = this.getColumnDimension(); in getRow() local 795 final BigDecimal[] out = new BigDecimal[ncols]; in getRow() 796 System.arraycopy(data[row], 0, out, 0, ncols); in getRow() 813 final int ncols = this.getColumnDimension(); in getRowAsDoubleArray() local 814 final double[] out = new double[ncols]; in getRowAsDoubleArray() 815 for (int i=0;i<ncols;i++) { in getRowAsDoubleArray()
|
/external/python/cpython2/Lib/curses/ |
D | textpad.py | 192 ncols, nlines = 9, 4 195 win = curses.newwin(nlines, ncols, uly, ulx) 196 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
|
/external/python/cpython3/Lib/curses/ |
D | textpad.py | 192 ncols, nlines = 9, 4 195 win = curses.newwin(nlines, ncols, uly, ulx) 196 rectangle(stdscr, uly-1, ulx-1, uly + nlines, ulx + ncols)
|
/external/python/cpython2/Modules/ |
D | _cursesmodule.c | 761 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_DerWin() local 764 ncols = 0; in PyCursesWindow_DerWin() 772 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_DerWin() 780 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in PyCursesWindow_DerWin() 1452 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_SubWin() local 1455 ncols = 0; in PyCursesWindow_SubWin() 1463 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_SubWin() 1474 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 1478 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 2244 int nlines, ncols; in PyCurses_NewPad() local [all …]
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 1032 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_DerWin() local 1035 ncols = 0; in PyCursesWindow_DerWin() 1043 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_DerWin() 1051 win = derwin(self->win,nlines,ncols,begin_y,begin_x); in PyCursesWindow_DerWin() 1840 int nlines, ncols, begin_y, begin_x; in PyCursesWindow_SubWin() local 1843 ncols = 0; in PyCursesWindow_SubWin() 1851 &nlines,&ncols,&begin_y,&begin_x)) in PyCursesWindow_SubWin() 1862 win = subpad(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 1866 win = subwin(self->win, nlines, ncols, begin_y, begin_x); in PyCursesWindow_SubWin() 2713 int nlines, ncols; in PyCurses_NewPad() local [all …]
|
/external/eigen/Eigen/src/Core/ |
D | Transpose.h | 82 void resize(Index nrows, Index ncols) { 83 m_matrix.resize(ncols,nrows);
|
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/ |
D | metric_loss_ops_test.py | 201 nrows, ncols = np_matrix.shape 204 for j in range(ncols): 212 dense_shape=np.array([ncols,])))
|
/external/eigen/Eigen/src/CholmodSupport/ |
D | CholmodSupport.h | 378 StorageIndex ncols = super[k + 1] - super[k]; 381 …Map<const Array<Scalar,1,Dynamic>, 0, InnerStride<> > sk(x + px[k], ncols, InnerStride<>(nrows+1));
|
/external/python/cpython3/Doc/library/ |
D | curses.rst | 310 .. function:: is_term_resized(nlines, ncols) 373 .. function:: newpad(nlines, ncols) 391 .. function:: newwin(nlines, ncols) 392 newwin(nlines, ncols, begin_y, begin_x) 395 is at ``(begin_y, begin_x)``, and whose height/width is *nlines*/*ncols*. 492 .. function:: resize_term(nlines, ncols) 502 .. function:: resizeterm(nlines, ncols) 849 window.derwin(nlines, ncols, begin_y, begin_x) 1159 .. method:: window.resize(nlines, ncols) 1200 window.subpad(nlines, ncols, begin_y, begin_x) [all …]
|
/external/python/cpython2/Doc/library/ |
D | curses.rst | 302 .. function:: is_term_resized(nlines, ncols) 365 .. function:: newpad(nlines, ncols) 383 .. function:: newwin(nlines, ncols) 384 newwin(nlines, ncols, begin_y, begin_x) 387 whose height/width is *nlines*/*ncols*. 484 .. function:: resize_term(nlines, ncols) 494 .. function:: resizeterm(nlines, ncols) 827 window.derwin(nlines, ncols, begin_y, begin_x) 1114 .. method:: window.resize(nlines, ncols) 1155 window.subpad(nlines, ncols, begin_y, begin_x) [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | regcomp.c | 1392 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in isinsets() local 1395 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in isinsets() 1409 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in samesets() local 1413 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in samesets()
|
/external/llvm/lib/Support/ |
D | regcomp.c | 1265 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in isinsets() local 1268 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in isinsets() 1282 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in samesets() local 1286 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in samesets()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | regcomp.c | 1227 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in isinsets() local 1230 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in isinsets() 1244 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in samesets() local 1248 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in samesets()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | regcomp.c | 1265 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in isinsets() local 1268 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in isinsets() 1282 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; in samesets() local 1286 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize) in samesets()
|
/external/pdfium/core/fxge/ |
D | cfx_renderdevice.cpp | 1050 int ncols = pGlyph->GetWidth(); in DrawNormalText() local 1053 if (!bitmap->CompositeMask(left.ValueOrDie(), top.ValueOrDie(), ncols, in DrawNormalText() 1061 ncols /= 3; in DrawNormalText() 1066 end_col_safe += ncols; in DrawNormalText()
|
/external/eigen/doc/ |
D | TutorialSparse.dox | 321 sm1.leftCols(ncols) = ...; 322 sm1.middleCols(j,ncols) = ...; 323 sm1.rightCols(ncols) = ...;
|
/external/conscrypt/benchmark-android/ |
D | vogar.jar | META-INF/
META-INF/MANIFEST.MF
vogar/
vogar/TestProperties.class
TestProperties ... |