Searched refs:new_memory (Results 1 – 3 of 3) sorted by relevance
70 Address new_memory = NewArray<byte>(static_cast<int>(size)); in EnsureCapacity() local73 MemCopy(reinterpret_cast<void*>(new_memory + size - in EnsureCapacity()79 thread_local_.memory_ = new_memory; in EnsureCapacity()81 thread_local_.limit_ = new_memory + kStackLimitSlack * kPointerSize; in EnsureCapacity()
133 void *new_memory; in au_malloc() local135 new_memory = malloc(size); in au_malloc()136 if(NULL != new_memory) in au_malloc()139 memset(new_memory, 0, size); in au_malloc()141 return new_memory; in au_malloc()
1615 char *new_memory = realloc(*memory, 47); in testReallocEscaped() local1616 if (new_memory != 0) { in testReallocEscaped()1617 *memory = new_memory; in testReallocEscaped()