Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-stack.cc70 Address new_memory = NewArray<byte>(static_cast<int>(size)); in EnsureCapacity() local
73 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()
/external/libmicrohttpd/src/examples/
Dmhd2spdy_structures.c133 void *new_memory; in au_malloc() local
135 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()
/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()