Home
last modified time | relevance | path

Searched refs:new_cell (Results 1 – 7 of 7) sorted by relevance

/external/libtextclassifier/lang_id/common/
Dregistry.h166 Cell *new_cell = new Cell(key, value, head_); in Add() local
167 head_ = new_cell; in Add()
/external/tensorflow/tensorflow/python/debug/cli/
Dprofile_analyzer_cli.py559 new_cell = profile_data.value(
565 new_row += new_cell
566 new_row += RL(" " * (column_widths[col] - len(new_cell)))
/external/libvterm/src/
Dscreen.c86 ScreenCell *new_cell = new_buffer + row*new_cols + col; in realloc_buffer() local
89 *new_cell = buffer[row * screen->cols + col]; in realloc_buffer()
91 new_cell->chars[0] = 0; in realloc_buffer()
92 new_cell->pen = screen->pen; in realloc_buffer()
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/
Dalgorithms.ipynb1258 " new_cell = 0\n",
1260 " new_cell = board[i][j]\n",
1262 " new_cell = 1\n",
1264 " new_board.append(new_cell)\n",
1408 " new_cell = 0\n",
1412 " new_cell_2, = new_cell,\n",
1420 " new_cell_3, = new_cell,\n",
1434 " new_cell = ag__.utils.run_cond(tf.equal(num_neighbors, 2),\n",
1436 " new_board_1 = ag__.list_append(new_board_1, new_cell)\n",
/external/v8/src/heap/
Dslot-set.h213 uint32_t new_cell = old_cell & ~mask; in Iterate() local
214 if (old_cell != new_cell) { in Iterate()
/external/tensorflow/tensorflow/contrib/rnn/python/ops/
Drnn_cell.py2139 new_cell = math_ops.sigmoid(forget_gate + self._forget_bias) * cell
2140 new_cell += math_ops.sigmoid(input_gate) * math_ops.tanh(new_input)
2141 output = math_ops.tanh(new_cell) * math_ops.sigmoid(output_gate)
2145 new_state = rnn_cell_impl.LSTMStateTuple(new_cell, output)
/external/v8/src/
Dobjects.cc18611 Handle<PropertyCell> new_cell = isolate->factory()->NewPropertyCell(name); in InvalidateEntry() local
18612 new_cell->set_value(cell->value()); in InvalidateEntry()
18613 dictionary->ValueAtPut(entry, *new_cell); in InvalidateEntry()
18619 new_cell->set_property_details(details); in InvalidateEntry()
18630 return new_cell; in InvalidateEntry()