Home
last modified time | relevance | path

Searched refs:new_memory (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/regexp/
Dregexp-stack.cc66 byte* new_memory = NewArray<byte>(size); in EnsureCapacity() local
69 MemCopy(new_memory + size - thread_local_.memory_size_, in EnsureCapacity()
73 thread_local_.memory_ = new_memory; in EnsureCapacity()
76 reinterpret_cast<Address>(new_memory) + kStackLimitSlack * kPointerSize; in EnsureCapacity()
/external/tensorflow/tensorflow/examples/speech_commands/
Dmodels.py576 new_memory = memory[:, :, num_new_frames:]
577 new_memory = tf.concat([new_memory, activations_time], 2)
578 tf.assign(memory, new_memory)
579 activations_time = new_memory
/external/clang/test/Analysis/
Dmalloc.c1691 char *new_memory = realloc(*memory, 47); in testReallocEscaped() local
1692 if (new_memory != 0) { in testReallocEscaped()
1693 *memory = new_memory; in testReallocEscaped()
/external/libchrome/base/metrics/
Dfield_trial_unittest.cc1224 void* new_memory = field_trial_list.field_trial_allocator_->shared_memory(); in TEST() local
1226 EXPECT_EQ(memory, new_memory); in TEST()