Home
last modified time | relevance | path

Searched refs:sz (Results 1 – 5 of 5) sorted by relevance

/art/runtime/native/
Dsun_misc_Unsafe.cc300 size_t sz = (size_t)size; in Unsafe_copyMemory() local
301 memcpy(reinterpret_cast<void *>(dst), reinterpret_cast<void *>(src), sz); in Unsafe_copyMemory()
310 size_t sz = size / sizeof(T); in copyToArray() local
312 for (size_t i = 0; i < sz; ++i) { in copyToArray()
323 size_t sz = size / sizeof(T); in copyFromArray() local
325 for (size_t i = 0; i < sz; ++i) { in copyFromArray()
344 size_t sz = (size_t)size; in Unsafe_copyMemoryToPrimitiveArray() local
349 copyToArray(srcAddr, dst->AsByteSizedArray(), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray()
351 copyToArray(srcAddr, dst->AsShortSizedArray(), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray()
353 copyToArray(srcAddr, dst->AsIntArray(), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray()
[all …]
/art/runtime/base/unix_file/
Dfd_file.cc268 off_t sz = static_cast<off_t>(size); in Copy() local
270 size < 0 || static_cast<int64_t>(sz) != size || in Copy()
271 sz > std::numeric_limits<off_t>::max() - off) { in Copy()
280 off_t end = off + sz; in Copy()
/art/runtime/gc/
Dallocation_record.cc235 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled() local
239 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
Dallocation_record.h238 size_t sz = entries_.size(); in GetRecentAllocationSize() local
239 return std::min(recent_record_max_, sz); in GetRecentAllocationSize()
/art/compiler/optimizing/
Dcode_generator.h770 for (size_t i = 0, sz = e1->Size(); i < sz; ++i) { in HaveSameStackMap() local