/external/tensorflow/tensorflow/python/keras/layers/ |
D | recurrent_v2.py | 1220 (last_output, outputs, new_h, new_c, 1261 last_output, outputs, new_h, new_c, runtime = gpu_lstm( 1264 last_output, outputs, new_h, new_c, runtime = standard_lstm( 1267 (last_output, outputs, new_h, new_c, 1270 states = [new_h, new_c] 1637 (last_output, outputs, new_h, new_c, 1662 last_output, outputs, new_h, new_c, runtime = defun_standard_lstm(**params) 1665 return last_output, outputs, new_h, new_c, runtime
|
/external/python/cpython2/Lib/test/ |
D | test_cookielib.py | 1635 new_c = MozillaCookieJar(filename, 1637 new_c.load(ignore_discard=ignore_discard) 1641 return new_c 1643 new_c = save_and_restore(c, True) 1644 self.assertEqual(len(new_c), 6) # none discarded 1645 self.assertIn("name='foo1', value='bar'", repr(new_c)) 1647 new_c = save_and_restore(c, False) 1648 self.assertEqual(len(new_c), 4) # 2 of them discarded on save 1649 self.assertIn("name='foo1', value='bar'", repr(new_c))
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast_tri_tmp.h | 69 …int64_t new_c = (c[j]) + ((IMUL64(task->scene->fixed_sample_pos[s][1], plane[j].dcdy) + IMUL64(tas… in TAG() 72 build_mask = BUILD_MASK_LINEAR((int32_t)((new_c - 1) >> (int64_t)FIXED_ORDER), in TAG() 76 build_mask = BUILD_MASK_LINEAR((new_c - 1), in TAG()
|
/external/python/cpython3/Lib/test/ |
D | test_http_cookiejar.py | 1777 new_c = MozillaCookieJar(filename, 1779 new_c.load(ignore_discard=ignore_discard) 1783 return new_c 1785 new_c = save_and_restore(c, True) 1786 self.assertEqual(len(new_c), 6) # none discarded 1787 self.assertIn("name='foo1', value='bar'", repr(new_c)) 1789 new_c = save_and_restore(c, False) 1790 self.assertEqual(len(new_c), 4) # 2 of them discarded on save 1791 self.assertIn("name='foo1', value='bar'", repr(new_c))
|
/external/autotest/site_utils/admin/scripts/ |
D | check_db.out | 193 new_c 1652
|
/external/tensorflow/tensorflow/python/keras/layers/legacy_rnn/ |
D | rnn_cell_impl.py | 800 new_c = add( 803 new_h = multiply(self._activation(new_c), sigmoid(o)) 806 new_state = LSTMStateTuple(new_c, new_h) 808 new_state = array_ops.concat([new_c, new_h], 1)
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | memory_optimizer_test.cc | 278 const NodeDef& new_c = output.node(4); in TEST_F() local 279 EXPECT_EQ(NodeName(c.name()), new_c.name()); in TEST_F() 280 EXPECT_EQ("^swap_out_e_0", new_c.input(1)); in TEST_F()
|
D | constant_folding_test.cc | 1283 const NodeDef& new_c = output.node(0); in TEST_F() local 1284 EXPECT_EQ("e", new_c.name()); in TEST_F() 1285 EXPECT_EQ("Const", new_c.op()); in TEST_F()
|
/external/tensorflow/tensorflow/python/framework/ |
D | function_test.py | 1523 new_c = math_ops.sigmoid(f_g) * cprev + math_ops.sigmoid( 1525 new_c = math_ops.maximum(math_ops.minimum(new_c, 50.0), -50.0) 1526 new_m = math_ops.sigmoid(o_g) * math_ops.tanh(new_c) 1527 return new_m, new_c
|
D | importer_test.py | 205 outer, inner, new_c, outer_inner, outer_inner_c = ( 218 self.assertEqual(new_c.name, "c")
|
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/ |
D | limitations.md | 326 new_c = c.change() 327 return new_c
|
/external/vixl/src/aarch64/ |
D | disasm-aarch64.cc | 10783 char *new_c; in SubstituteIntField() local 10784 uint64_t value = strtoul(c + 1, &new_c, 10); in SubstituteIntField() 10785 c = new_c; in SubstituteIntField() 10792 char *new_c; in SubstituteIntField() local 10793 uint64_t value = strtoul(c + 1, &new_c, 10); in SubstituteIntField() 10794 c = new_c; in SubstituteIntField()
|