HomeSort by relevance Sort by last modified time
    Searched full:cells (Results 26 - 50 of 574) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/markdown/markdown/extensions/
tables.py 59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
70 c.text = cells[i].strip()
77 """ split a row of text into list of cells. """
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSparseSDF.h 68 btAlignedObjectArray<Cell*> cells; member in struct:btSparseSdf
83 //avoid a crash due to running out of memory, so clamp the maximum number of cells allocated
86 cells.resize(hashsize,0);
92 for(int i=0,ni=cells.size();i<ni;++i)
94 Cell* pc=cells[i];
95 cells[i]=0;
113 for(int i=0;i<cells.size();++i)
115 Cell*& root=cells[i];
129 //printf("GC[%d]: %d cells, PpQ: %f\r\n",puid,ncells,nprobes/(btScalar)nqueries);
139 for(int i=0;i<cells.size();++i
    [all...]
  /external/ceres-solver/internal/ceres/
linear_least_squares_problems.cc 315 row.cells.push_back(Cell(0, 0));
316 row.cells.push_back(Cell(2, 1));
328 row.cells.push_back(Cell(0, 2));
329 row.cells.push_back(Cell(3, 3));
341 row.cells.push_back(Cell(1, 4));
342 row.cells.push_back(Cell(4, 5));
354 row.cells.push_back(Cell(1, 6));
355 row.cells.push_back(Cell(2, 7));
367 row.cells.push_back(Cell(1, 8));
368 row.cells.push_back(Cell(2, 9))
    [all...]
block_jacobi_preconditioner.cc 78 const vector<Cell>& cells = bs->rows[r].cells; local
79 for (int c = 0; c < cells.size(); ++c) {
80 const int col_block_size = bs->cols[cells[c].block_id].size;
81 ConstMatrixRef m(values + cells[c].position,
85 MatrixRef(blocks_[cells[c].block_id],
95 // MatrixRef(blocks_[cells[c].block_id],
detect_structure.cc 54 if (row.cells.front().block_id >= num_eliminate_blocks) {
57 const int e_block_id = row.cells.front().block_id;
81 if (row.cells.size() > 1) {
82 const int f_block_id = row.cells[1].block_id;
86 for (int c = 1; c < row.cells.size(); ++c) {
87 if (*f_block_size != bs.cols[row.cells[c].block_id].size) {
90 << bs.cols[row.cells[c].block_id].size;
visibility.cc 63 const vector<Cell>& cells = block_structure.rows[i].cells; local
64 int block_id = cells[0].block_id;
70 for (int j = 1; j < cells.size(); ++j) {
71 int camera_block_id = cells[j].block_id - num_eliminate_blocks;
  /external/opencv3/samples/python2/
digits.py 12 - Digit images are split into 4 10x10 cells and 16-bin
46 cells = [np.hsplit(row, w//sx) for row in np.vsplit(img, h//sy)]
47 cells = np.array(cells)
49 cells = cells.reshape(-1, sy, sx)
50 return cells
  /frameworks/base/docs/html/guide/topics/ui/layout/
grid.jd 29 columns, or cells. The table will have as many columns as the row with the
30 most cells. A table can leave cells empty. Cells can span multiple columns,
36 <strong>Note:</strong> Cells cannot span multiple rows.
42 cells, each of which is defined by any kind of other View. So, the cells of
48 The following sample layout has two rows and two cells in each. The
178 but for the cells, you can use any kind of {@link android.view.View} element. In this example, a
  /external/gemmlowp/internal/
kernel.h 61 // Explanation of gemmlowp kernel formats and "cells"
67 // they consist of a number of sub-blocks, which we call "cells",
79 // contains a CellFormat and a number of cells; cells are only ever
95 // 3 cells, each cell having dimensions (width=3, depth=4), laid out in
97 // DepthMajor means column-major, so the LHS cells are of size 3x4 in
111 // 2 cells each having dimensions (width=5, depth=4), laid out in
113 // DepthMajor means row-major, so the RHS cells are of size 4x5 in
138 // cells. These cells are always stacked in the Width dimension
    [all...]
pack_neon.h 161 template <int Cells>
162 using DepthMajorSideFormatNCells4x2 = KernelSideFormat<CellFormat<4, 2>, Cells>;
164 template <typename QuantizationParams, int Cells>
167 PackedSideBlock<DepthMajorSideFormatNCells4x2<Cells> > >
170 PackedSideBlock<DepthMajorSideFormatNCells4x2<Cells> > > {
172 typedef DepthMajorSideFormatNCells4x2<Cells> KernelSideFormat;
194 // Reorder the data within registers to make DepthMajor 4x2 cells
211 // Store the resulting DepthMajor 4x2 cells in the destination packed block
266 template <int Cells>
268 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, Cells>;
    [all...]
pack_SSE.h 61 template <int Cells>
63 KernelSideFormat<CellFormat<4, 2, CellOrder::WidthMajor>, Cells>;
65 template <typename QuantizationParams, int Cells>
68 PackedSideBlock<WidthMajorSideFormatNCells4x2<Cells> > >
71 PackedSideBlock<WidthMajorSideFormatNCells4x2<Cells> > > {
73 typedef WidthMajorSideFormatNCells4x2<Cells> KernelSideFormat;
  /external/deqp/doc/testspecs/GLES2/
functional.stencil.txt 39 The viewport is divided into NxN cells, where each cell is assigned a target
41 two cells that target out-of-range stencil values. The amount of cells is scaled
42 based on available stencil bits. For example with 8b there are 6x6 cells.
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TiledMapTileLayer.java 30 private Cell[][] cells; field in class:TiledMapTileLayer
64 this.cells = new Cell[width][height];
73 return cells[x][y];
84 cells[x][y] = cell;
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
CellSpan.java 25 * Exercise table layout with cells spanning.
FixedWidth.java 25 * Exercise table layout with cells having a fixed width and height.
HorizontalGravity.java 25 * Exercise table layout with cells using a horizontal gravity.
VerticalGravity.java 25 * Exercise table layout with cells using a vertical gravity.
Weight.java 25 * Exercise table layout with cells having a weight.
  /external/autotest/client/cros/cellular/
labconfig_write_stanzas 52 if cell not in labconfig_data.CELLS:
56 find_names(f.Visit, labconfig_data.CELLS[cell])
labconfig.py 70 """Extracts the named cell from labconfig_data.CELLS."""
76 if name not in labconfig_data.CELLS:
78 'Could not find cell %s, valid cells are %s' % (
79 name, labconfig_data.CELLS.keys()))
81 return labconfig_data.CELLS[name]
  /external/jemalloc/include/jemalloc/internal/
ckh.h 17 * There are 2^LG_CKH_BUCKET_CELLS cells in each hash table bucket. Try to fit
50 * 2^LG_CKH_BUCKET_CELLS cells per bucket.
  /external/kernel-headers/original/uapi/linux/
sonet.h 17 __HANDLE_ITEM(tx_cells); /* cells sent */ \
18 __HANDLE_ITEM(rx_cells); /* cells received */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
sonet.h 17 __HANDLE_ITEM(tx_cells); /* cells sent */ \
18 __HANDLE_ITEM(rx_cells); /* cells received */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
sonet.h 17 __HANDLE_ITEM(tx_cells); /* cells sent */ \
18 __HANDLE_ITEM(rx_cells); /* cells received */
  /external/autotest/frontend/client/src/autotest/common/spreadsheet/
Spreadsheet.java 272 private CellInfo getCellInfo(CellInfo[][] cells, int row, int column) {
273 if (cells[row][column] == null) {
274 cells[row][column] = new CellInfo(null, null, " ");
276 return cells[row][column];
308 private void fillHeaderCells(CellInfo[][] cells, Header fields, List<Header> headerValues,
327 cells[headerIndex][fieldIndex] = cellInfo;
330 cells[fieldIndex][counter[fieldIndex]] = cellInfo;
529 CellInfo[][] cells; local
531 cells = rowHeaderCells;
535 cells = columnHeaderCells
    [all...]

Completed in 489 milliseconds

12 3 4 5 6 7 8 91011>>