/external/v8/src/heap/ |
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...] |
objects-visiting.h | 119 int object_size, 123 DCHECK(IsAligned(object_size, kPointerSize)); 124 DCHECK(Heap::kMinObjectSizeInWords * kPointerSize <= object_size); 125 DCHECK(object_size <= Page::kMaxRegularHeapObjectSize); 131 base + (object_size >> kPointerSizeLog2) - Heap::kMinObjectSizeInWords, 195 int object_size = BodyDescriptor::SizeOf(map, object); 196 BodyDescriptor::template IterateBody<StaticVisitor>(object, object_size); 197 return static_cast<ReturnType>(object_size); 201 template <int object_size> 203 DCHECK(BodyDescriptor::SizeOf(map, object) == object_size); [all...] |
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);
|
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.h | [all...] |
/external/v8/src/ |
objects-body-descriptors.h | 27 // static inline void IterateBody(HeapObject* obj, int object_size, 34 // static inline void IterateBody(HeapObject* obj, int object_size); 89 static inline void IterateBody(HeapObject* obj, int object_size, 101 static inline void IterateBody(HeapObject* obj, int object_size) { 108 // in which all pointer fields are located in the [start_offset, object_size) 121 static inline void IterateBody(HeapObject* obj, int object_size, 123 IterateBodyImpl(obj, start_offset, object_size, v); 127 static inline void IterateBody(HeapObject* obj, int object_size) { 129 IterateBodyImpl<StaticVisitor>(heap, obj, start_offset, object_size);
|
objects-body-descriptors-inl.h | 123 static inline void IterateBody(HeapObject* obj, int object_size, 134 IterateBodyImpl(obj, kSize, object_size, v); 138 static inline void IterateBody(HeapObject* obj, int object_size) { 151 IterateBodyImpl<StaticVisitor>(heap, obj, kSize, object_size); 173 static inline void IterateBody(HeapObject* obj, int object_size, 176 IterateBodyImpl(obj, kSize, object_size, v); 180 static inline void IterateBody(HeapObject* obj, int object_size) { 184 IterateBodyImpl<StaticVisitor>(heap, obj, kSize, object_size); 200 static inline void IterateBody(HeapObject* obj, int object_size, 206 static inline void IterateBody(HeapObject* obj, int object_size) { [all...] |
/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);
|
object_heap.c | 60 object_base_p obj = (object_base_p) calloc(1, heap->object_size); 89 int object_heap_init(object_heap_p heap, int object_size, int id_offset) 91 heap->object_size = object_size;
|
/art/runtime/gc/space/ |
space_test.h | 133 void SizeFootPrintGrowthLimitAndTrimBody(MallocSpace* space, intptr_t object_size, 135 void SizeFootPrintGrowthLimitAndTrimDriver(size_t object_size, CreateSpaceFn create_space); 145 intptr_t object_size, 148 if (((object_size > 0 && object_size >= static_cast<intptr_t>(growth_limit))) || 149 ((object_size < 0 && -object_size >= static_cast<intptr_t>(growth_limit)))) { 171 size_t max_objects = (growth_limit / (object_size > 0 ? object_size : 8)) + 1; 183 if (object_size > 0) [all...] |
/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...] |
heap-tester.h | 73 int num_objects, int object_size); 78 int object_size,
|
utils-inl.h | 25 int object_size = Page::kMaxRegularHeapObjectSize) { 43 if (free_memory > object_size) { 44 allocate_memory = object_size;
|
test-spaces.cc | 565 int num_objects, int object_size) { 568 spaces[i]->Get(id)->AllocateRawUnaligned(object_size).ToObjectChecked(); 572 num_objects * object_size); 592 int object_size, 600 old_space->AllocateRawUnaligned(object_size).ToObjectChecked(); 608 static_cast<int>(capacity_for_compaction_space) / object_size + 631 num_objects_in_compaction_space, object_size); [all...] |
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
cat_helper.py | 75 object_size=cat_object.size, generation=storage_url.generation,
|
daisy_chain_wrapper.py | 158 generation=self.src_url.generation, object_size=self.src_obj_size, 169 generation=self.src_url.generation, object_size=self.src_obj_size,
|
cloud_api_delegator.py | 216 generation=None, object_size=None, 223 end_byte=end_byte, generation=generation, object_size=object_size,
|
cloud_api.py | 258 provider=None, generation=None, object_size=None, 271 object_size: Total size of the object being downloaded.
|
/external/clang/test/CodeGen/ |
builtins.c | 109 P(object_size, (s0, 0)); 110 P(object_size, (s0, 1)); 111 P(object_size, (s0, 2)); 112 P(object_size, (s0, 3));
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
generated_message_reflection.h | 131 // object_size: The size of a message object of this type, as measured 141 int object_size, 179 int object_size, 197 int object_size, 208 int object_size,
|
/art/runtime/gc/collector/ |
semi_space.cc | 509 const size_t object_size = obj->SizeOf(); local 516 forward_address = promo_dest_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, 520 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, 566 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, 574 forward_address = fallback_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, 587 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size); [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/protobuf/src/google/protobuf/ |
generated_message_reflection.h | 127 // object_size: The size of a message object of this type, as measured 137 int object_size); 173 int object_size);
|
/external/v8/src/arm/ |
macro-assembler-arm.cc | [all...] |
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/ |
generated_message_reflection.h | 126 // object_size: The size of a message object of this type, as measured 136 int object_size);
|