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

  /external/libbrillo/brillo/
key_value_store_unittest.cc 89 KeyValueStore new_store; local
90 ASSERT_TRUE(new_store.LoadFromString(store_.SaveToString()));
93 EXPECT_TRUE(new_store.GetString(it.first, &value)) << "key: " << it.first;
  /external/v8/src/
collector.h 107 Vector<T> new_store = Vector<T>::New(size_); local
108 WriteTo(new_store);
109 return new_store;
deoptimizer.cc 4175 bool new_store = false; local
    [all...]
  /external/v8/src/parsing/
scanner.cc 76 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
77 MemCopy(new_store.start(), backing_store_.start(), position_);
79 backing_store_ = new_store;
84 Vector<byte> new_store; local
89 new_store = Vector<byte>::New(NewCapacity(new_content_size));
91 new_store = backing_store_;
94 uint16_t* dst = reinterpret_cast<uint16_t*>(new_store.start());
98 if (new_store.start() != backing_store_.start()) {
100 backing_store_ = new_store;
    [all...]
  /external/boringssl/src/ssl/
ssl_x509.cc     [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
variable_scope_test.py 135 new_store = store.copy()
136 with new_store.as_default():
141 self.assertTrue(new_v in new_store.variables())
142 self.assertTrue(new_w in new_store.variables())
143 self.assertTrue(new_v in new_store.trainable_variables())
144 self.assertFalse(new_w in new_store.trainable_variables())
145 self.assertFalse(new_v in new_store.non_trainable_variables())
146 self.assertTrue(new_w in new_store.non_trainable_variables())
151 for v in new_store.variables():
155 for v in new_store.variables()
    [all...]
  /external/tensorflow/tensorflow/python/ops/
variable_scope.py     [all...]

Completed in 232 milliseconds