HomeSort by relevance Sort by last modified time
    Searched defs:cell (Results 151 - 175 of 349) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/dtc/
flattree.c 51 void (*cell)(void *, cell_t); member in struct:emitter
108 .cell = bin_emit_cell,
226 .cell = asm_emit_cell,
279 emit->cell(etarget, prop->val.len);
280 emit->cell(etarget, nameoff);
291 emit->cell(etarget, tree->basenamelen+1);
292 emit->cell(etarget, stringtable_insert(strbuf, "name"));
  /external/openssh/
session.c 1580 char cell[64]; local
    [all...]
  /external/python/cpython2/Modules/
svmodule.c 685 PyObject* cell = PyTuple_GetItem(v, j); local
686 if (!cell)
689 if (!PyInt_Check(cell)) {
694 case 0: mapp[i].red = PyInt_AsLong(cell); break;
695 case 1: mapp[i].blue = PyInt_AsLong(cell); break;
696 case 2: mapp[i].green = PyInt_AsLong(cell); break;
  /external/v8/src/
code-stubs.cc 1528 Node* cell = assembler.LoadWeakCellValue(weak_cell); local
    [all...]
compiler.cc 218 Handle<WeakCell> cell = Code::WeakCellFor(code); local
221 heap->AddWeakNewSpaceObjectToCodeDependency(object, cell);
225 DependentCode::InsertWeakCode(dep, DependentCode::kWeakCodeGroup, cell);
241 RelocInfo::ModeMask(RelocInfo::CELL);
244 if (mode == RelocInfo::CELL &&
    [all...]
  /external/v8/src/heap/
incremental-marking.cc 681 WeakCell* cell = WeakCell::cast(retained_maps->Get(i)); local
682 if (cell->cleared()) continue;
685 Map* map = Map::cast(cell->value());
726 // 4) Remove weak cell with live values from the list of weak cells, they
    [all...]
  /external/v8/src/wasm/
wasm-objects.cc 1171 Handle<WeakCell> cell = isolate->factory()->NewWeakCell(instance); local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 758 int [] cell = new int[count]; local
759 System.arraycopy(indices, 0, cell, 0, count);
760 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
    [all...]
  /libcore/ojluni/src/main/native/
zip_util.c 714 /* Record the CEN offset and the name hash in our hash cell. */
725 const jzcell* cell = &entries[chain]; local
726 if (cell->hash == entries[i].hash) {
727 const char* cenStart = (const char *) cenbuf + cell->cenpos - cenpos;
736 chain = cell->next;
1016 * Return a new initialized jzentry corresponding to a given hash cell.
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 722 int [] cell = new int[count]; local
723 System.arraycopy(indices, 0, cell, 0, count);
724 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
  /test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
VtsMultiDeviceTestResultParser.java 356 String cell = row.isNull(colIndex) ? "" : row.getString(colIndex); local
360 int padLength = columnLength.get(colIndex) - cell.length();
364 sb.append(cell);
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursorTest.java 524 Object cell = mRows[mPos].get(columnIndex); local
525 return (cell == null) ? null : cell.toString();
  /external/freetype/src/smooth/
ftgrays.c 48 /* coverage of the outline on each pixel cell. */
70 /* each pixel cell. */
398 typedef int TArea; /* cell areas, coordinate products */
493 PCell cell = ras.ycells[y - ras.min_ey]; local
498 for ( ; cell != NULL; cell = cell->next )
500 cell->x, cell->cover, cell->area )
515 PCell *pcell, cell; local
1303 PCell cell = ras.ycells[y - ras.min_ey]; local
    [all...]
  /external/icu/icu4c/source/common/
ubidi.c 1838 uint8_t cell, oldStateSeq, actionSeq; local
2110 uint8_t gprop, resProp, cell; local
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayCalendarDemo.java 538 // calendar cell contains a given date.
570 * to the cell coordinates on the calendar (0-based)
574 int cell = (date + firstDayInMonth - firstDayOfWeek - minDay); local
576 cell += daysInWeek;
579 pos.x = cell % daysInWeek;
580 pos.y = cell / daysInWeek;
683 // Coordinates of lower-left corner of cell.
  /external/pdfium/third_party/freetype/src/smooth/
ftgrays.c 48 /* coverage of the outline on each pixel cell. */
70 /* each pixel cell. */
381 /* determine the type used to store cell areas. This normally takes at */
556 /* Record the current cell in the table. */
561 PCell *pcell, cell; local
571 cell = *pcell;
572 if ( cell == NULL || cell->x > x )
575 if ( cell->x == x )
578 pcell = &cell->next
602 PCell cell = gray_find_cell( RAS_VAR ); local
1369 PCell cell; local
1400 PCell cell = ras.ycells[yindex]; local
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 2226 Handle<WeakCell> cell = Map::WeakCellForMap(known_map_); local
    [all...]
  /external/v8/src/builtins/
builtins-array.cc 2498 Node* cell = assembler.LoadRoot(Heap::kArrayProtectorRootIndex); local
2518 Node* cell = assembler.LoadRoot(Heap::kArrayProtectorRootIndex); local
2588 Node* cell = local
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc 2231 Handle<WeakCell> cell = Map::WeakCellForMap(known_map_); local
    [all...]
  /external/v8/src/interpreter/
interpreter-assembler.cc 507 Node* cell = LoadObjectField(function, JSFunction::kFeedbackVectorOffset); local
508 Node* vector = LoadObjectField(cell, Cell::kValueOffset);
561 // We don't know that we have a weak cell. We might have a private symbol
808 Comment("check if weak cell");
813 // If the weak cell is cleared, we have a new chance to become
815 Comment("check if weak cell is cleared");
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 2412 Handle<WeakCell> cell = Map::WeakCellForMap(known_map_); local
    [all...]
  /external/v8/src/mips64/
code-stubs-mips64.cc 2419 Handle<WeakCell> cell = Map::WeakCellForMap(known_map_); local
    [all...]
  /external/v8/src/ppc/
code-stubs-ppc.cc 2370 Handle<WeakCell> cell = Map::WeakCellForMap(known_map_); local
    [all...]
  /external/v8/src/s390/
code-stubs-s390.cc 2342 Handle<WeakCell> cell = Map::WeakCellForMap(known_map_); local
    [all...]
  /external/v8/src/x64/
code-stubs-x64.cc 2195 Handle<WeakCell> cell = Map::WeakCellForMap(known_map_); local
    [all...]

Completed in 1164 milliseconds

1 2 3 4 5 67 8 91011>>