/external/gemmlowp/internal/ |
D | pack_neon.h | 214 for (int cell = 0; cell < kCells; cell++) { in Pack() local 216 src_lines_intertwined_4x[2 * cell + outer].val[inner]); in Pack() 220 for (int cell = 0; cell < kCells; cell++) { in Pack() local 222 src_lines_intertwined_4x[2 * cell + outer].val[inner]); in Pack() 233 for (int cell = 0; cell < kCells; cell++) { in Pack() local 234 sums_of_2_cells[cell][i] = vaddl_u8( in Pack() 236 src_lines_intertwined_4x[2 * cell + outer].val[inner]), in Pack() 238 src_lines_intertwined_4x[2 * cell + outer].val[inner])); in Pack() 244 for (int cell = 0; cell < kCells; cell++) { in Pack() local 245 sums_of_4_cells[cell][i] = vreinterpretq_s32_u32( in Pack() [all …]
|
D | kernel_neon.h | 1007 for (int cell = 0; cell < Cells; cell++) { in Run() local 1008 acc[cell] = vdupq_n_u32(0); in Run() 1014 for (int cell = 0; cell < Cells; cell++) { in Run() local 1015 lhs[cell] = vmovl_u8(vld1_u8(lhs_ptr)); in Run() 1023 for (int cell = 0; cell < Cells; cell++) { in Run() local 1024 acc[cell] = vmlal_n_u16(acc[cell], vget_low_u16(lhs[cell]), rhs0); in Run() 1027 for (int cell = 0; cell < Cells; cell++) { in Run() local 1028 acc[cell] = vmlal_n_u16(acc[cell], vget_high_u16(lhs[cell]), rhs1); in Run() 1033 for (int cell = 0; cell < Cells; cell++) { in Run() local 1034 acc[cell] = vaddq_u32( in Run() [all …]
|
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/ |
D | table_printer.js | 60 var cell = new TablePrinterCell(cellText); 61 r.push(cell); 62 return cell; 84 var cell = new TablePrinterCell(headerText); 85 this.rows_[0].push(cell); 86 return cell; 124 var cell = this.getCell_(r, c); 125 if (!cell) 127 if (cell.text.toLowerCase().indexOf(searchString) != -1) 153 var cell = this.getCell_(0, c); [all …]
|
/external/autotest/frontend/client/src/autotest/common/spreadsheet/ |
D | SpreadsheetSelectionManager.java | 30 public void toggleSelected(CellInfo cell) { in toggleSelected() argument 31 if (selectedCells.contains(cell)) { in toggleSelected() 32 deselectCell(cell); in toggleSelected() 33 notifyDeselected(Utils.wrapObjectWithList(cell)); in toggleSelected() 35 selectCell(cell); in toggleSelected() 36 notifySelected(Utils.wrapObjectWithList(cell)); in toggleSelected() 40 private void selectCell(CellInfo cell) { in selectCell() argument 41 selectedCells.add(cell); in selectCell() 42 spreadsheet.setHighlighted(cell, true); in selectCell() 45 private void deselectCell(CellInfo cell) { in deselectCell() argument [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
D | Cell.java | 926 void set (Cell cell) { in set() argument 927 minWidth = cell.minWidth; in set() 928 minHeight = cell.minHeight; in set() 929 prefWidth = cell.prefWidth; in set() 930 prefHeight = cell.prefHeight; in set() 931 maxWidth = cell.maxWidth; in set() 932 maxHeight = cell.maxHeight; in set() 933 spaceTop = cell.spaceTop; in set() 934 spaceLeft = cell.spaceLeft; in set() 935 spaceBottom = cell.spaceBottom; in set() [all …]
|
D | Table.java | 95 Cell cell = cellPool.obtain(); in obtainCell() local 96 cell.setLayout(this); in obtainCell() 97 return cell; in obtainCell() 195 Cell<T> cell = obtainCell(); in add() local 196 cell.actor = actor; in add() 211 cell.column = lastCell.column + lastCell.colspan; in add() 212 cell.row = lastCell.row; in add() 214 cell.column = 0; in add() 215 cell.row = lastCell.row + 1; in add() 218 if (cell.row > 0) { in add() [all …]
|
/external/skia/src/views/mac/ |
D | SkOptionsTableView.mm | 175 - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *… 185 [cell selectItemAtIndex:[(NSPopUpButtonCell*)storedCell indexOfSelectedItem]]; 188 [cell setFloatValue:[storedCell floatValue]]; 191 [cell setState:[(NSButtonCell*)storedCell state]]; 195 [cell setStringValue:[storedCell stringValue]]; 198 [cell setState:[(NSButtonCell*)storedCell state]]; 205 [(SkTextFieldCell*)cell setEditable:NO]; 213 NSCell* cell = option.fCell; 220 [(NSPopUpButtonCell*)cell selectItemAtIndex:[anObject intValue]]; 224 [cell setFloatValue:[anObject floatValue]]; [all …]
|
/external/autotest/frontend/client/src/autotest/common/table/ |
D | TableRenderer.java | 31 for (CellInfo cell : row) { in renderRowsAndAppend() 32 if (cell == null && renderNull) { in renderRowsAndAppend() 34 } else if (cell != null) { in renderRowsAndAppend() 36 if (cell.cssClass != null) { in renderRowsAndAppend() 37 tdAttributes += attributeString("class", cell.cssClass); in renderRowsAndAppend() 39 if (cell.rowSpan > 1) { in renderRowsAndAppend() 40 tdAttributes += attributeString("rowspan", Integer.toString(cell.rowSpan)); in renderRowsAndAppend() 42 if (cell.colSpan > 1) { in renderRowsAndAppend() 43 tdAttributes += attributeString("colspan", Integer.toString(cell.colSpan)); in renderRowsAndAppend() 46 if (cell.widthPx != null) { in renderRowsAndAppend() [all …]
|
D | TableClickWidget.java | 14 private int cell; field in TableClickWidget 21 int row, int cell) { in TableClickWidget() argument 24 this.cell = cell; in TableClickWidget() 40 return cell; in getCell()
|
/external/jemalloc/src/ |
D | ckh.c | 55 ckhc_t *cell; in ckh_bucket_search() local 59 cell = &ckh->tab[(bucket << LG_CKH_BUCKET_CELLS) + i]; in ckh_bucket_search() 60 if (cell->key != NULL && ckh->keycomp(key, cell->key)) in ckh_bucket_search() 73 size_t hashes[2], bucket, cell; in ckh_isearch() local 81 cell = ckh_bucket_search(ckh, bucket, key); in ckh_isearch() 82 if (cell != SIZE_T_MAX) in ckh_isearch() 83 return (cell); in ckh_isearch() 87 cell = ckh_bucket_search(ckh, bucket, key); in ckh_isearch() 88 return (cell); in ckh_isearch() 95 ckhc_t *cell; in ckh_try_bucket_insert() local [all …]
|
/external/skia/experimental/iOSSampleApp/Shared/ |
D | SkOptionListController.mm | 43 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 44 if (cell == nil) { 45 …cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIde… 48 cell.textLabel.text = [fOptions objectAtIndex:indexPath.row]; 50 cell.accessoryType = UITableViewCellAccessoryCheckmark; 51 self.fSelectedCell = cell; 54 cell.accessoryType = UITableViewCellAccessoryNone; 56 return cell; 63 UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath]; 65 self.fSelectedCell = cell; [all …]
|
D | SkOptionsTableViewController.mm | 143 UITableViewCell* cell = (UITableViewCell*)(((UIView*)sender).superview); 144 NSUInteger index = [self convertPathToIndex:[self.tableView indexPathForCell:cell]]; 148 cell.detailTextLabel.text = [NSString stringWithFormat:@"%1.1f", slider.value]; 177 UITableViewCell* cell = [[[UITableViewCell alloc] 180 cell.textLabel.text = title; 181 return cell; 185 UITableViewCell* cell = [[[UITableViewCell alloc] 188 cell.textLabel.text = title; 189 cell.selectionStyle = UITableViewCellSelectionStyleNone; 195 cell.accessoryView = switchView; [all …]
|
/external/libvterm/src/ |
D | screen.c | 39 static int vterm_screen_set_cell(VTermScreen *screen, VTermPos pos, const VTermScreenCell *cell); 175 ScreenCell *cell = getcell(screen, pos.row, pos.col); in putglyph() local 177 if(!cell) in putglyph() 182 cell->chars[i] = info->chars[i]; in putglyph() 183 cell->pen = screen->pen; in putglyph() 186 cell->chars[i] = 0; in putglyph() 198 cell->pen.protected_cell = info->protected_cell; in putglyph() 199 cell->pen.dwl = info->dwl; in putglyph() 200 cell->pen.dhl = info->dhl; in putglyph() 273 ScreenCell *cell = getcell(screen, row, col); in erase_internal() local [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | AbstractTable.java | 101 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) { in putAll() 102 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue()); in putAll() 124 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; in contains() local 125 Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); in contains() 127 row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue())); in contains() 135 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; in remove() local 136 Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); in remove() 138 row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue())); in remove() 174 V transform(Cell<R, C, V> cell) { in valuesIterator() 175 return cell.getValue(); in valuesIterator()
|
D | ImmutableTable.java | 100 for (Cell<? extends R, ? extends C, ? extends V> cell : in copyOf() 106 cellSetBuilder.add(cellOf((R) cell.getRowKey(), in copyOf() 107 (C) cell.getColumnKey(), (V) cell.getValue())); in copyOf() 201 Cell<? extends R, ? extends C, ? extends V> cell) { in put() argument 202 if (cell instanceof Tables.ImmutableCell) { in put() 203 checkNotNull(cell.getRowKey()); in put() 204 checkNotNull(cell.getColumnKey()); in put() 205 checkNotNull(cell.getValue()); in put() 207 Cell<R, C, V> immutableCell = (Cell<R, C, V>) cell; in put() 210 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue()); in put() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ucmstate.c | 333 int32_t entry, sum, state, cell, count; in sumUpStates() local 353 for(cell=0; cell<256; ++cell) { in sumUpStates() 354 entry=states->stateTable[state][cell]; in sumUpStates() 358 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum); in sumUpStates() 362 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum); in sumUpStates() 373 for(cell=0; cell<256; ++cell) { in sumUpStates() 374 entry=states->stateTable[state][cell]; in sumUpStates() 377 … states->stateTable[state][cell]=MBCS_ENTRY_TRANSITION_SET_OFFSET(entry, sum); in sumUpStates() 410 for(cell=0; cell<256; ++cell) { in sumUpStates() 411 entry=states->stateTable[state][cell]; in sumUpStates() [all …]
|
/external/valgrind/memcheck/tests/ |
D | leak-pool.c | 9 struct cell struct 11 struct cell *next; argument 92 struct cell *cells_static[N]; 97 struct cell *cells_local[N]; in main() 101 struct cell **cells = static_roots ? cells_static : cells_local; in main() 114 cells[i] = allocate_from_pool(p, sizeof(struct cell)); in main() 119 p->buf+(10 * sizeof(struct cell)), in main() 120 20 * sizeof(struct cell) + 2); in main()
|
/external/emma/core/java12/com/vladium/emma/report/html/ |
D | ReportGenerator.java | 201 final HTMLTable.ICell cell = coverage.newCell (); in visit() local 202 cell.setText (buf.toString (), true); in visit() 203 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT); in visit() 380 final HTMLTable.ICell cell = coverage.newCell (); in visit() local 381 cell.setText (buf.toString (), true); in visit() 382 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT); in visit() 497 final HTMLTable.ICell cell = coverage.newCell (); in visit() local 498 cell.setText (buf.toString (), true); in visit() 499 if (fail) cell.setClass (CSS_DATA_HIGHLIGHT); in visit() 674 final HTMLTable.ICell cell = coverage.newCell (); in visit() local [all …]
|
/external/v8/src/ |
D | type-feedback-vector.cc | 379 WeakCell* cell = WeakCell::cast(lits); in ClearAllKeyedStoreICs() local 380 if (cell->value()->IsLiteralsArray()) { in ClearAllKeyedStoreICs() 381 vector = LiteralsArray::cast(cell->value())->feedback_vector(); in ClearAllKeyedStoreICs() 455 Handle<WeakCell> cell = Map::WeakCellForMap(map); in InstallHandlers() local 456 array->set(current * 2, *cell); in InstallHandlers() 680 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); in ConfigureMonomorphic() local 681 SetFeedback(*cell); in ConfigureMonomorphic() 692 void LoadGlobalICNexus::ConfigurePropertyCellMode(Handle<PropertyCell> cell) { in ConfigurePropertyCellMode() argument 694 SetFeedback(*isolate->factory()->NewWeakCell(cell)); in ConfigurePropertyCellMode() 707 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_map); in ConfigureMonomorphic() local [all …]
|
/external/autotest/client/cros/cellular/ |
D | forward_8960_screen | 66 [cell] = sys.argv[1:] 75 c = labconfig.Configuration(['--cell=%s' % (cell)]) 77 basestation_ip = c.cell['basestations'][0]['bs_addresses'][0] 78 bastion_ip = c.cell['perfserver']['address'] 102 'cell': cell})
|
D | labconfig.py | 67 self.cell = self._get_cell(self.options.cell) 117 ' Cell = %s \n' % self.options.cell + 122 for dut in self.cell["duts"]: 129 dut['name'], self.options.cell, self.cell['duts']))
|
/external/clang/test/Analysis/ |
D | analyzeOneFunction.m | 39 Test1 *cell = [[[Test1 alloc] init] autorelease]; 42 cell.text = string1; 44 return cell; 48 Test1 *cell = [[[Test1 alloc] init] autorelease]; 51 cell.text = string1; 53 return cell;
|
/external/llvm/test/CodeGen/X86/GC/ |
D | badwriteproto.ll | 11 %cell = bitcast i8* %tmp to %list* 13 %hd.ptr = getelementptr %list, %list* %cell, i32 0, i32 0 16 %tl.ptr = getelementptr %list, %list* %cell, i32 0, i32 0 17 call void @llvm.gcwrite(%list* %tl, %list* %cell, %list** %tl.ptr) 19 ret %cell.2
|
/external/marisa-trie/lib/marisa/ |
D | trie-inline.h | 251 Cell cell; in predict_callback_() local 252 cell.set_louds_pos(get_child(node)); in predict_callback_() 253 if (!louds_[cell.louds_pos()]) { in predict_callback_() 256 cell.set_node(louds_pos_to_node(cell.louds_pos(), node)); in predict_callback_() 257 cell.set_key_id(node_to_key_id(cell.node())); in predict_callback_() 258 cell.set_length(key.length()); in predict_callback_() 260 stack.push_back(cell); in predict_callback_() 288 cell.set_louds_pos(get_child(cur.node())); in predict_callback_() 289 cell.set_node(louds_pos_to_node(cell.louds_pos(), cur.node())); in predict_callback_() 290 cell.set_key_id(node_to_key_id(cell.node())); in predict_callback_() [all …]
|
/external/v8/src/heap/ |
D | slot-set.h | 54 uint32_t cell = bucket[bucket_index][cell_index]; in Remove() local 55 if (cell) { in Remove() 57 if (cell & bit_mask) { in Remove() 119 uint32_t cell = bucket[bucket_index][cell_index]; in Lookup() local 120 return (cell & (1u << bit_index)) != 0; in Lookup() 144 uint32_t cell = current_bucket[i]; in Iterate() local 145 uint32_t old_cell = cell; in Iterate() 146 uint32_t new_cell = cell; in Iterate() 147 while (cell) { in Iterate() 148 int bit_offset = base::bits::CountTrailingZeros32(cell); in Iterate() [all …]
|