Searched refs:sz (Results 1 - 6 of 6) sorted by relevance

/art/runtime/native/
H A Dsun_misc_Unsafe.cc303 size_t sz = (size_t)size; local
304 memcpy(reinterpret_cast<void *>(dst), reinterpret_cast<void *>(src), sz); local
314 size_t sz = size / sizeof(T); local
316 for (size_t i = 0; i < sz; ++i) {
328 size_t sz = size / sizeof(T); local
330 for (size_t i = 0; i < sz; ++i) {
349 size_t sz = (size_t)size; local
354 copyToArray(srcAddr, MakeObjPtr(dst->AsByteSizedArray()), dst_offset, sz);
356 copyToArray(srcAddr, MakeObjPtr(dst->AsShortSizedArray()), dst_offset, sz);
358 copyToArray(srcAddr, MakeObjPtr(dst->AsIntArray()), dst_offset, sz);
380 size_t sz = (size_t)size; local
[all...]
/art/runtime/base/unix_file/
H A Dfd_file.cc298 off_t sz = static_cast<off_t>(size); local
300 size < 0 || static_cast<int64_t>(sz) != size ||
301 sz > std::numeric_limits<off_t>::max() - off) {
310 off_t end = off + sz;
/art/compiler/utils/
H A Dswap_space.h72 FreeBySizeEntry(size_t sz, FreeByStartSet::const_iterator entry) argument
73 : size(sz), free_by_start_entry(entry) { }
/art/runtime/gc/
H A Dallocation_record.cc236 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + local
240 << PrettySize(sz * records->alloc_record_max_) << ")";
H A Dallocation_record.h239 size_t sz = entries_.size(); local
240 return std::min(recent_record_max_, sz);
/art/compiler/optimizing/
H A Dcode_generator.h893 for (size_t i = 0, sz = e1->Size(); i < sz; ++i) {

Completed in 1269 milliseconds