Home | History | Annotate | Download | only in collector

Lines Matching full:byte_src

447   const byte* byte_src = reinterpret_cast<const byte*>(src);
448 const byte* limit = byte_src + size;
452 byte_src += page_remain;
456 DCHECK_ALIGNED(reinterpret_cast<uintptr_t>(byte_src), sizeof(uintptr_t));
457 while (byte_src + kPageSize < limit) {
460 const uintptr_t* word_src = reinterpret_cast<const uintptr_t*>(byte_src);
472 byte_src += kPageSize;
476 memcpy(byte_dest, byte_src, limit - byte_src);