Searched defs:newBuf (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_expand_buf.cc49 ExpandBuf* newBuf = new ExpandBuf; local
50 newBuf->storage = reinterpret_cast<uint8_t*>(malloc(kInitialStorage));
51 newBuf->curLen = 0;
52 newBuf->maxLen = kInitialStorage;
53 return newBuf;
/art/runtime/
H A Dcheck_jni.cc935 uint8_t* newBuf = DebugAlloc(newLen); local
938 uint16_t* pat = reinterpret_cast<uint16_t*>(newBuf);
944 memcpy(newBuf + kGuardLen / 2, buf, len);
951 *reinterpret_cast<uLong*>(newBuf) = adler;
954 GuardedCopy* pExtra = reinterpret_cast<GuardedCopy*>(newBuf);
960 return newBuf + kGuardLen / 2;

Completed in 153 milliseconds