Searched defs:sz (Results 1 - 4 of 4) sorted by relevance

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

Completed in 105 milliseconds