Searched defs:ncols (Results 1 - 15 of 15) sorted by relevance

/external/syslinux/gpxe/src/hci/mucurses/
H A Dwindows.c44 * @v ncols window width
49 WINDOW *derwin ( WINDOW *parent, int nlines, int ncols, argument
56 if ( ( (unsigned)ncols > parent->width ) ||
62 child->width = ncols;
116 * @v ncols number of columns
121 WINDOW *newwin ( int nlines, int ncols, int begin_y, int begin_x ) { argument
126 ( (unsigned)( begin_x + ncols ) > stdscr->width ) )
131 win->width = ncols;
142 * @v ncols window width
147 WINDOW *subwin ( WINDOW *parent, int nlines, int ncols, argument
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dinplace_ops_functor_gpu.cu.cc49 const int64 ncols = Toutput.dimension(1); local
54 cfg.virtual_thread_count, nrows, ncols, loc, src, dst);
H A Dsparse_matmul_op.cc127 SparseSlice(int nrows, int ncols, int bsize) argument
128 : num_rows(nrows), num_cols(ncols), block_size(bsize) {
/external/syslinux/com32/modules/
H A Ddir.c75 size_t nrows, ncols, perpage; local
115 ncols = (cols + 2)/(maxlen + 8);
116 ncols = min(ncols, n_de);
117 ncols = max(ncols, 1U);
118 colwidth = (cols + 2)/ncols;
119 perpage = ncols * (rows - 1);
124 nrows = ((endpage-i) + ncols - 1)/ncols;
[all...]
H A Dls.c75 size_t nrows, ncols, perpage; local
115 ncols = (cols + 2)/(maxlen + 8);
116 ncols = min(ncols, n_de);
117 ncols = max(ncols, 1U);
118 colwidth = (cols + 2)/ncols;
119 perpage = ncols * (rows - 1);
124 nrows = ((endpage-i) + ncols - 1)/ncols;
[all...]
/external/eigen/Eigen/src/Core/
H A DTranspose.h82 void resize(Index nrows, Index ncols) { argument
83 m_matrix.resize(ncols,nrows);
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h378 StorageIndex ncols = super[k + 1] - super[k]; local
381 Map<const Array<Scalar,1,Dynamic>, 0, InnerStride<> > sk(x + px[k], ncols, InnerStride<>(nrows+1));
/external/syslinux/com32/lib/sys/vesa/
H A Ddrawtxt.c74 static void vesacon_update_characters(int row, int col, int nrows, int ncols) argument
123 for (jx = 1, j = width * ncols + 1; j >= 0; j--) {
237 int ncols = x1 - x0 + 1; local
240 vesacon_fill(ptr, fill, ncols);
244 vesacon_touch(y0, x0, y1 - y0 + 1, ncols);
/external/swiftshader/third_party/LLVM/lib/Support/
H A Dregcomp.c1227 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1230 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1244 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1248 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
/external/llvm/lib/Support/
H A Dregcomp.c1265 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1268 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1282 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1286 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
/external/pdfium/core/fxge/
H A Dcfx_renderdevice.cpp1050 int ncols = pGlyph->GetWidth(); local
1053 if (!bitmap->CompositeMask(left.ValueOrDie(), top.ValueOrDie(), ncols,
1061 ncols /= 3;
1066 end_col_safe += ncols;
/external/python/cpython2/Modules/
H A D_cursesmodule.c750 int nlines, ncols, begin_y, begin_x; local
753 ncols = 0;
760 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
761 &nlines,&ncols,&begin_y,&begin_x))
769 win = derwin(self->win,nlines,ncols,begin_y,begin_x);
1445 int nlines, ncols, begin_y, begin_x; local
1448 ncols = 0;
1455 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
1456 &nlines,&ncols,&begin_y,&begin_x))
1464 /* printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_
2221 int nlines, ncols; local
2241 int nlines, ncols, begin_y=0, begin_x=0; local
[all...]
/external/python/cpython3/Modules/
H A D_cursesmodule.c1016 int nlines, ncols, begin_y, begin_x; local
1019 ncols = 0;
1026 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
1027 &nlines,&ncols,&begin_y,&begin_x))
1035 win = derwin(self->win,nlines,ncols,begin_y,begin_x);
1834 int nlines, ncols, begin_y, begin_x; local
1837 ncols = 0;
1844 if (!PyArg_ParseTuple(args, "iiii;nlines,ncols,begin_y,begin_x",
1845 &nlines,&ncols,&begin_y,&begin_x))
1853 /* printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_
2707 int nlines, ncols; local
2727 int nlines, ncols, begin_y=0, begin_x=0; local
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A Dregcomp.c1265 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1268 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1282 int ncols = (g->ncsets+(CHAR_BIT-1)) / CHAR_BIT; local
1286 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 864 milliseconds