HomeSort by relevance Sort by last modified time
    Searched defs:object_size (Results 1 - 14 of 14) sorted by null

  /hardware/intel/img/psb_video/src/
object_heap.h 44 int object_size; member in struct:object_heap_s
57 int object_heap_init(object_heap_p heap, int object_size, int id_offset);
  /external/v8/test/cctest/heap/
test-compaction.cc 74 const int object_size = 128 * KB; local
88 // Fill another page with objects of size {object_size} (last one is
92 CreatePadding(heap, Page::kAllocatableMemory, TENURED, object_size);
100 // {object_size}.
105 heap, object_size * num_objects, TENURED, object_size);
146 const int object_size = 128 * KB; local
164 // Fill a fresh page with objects of size {object_size} (last one is
168 CreatePadding(heap, Page::kAllocatableMemory, TENURED, object_size);
181 // {object_size}
233 const int object_size = 128 * KB; local
    [all...]
  /external/v8/src/heap/
object-stats.cc 158 int object_size = obj->Size(); local
159 heap->object_stats_->RecordObjectStats(map->instance_type(), object_size);
207 int object_size = obj->Size(); local
211 code_obj->GetAge(), object_size);
scavenger.cc 146 HeapObject* object, int object_size) {
151 heap->new_space()->AllocateRaw(object_size, alignment);
161 MigrateObject(heap, object, target, object_size);
166 heap->IncrementSemiSpaceCopiedObjectSize(object_size);
175 HeapObject* object, int object_size) {
179 heap->old_space()->AllocateRaw(object_size, alignment);
183 MigrateObject(heap, object, target, object_size);
189 heap->promotion_queue()->insert(target, object_size);
191 heap->IncrementPromotedObjectsSize(object_size);
200 HeapObject* object, int object_size) {
253 int object_size = FixedArray::SizeFor(length); local
262 int object_size = FixedDoubleArray::SizeFor(length); local
269 int object_size = reinterpret_cast<FixedTypedArrayBase*>(object)->size(); local
277 int object_size = reinterpret_cast<FixedFloat64Array*>(object)->size(); local
299 int object_size = reinterpret_cast<ByteArray*>(object)->ByteArraySize(); local
306 int object_size = SeqOneByteString::cast(object) local
314 int object_size = SeqTwoByteString::cast(object) local
352 int object_size = ConsString::kSize; local
368 int object_size = map->instance_size(); local
    [all...]
incremental-marking.cc 236 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local
240 Min(object_size, start_offset + kProgressBarScanningChunk);
247 end_offset = Min(object_size, end_offset + kProgressBarScanningChunk);
250 } while (scan_until_end && start_offset < object_size);
252 if (start_offset < object_size) {
260 object_size - (start_offset - already_scanned_offset));
    [all...]
heap.cc 3548 int object_size = map->instance_size(); local
    [all...]
  /art/runtime/gc/collector/
semi_space.cc 526 const size_t object_size = obj->SizeOf(); local
533 forward_address = promo_dest_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
537 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
583 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
591 forward_address = fallback_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
604 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size);
    [all...]
  /frameworks/base/media/jni/
android_mtp_MtpDevice.cpp 733 const jlong object_size = static_cast<jlong>(property->getCurrentValue().u.u64); local
734 if (object_size < 0) {
739 return object_size;
    [all...]
  /external/v8/src/
code-stubs-hydrogen.cc 593 int object_size = size; local
602 HValue* size_in_words = Add<HConstant>(object_size >> kPointerSizeLog2);
612 for (int i = 0; i < object_size; i += kPointerSize) {
618 DCHECK(FLAG_allocation_site_pretenuring || (size == object_size));
621 object, Add<HConstant>(object_size), allocation_site);
    [all...]
api.cc 7342 size_t object_size = heap->ObjectSizeAtLastGC(type_index); local
    [all...]
  /art/compiler/
image_writer.cc 493 size_t object_size = object->SizeOf(); local
597 size_t offset_delta = RoundUp(object_size, kObjectAlignment); // 64-bit alignment
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
ecoff.c 805 unsigned short object_size; /* size in bytes of each object */
820 sizeof (type), /* object_size */ \
803 unsigned short object_size; \/* size in bytes of each object *\/ member in struct:varray
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 2101 uint64_t object_size = MachOContents.size(); local
2122 uint64_t object_size = MachOContents.size(); local
2318 uint64_t object_size = MachOContents.size(); local
    [all...]
  /external/v8/include/
v8.h 5141 size_t object_size() { return object_size_; } function in class:v8::HeapObjectStatistics
    [all...]

Completed in 145 milliseconds