Searched refs:sz (Results 1 – 5 of 5) sorted by relevance
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 300 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/ |
D | fd_file.cc | 268 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/ |
D | allocation_record.cc | 235 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled() local 239 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
|
D | allocation_record.h | 238 size_t sz = entries_.size(); in GetRecentAllocationSize() local 239 return std::min(recent_record_max_, sz); in GetRecentAllocationSize()
|
/art/compiler/optimizing/ |
D | code_generator.h | 770 for (size_t i = 0, sz = e1->Size(); i < sz; ++i) { in HaveSameStackMap() local
|