Lines Matching defs:src
8 #include "src/base/atomic-utils.h"
9 #include "src/common/globals.h"
10 #include "src/common/ptr-compr-inl.h"
11 #include "src/objects/compressed-slots.h"
12 #include "src/objects/heap-object.h"
13 #include "src/objects/map.h"
14 #include "src/objects/maybe-object.h"
15 #include "src/objects/objects.h"
16 #include "src/objects/slots.h"
17 #include "src/utils/memcopy.h"
160 // Copies tagged words from |src| to |dst|. The data spans must not overlap.
161 // |src| and |dst| must be kTaggedSize-aligned.
162 inline void CopyTagged(Address dst, const Address src, size_t num_tagged) {
165 reinterpret_cast<const Tagged_t*>(src), num_tagged);