Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/runtime/
Dobject_header.cpp195 Span<uint8_t> srcSp(reinterpret_cast<uint8_t *>(srcHandle.GetPtr()), objSize); in ShallowCopy() local
208 reinterpret_cast<std::atomic<uintptr_t> *>(&srcSp[i])->load(std::memory_order_relaxed), in ShallowCopy()
216 …reinterpret_cast<std::atomic<panda::ObjectPointerType> *>(&srcSp[i])->load(std::memory_order_relax… in ShallowCopy()
224 reinterpret_cast<std::atomic<uint8_t> *>(&srcSp[i])->load(std::memory_order_relaxed), in ShallowCopy()
/arkcompiler/ets_runtime/ecmascript/
Decma_string.cpp109 Span<const uint8_t> srcSp(strOrigin.GetDataUtf8(), length); in CopyStringToOldSpace() local
110 EcmaString::MemCopyChars(sp, length, srcSp, length); in CopyStringToOldSpace()
117 Span<const uint16_t> srcSp(strOrigin.GetDataUtf16(), length); in CopyStringToOldSpace() local
118 EcmaString::MemCopyChars(sp, length << 1U, srcSp, length << 1U); in CopyStringToOldSpace()
Decma_string.h645 Span<SrcType> srcSp(src, count); in CopyChars()
648 dstSp[i] = srcSp[i]; in CopyChars()