HomeSort by relevance Sort by last modified time
    Searched refs:new_c (Results 1 - 18 of 18) sorted by null

  /art/runtime/
jvalue.h 44 void SetC(uint16_t new_c) {
45 j = static_cast<int64_t>(new_c); // Zero-extend to 64 bits.
  /art/runtime/mirror/
string.cc 80 ObjPtr<String> String::DoReplace(Thread* self, Handle<String> src, uint16_t old_c, uint16_t new_c) {
87 IsASCII(new_c) &&
97 auto replace = [old_c, new_c](uint16_t c) {
98 return dchecked_integral_cast<uint8_t>((old_c != c) ? c : new_c);
108 auto replace = [old_c, new_c](uint16_t c) {
109 return (old_c != c) ? c : new_c;
string.h 110 // Create a new string where all occurences of `old_c` are replaced with `new_c`.
112 static ObjPtr<String> DoReplace(Thread* self, Handle<String> src, uint16_t old_c, uint16_t new_c)
  /external/tensorflow/tensorflow/core/grappler/optimizers/
model_pruner_test.cc 82 const NodeDef& new_c = output.node(2); local
83 EXPECT_EQ(NodeName(c.name()), new_c.name());
125 const NodeDef& new_c = output.node(2); local
126 EXPECT_EQ(NodeName(c.name()), new_c.name());
136 EXPECT_EQ(1, new_c.input_size());
137 EXPECT_EQ(NodeName(b.name()), new_c.input(0));
277 const NodeDef& new_c = output.node(2); local
278 EXPECT_EQ(NodeName(c.name()), new_c.name());
364 const NodeDef& new_c = output.node(2); local
369 EXPECT_EQ("c", new_c.name())
461 const NodeDef& new_c = output.node(2); local
    [all...]
memory_optimizer_test.cc 277 const NodeDef& new_c = output.node(4); local
278 EXPECT_EQ(NodeName(c.name()), new_c.name());
279 EXPECT_EQ("^swap_out_e_0", new_c.input(1));
constant_folding_test.cc 969 const NodeDef& new_c = output.node(0); local
    [all...]
  /external/tensorflow/tensorflow/contrib/model_pruning/python/layers/
rnn_cells.py 160 new_c = add(
163 new_h = multiply(self._activation(new_c), sigmoid(o))
166 new_state = tf_rnn.LSTMStateTuple(new_c, new_h)
168 new_state = array_ops.concat([new_c, new_h], 1)
  /art/runtime/native/
java_lang_String.cc 98 static jstring String_doReplace(JNIEnv* env, jobject java_this, jchar old_c, jchar new_c) {
102 ObjPtr<mirror::String> result = mirror::String::DoReplace(soa.Self(), string, old_c, new_c);
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
rnn_cell.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cookielib.py     [all...]
  /external/python/cpython2/Lib/test/
test_cookielib.py     [all...]
  /external/python/cpython3/Lib/test/
test_http_cookiejar.py     [all...]
  /external/tensorflow/tensorflow/python/keras/layers/
recurrent_v2.py 632 last_output, outputs, new_h, new_c, runtime = cudnn_lstm(
636 last_output, outputs, new_h, new_c, runtime = standard_lstm(
653 last_output, outputs, new_h, new_c, runtime = defun_standard_lstm(
662 states = [new_h, new_c]
    [all...]
  /external/tensorflow/tensorflow/python/ops/
rnn_cell_impl.py 779 new_c = add(multiply(c, sigmoid(add(f, forget_bias_tensor))),
781 new_h = multiply(self._activation(new_c), sigmoid(o))
784 new_state = LSTMStateTuple(new_c, new_h)
786 new_state = array_ops.concat([new_c, new_h], 1)
    [all...]
  /external/tensorflow/tensorflow/python/framework/
function_test.py     [all...]
importer_test.py 204 outer, inner, new_c, outer_inner, outer_inner_c = (
217 self.assertEqual(new_c.name, "c")
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
rnn_cell_test.py     [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 1339 jchar new_c = shadow_frame->GetVReg(arg_offset + 2); local
    [all...]

Completed in 3401 milliseconds