Searched refs:sz (Results 1 – 9 of 9) sorted by relevance
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 318 size_t sz = (size_t)size; in Unsafe_copyMemory() local 319 memcpy(reinterpret_cast<void *>(dst), reinterpret_cast<void *>(src), sz); in Unsafe_copyMemory() 329 size_t sz = size / sizeof(T); in copyToArray() local 331 for (size_t i = 0; i < sz; ++i) { in copyToArray() 343 size_t sz = size / sizeof(T); in copyFromArray() local 345 for (size_t i = 0; i < sz; ++i) { in copyFromArray() 364 size_t sz = (size_t)size; in Unsafe_copyMemoryToPrimitiveArray() local 370 copyToArray(srcAddr, ObjPtr<mirror::ByteArray>::DownCast(dst), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray() 373 copyToArray(srcAddr, ObjPtr<mirror::ShortArray>::DownCast(dst), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray() 376 copyToArray(srcAddr, ObjPtr<mirror::IntArray>::DownCast(dst), dst_offset, sz); in Unsafe_copyMemoryToPrimitiveArray() [all …]
|
/art/tools/jvmti-agents/field-counts/ |
D | fieldcount.cc | 185 for (auto sz : class_sizes) { in DataDumpRequestCb() local 186 size_t count = class_counts[sz.first]; in DataDumpRequestCb() 188 << "\t" << sz.first in DataDumpRequestCb() 190 << "\t" << sz.second; in DataDumpRequestCb()
|
/art/compiler/utils/ |
D | swap_space.h | 73 FreeBySizeEntry(size_t sz, FreeByStartSet::const_iterator entry) in FreeBySizeEntry() 74 : size(sz), free_by_start_entry(entry) { } in FreeBySizeEntry()
|
/art/runtime/gc/ |
D | allocation_record.cc | 156 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled() local 160 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
|
D | allocation_record.h | 244 size_t sz = entries_.size(); in GetRecentAllocationSize() local 245 return std::min(recent_record_max_, sz); in GetRecentAllocationSize()
|
/art/libartbase/base/unix_file/ |
D | fd_file.cc | 476 off_t sz = static_cast<off_t>(size); in Copy() local 478 size < 0 || static_cast<int64_t>(sz) != size || in Copy() 479 sz > std::numeric_limits<off_t>::max() - off) { in Copy() 488 off_t end = off + sz; in Copy()
|
/art/perfetto_hprof/ |
D | perfetto_hprof.cc | 210 ssize_t sz = perfetto::profiling::NormalizeCmdLine(&cmdline_ptr, static_cast<size_t>(rd + 1)); in OnSetup() local 211 if (sz == -1) { in OnSetup() 224 if (sz == other_sz && strncmp(cmdline_ptr, other_ptr, static_cast<size_t>(sz)) == 0) { in OnSetup()
|
/art/compiler/optimizing/ |
D | code_generator.h | 962 for (size_t i = 0, sz = e1->Size(); i < sz; ++i) { in HaveSameStackMap() local
|
/art/test/710-varhandle-creation/src/ |
D | Main.java | 50 static boolean sz; field in Main
|