HomeSort by relevance Sort by last modified time
    Searched defs:cell (Results 26 - 50 of 294) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/memcheck/tests/
leak-pool.c 9 struct cell struct
11 struct cell *next;
92 struct cell *cells_static[N];
97 struct cell *cells_local[N];
101 struct cell **cells = static_roots ? cells_static : cells_local;
114 cells[i] = allocate_from_pool(p, sizeof(struct cell));
119 p->buf+(10 * sizeof(struct cell)),
120 20 * sizeof(struct cell) + 2);
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 18 class cell(aetools.ComponentItem): class in inherits:aetools.ComponentItem
19 """cell - A cell """
22 """formula - the formula of the cell """
26 """protection - Indicates whether value or formula in the cell can be changed """
30 cells = cell
53 cell._superclassnames = []
54 cell._privpropdict = {
58 cell._privelemdict = {
87 'ccel' : cell,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 18 class cell(aetools.ComponentItem): class in inherits:aetools.ComponentItem
19 """cell - A cell """
22 """formula - the formula of the cell """
26 """protection - Indicates whether value or formula in the cell can be changed """
30 cells = cell
53 cell._superclassnames = []
54 cell._privpropdict = {
58 cell._privelemdict = {
87 'ccel' : cell,
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bench/
TiledMapBench.java 31 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
75 Cell cell = new Cell(); local
76 cell.setTile(new StaticTiledMapTile(splitTiles[ty][tx]));
77 layer.setCell(x, y, cell);
  /external/ceres-solver/internal/ceres/
partitioned_matrix_view_impl.h 64 const vector<Cell>& cells = bs->rows[r].cells;
103 // by the first cell in each row block.
106 const Cell& cell = bs->rows[r].cells[0]; local
109 const int col_block_id = cell.block_id;
113 values + cell.position, row_block_size, col_block_size,
134 const vector<Cell>& cells = bs->rows[r].cells;
149 const vector<Cell>& cells = bs->rows[r].cells;
169 // by the first cell in each row block.
172 const Cell& cell = bs->rows[r].cells[0] local
258 Cell& cell = row.cells.back(); local
309 const Cell& cell = bs->rows[r].cells[0]; local
    [all...]
schur_eliminator_impl.h 135 const Cell& cell = row.cells[c]; local
137 &(chunk.buffer_layout), cell.block_id, buffer_size)) {
138 buffer_size += e_block_size * bs->cols[cell.block_id].size;
332 const Cell& e_cell = row.cells.front();
388 const Cell& e_cell = row.cells.front();
461 const Cell& e_cell = row.cells.front();
  /external/iproute2/tc/
q_cbq.c 32 fprintf(stderr, " [ prio NUMBER ] [ cell BYTES ] [ ewma LOG ]\n");
41 fprintf(stderr, " [ cell BYTES ] [ ewma LOG ]\n");
83 } else if (matches(*argv, "cell") == 0) {
84 unsigned cell; local
87 if (get_size(&cell, *argv)) {
88 explain1("cell");
92 if ((1<<i) == cell)
95 fprintf(stderr, "cell must be 2^n\n");
262 } else if (matches(*argv, "cell") == 0) {
263 unsigned cell; local
    [all...]
tc_util.c 367 int cell; local
370 if (get_integer(&cell, slash+1, 0))
375 if ((1<<i) == cell) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
HexagonalTiledMapTest.java 28 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
68 Cell cell = new Cell(); local
69 cell.setTile(tiles[id]);
70 layer.setCell(x, y, cell);
  /external/v8/src/arm/
macro-assembler-arm.cc 249 Handle<Cell> cell = isolate()->factory()->NewCell(value); local
250 mov(dst, Operand(cell));
251 ldr(dst, FieldMemOperand(dst, Cell::kValueOffset));
479 stop("Unaligned cell in write barrier");
543 stop("Unaligned cell in write barrier");
    [all...]
assembler-arm-inl.h 178 Handle<Cell> RelocInfo::target_cell_handle() {
179 DCHECK(rmode_ == RelocInfo::CELL);
181 return Handle<Cell>(reinterpret_cast<Cell**>(address));
185 Cell* RelocInfo::target_cell() {
186 DCHECK(rmode_ == RelocInfo::CELL);
187 return Cell::FromValueAddress(Memory::Address_at(pc_));
191 void RelocInfo::set_target_cell(Cell* cell,
194 DCHECK(rmode_ == RelocInfo::CELL);
199 cell); local
    [all...]
  /external/v8/src/runtime/
runtime-object.cc 65 PropertyCell* cell = PropertyCell::cast(dictionary->ValueAt(entry)); local
66 if (cell->property_details().type() == DATA) {
67 Object* value = cell->value();
300 // Now update cell in the script context.
301 Handle<PropertyCell> cell = it.GetPropertyCell(); local
302 script_context->set(slot, *cell);
305 // Store empty_property_cell here to release the outdated property cell.
  /frameworks/base/graphics/java/android/graphics/
Atlas.java 169 * The algorithm starts with a single empty cell covering the entire
200 * After placing a bitmap in an empty cell, the algorithm splits
229 * fit. It will then split the now occupied cell and proceed onto
233 private final Cell mRoot = new Cell();
240 * A cell represents a sub-rectangle of the atlas. A cell is
244 private static class Cell {
251 Cell next;
255 return String.format("cell[x=%d y=%d width=%d height=%d", x, y, width, height)
274 Cell cell = mRoot.next; local
    [all...]
  /packages/apps/Launcher2/
print_db.py 50 def print_intent(out, id, i, cell):
51 if cell:
53 cgi.escape(cell, True)
57 def print_icon(out, id, i, cell):
58 if cell:
62 f.write(cell)
65 def print_cell(out, id, i, cell):
66 if not cell is None:
67 out.write(cgi.escape(str(cell)))
74 def render_cell_info(out, cell, occupied)
158 cell = row[i] variable
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
EditableDialogCellEditor.java 80 protected Control createContents(Composite cell) {
81 text = new Text(cell, SWT.SINGLE);
95 // disposed this cell editor
130 text.setFont(cell.getFont());
131 text.setBackground(cell.getBackground());
218 * Processes a modify event that occurred in this text cell editor.
260 * value and deactivating this cell editor.
337 * Returns <code>true</code> if this cell editor is
358 * Processes a key release event that occurred in this cell editor.
473 // This means that in some cases the cell editor will still b
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
TideMapLoader.java 32 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
240 Cell cell = new Cell(); local
241 cell.setTile(currentTileSet.getTile(firstgid + currentChild.getIntAttribute("Index")));
242 layer.setCell(x++, y, cell);
258 Cell cell = new Cell(); local
259 cell.setTile(new AnimatedTiledMapTile(interval / 1000f, frameTiles));
    [all...]
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 123 int cell = mGameView.getSelection(); local
124 mButtonNext.setEnabled(cell >= 0);
138 int cell = mGameView.getSelection(); local
139 if (cell >= 0) {
141 mGameView.setCell(cell, player);
152 // Pick a non-used cell at random. That's about all the AI you need for this game.
  /external/guava/guava/src/com/google/common/collect/
DenseImmutableTable.java 53 DenseImmutableTable(ImmutableList<Cell<R, C, V>> cellList,
65 Cell<R, C, V> cell = cellList.get(i); local
66 R rowKey = cell.getRowKey();
67 C columnKey = cell.getColumnKey();
72 values[rowIndex][columnIndex] = cell.getValue();
265 Cell<R, C, V> getCell(int index) {
SparseImmutableTable.java 37 SparseImmutableTable(ImmutableList<Cell<R, C, V>> cellList,
52 Cell<R, C, V> cell = cellList.get(i); local
53 R rowKey = cell.getRowKey();
54 C columnKey = cell.getColumnKey();
55 V value = cell.getValue();
96 Cell<R, C, V> getCell(int index) {
  /external/icu/icu4c/source/tools/toolutil/
ucmstate.c 333 int32_t entry, sum, state, cell, count; local
353 for(cell=0; cell<256; ++cell) {
354 entry=states->stateTable[state][cell];
358 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
362 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum);
373 for(cell=0; cell<256; ++cell) {
425 int32_t entry, state, cell, count; local
928 int32_t state, cell, entry; local
    [all...]
  /external/jemalloc/src/
ckh.c 49 * Search bucket for key and return the cell number if found; SIZE_T_MAX
55 ckhc_t *cell; local
59 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i];
60 if (cell->key != NULL && ckh->keycomp(key, cell->key))
68 * Search table for key and return cell number if found; SIZE_T_MAX otherwise.
73 size_t hashes[2], bucket, cell; local
81 cell = ckh_bucket_search(ckh, bucket, key);
82 if (cell != SIZE_T_MAX)
83 return (cell);
95 ckhc_t *cell; local
128 ckhc_t *cell; local
486 size_t cell; local
517 size_t cell; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
IsometricStaggeredTiledMapRenderer.java 27 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
71 final TiledMapTileLayer.Cell cell = layer.getCell(x, y); local
72 if (cell == null) continue;
73 final TiledMapTile tile = cell.getTile();
76 final boolean flipX = cell.getFlipHorizontally();
77 final boolean flipY = cell.getFlipVertically();
78 final int rotations = cell.getRotation();
135 case Cell.ROTATE_90: {
149 case Cell.ROTATE_180:
    [all...]
IsometricTiledMapRenderer.java 27 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
116 final TiledMapTileLayer.Cell cell = layer.getCell(col, row); local
117 if (cell == null) continue;
118 final TiledMapTile tile = cell.getTile();
121 final boolean flipX = cell.getFlipHorizontally();
122 final boolean flipY = cell.getFlipVertically();
123 final int rotations = cell.getRotation();
179 case Cell.ROTATE_90: {
193 case Cell.ROTATE_180:
    [all...]
OrthogonalTiledMapRenderer.java 46 import com.badlogic.gdx.maps.tiled.TiledMapTileLayer.Cell;
90 final TiledMapTileLayer.Cell cell = layer.getCell(col, row); local
91 if (cell == null) {
95 final TiledMapTile tile = cell.getTile();
98 final boolean flipX = cell.getFlipHorizontally();
99 final boolean flipY = cell.getFlipVertically();
100 final int rotations = cell.getRotation();
156 case Cell.ROTATE_90: {
170 case Cell.ROTATE_180:
    [all...]
  /external/skia/samplecode/
SampleAtlas.cpp 147 const SkScalar cell = SkIntToScalar(kCellSize); local
153 fTex[i].setXYWH(sx, sy, cell, cell);
155 fRec[i].fCenter.set(sx + cell/2, sy + 3*cell/4);

Completed in 519 milliseconds

12 3 4 5 6 7 8 91011>>