Searched defs:src_size (Results 1 - 3 of 3) sorted by relevance

/art/runtime/base/
H A Dbit_vector.cc148 // Update src_size to how many cells we actually care about: where the bit is + 1.
149 uint32_t src_size = BitsToWords(highest_bit + 1); local
152 if (storage_size_ < src_size) {
161 for (uint32_t idx = 0; idx < src_size; idx++) {
218 uint32_t src_size = src->storage_size_; local
221 unsigned int min_size = (storage_size_ > src_size) ? src_size : storage_size_;
/art/runtime/lambda/
H A Dclosure.cc367 size_t src_size,
369 DCHECK_GE(destination_room, src_size);
365 CopyUnsafeAtOffset(size_t offset, void* destination, size_t src_size, size_t destination_room) const argument
/art/runtime/
H A Dtrace.cc889 void Trace::WriteToBuf(const uint8_t* src, size_t src_size) { argument
891 int32_t new_offset = old_offset + static_cast<int32_t>(src_size);
899 if (src_size >= buffer_size_) {
900 if (!trace_file_->WriteFully(src, src_size)) {
908 new_offset = static_cast<int32_t>(src_size);
912 memcpy(buf_.get() + old_offset, src, src_size);

Completed in 397 milliseconds