HomeSort by relevance Sort by last modified time
    Searched refs:object_size (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/v8/src/
objects-visiting.h 132 int object_size) {
136 ASSERT(IsAligned(object_size, kPointerSize));
137 ASSERT(kMinObjectSizeInWords * kPointerSize <= object_size);
138 ASSERT(object_size < Page::kMaxNonCodeHeapObjectSize);
141 base + (object_size >> kPointerSizeLog2) - kMinObjectSizeInWords);
226 int object_size = BodyDescriptor::SizeOf(map, object); local
231 object_size);
232 return static_cast<ReturnType>(object_size);
235 template<int object_size>
237 ASSERT(BodyDescriptor::SizeOf(map, object) == object_size);
    [all...]
mark-compact.h 401 int object_size);
413 int object_size,
536 bool TryPromoteObject(HeapObject* object, int object_size);
heap.cc 1698 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local
1710 int object_size = FixedDoubleArray::SizeFor(length); local
1721 int object_size = reinterpret_cast<ByteArray*>(object)->ByteArraySize(); local
1729 int object_size = SeqAsciiString::cast(object)-> local
1738 int object_size = SeqTwoByteString::cast(object)-> local
1782 int object_size = ConsString::kSize; local
1799 int object_size = map->instance_size(); local
4020 int object_size = map->instance_size(); local
4050 object_size); local
    [all...]
heap-inl.h 322 bool Heap::ShouldBePromoted(Address old_address, int object_size) {
330 return below_mark || (new_space_.Size() + object_size) >=
spaces.cc 587 LargePage* MemoryAllocator::AllocateLargePage(intptr_t object_size,
590 MemoryChunk* chunk = AllocateChunk(object_size, executable, owner);
    [all...]
  /external/chromium_org/v8/src/
objects-visiting.h 138 int object_size) {
142 ASSERT(IsAligned(object_size, kPointerSize));
143 ASSERT(kMinObjectSizeInWords * kPointerSize <= object_size);
144 ASSERT(object_size <= Page::kMaxNonCodeHeapObjectSize);
147 base + (object_size >> kPointerSizeLog2) - kMinObjectSizeInWords);
232 int object_size = BodyDescriptor::SizeOf(map, object); local
237 object_size);
238 return static_cast<ReturnType>(object_size);
241 template<int object_size>
243 ASSERT(BodyDescriptor::SizeOf(map, object) == object_size);
    [all...]
incremental-marking.cc 240 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local
243 int end_offset = Min(object_size,
253 end_offset = Min(object_size, end_offset + kProgressBarScanningChunk);
255 } while (scan_until_end && start_offset < object_size);
257 if (start_offset < object_size) {
260 object_size - (start_offset - already_scanned_offset));
    [all...]
heap.cc 2172 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local
2182 int object_size = FixedDoubleArray::SizeFor(length); local
2191 int object_size = reinterpret_cast<ByteArray*>(object)->ByteArraySize(); local
2200 int object_size = SeqOneByteString::cast(object)-> local
2210 int object_size = SeqTwoByteString::cast(object)-> local
2255 int object_size = ConsString::kSize; local
2274 int object_size = map->instance_size(); local
4895 int object_size = map->instance_size(); local
4926 object_size); local
4970 int object_size = map->instance_size(); local
5028 object_size); local
    [all...]
mark-compact.h 547 int object_size);
559 int object_size,
698 bool TryPromoteObject(HeapObject* object, int object_size);
heap-snapshot-generator.h 303 SnapshotObjectId GetObjectId(Address object_addr, int object_size) {
304 return ids_.FindOrAddEntry(object_addr, object_size);
  /art/runtime/gc/space/
space_test.cc 32 void SizeFootPrintGrowthLimitAndTrimBody(DlMallocSpace* space, intptr_t object_size,
34 void SizeFootPrintGrowthLimitAndTrimDriver(size_t object_size);
306 void SpaceTest::SizeFootPrintGrowthLimitAndTrimBody(DlMallocSpace* space, intptr_t object_size,
308 if (((object_size > 0 && object_size >= static_cast<intptr_t>(growth_limit))) ||
309 ((object_size < 0 && -object_size >= static_cast<intptr_t>(growth_limit)))) {
333 size_t max_objects = (growth_limit / (object_size > 0 ? object_size : 8)) + 1;
344 if (object_size > 0)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 79 size_t object_size; // size of the allocation member in struct:HeapProfileTable::AllocInfo
122 // If yes, fill *object_size with the allocation byte size.
123 bool FindAlloc(const void* ptr, size_t* object_size) const;
129 // and *object_size with the allocation byte size.
132 const void** object_ptr, size_t* object_size) const;
380 info.object_size = v->bytes;
heap-checker.cc 734 live_objects->push_back(AllocObject(ptr, info.object_size,
763 uintptr_t end_address = start_address + info.object_size;
780 info.object_size, ptr, AsPtr(*iter));
785 (stack_disable ? "Stack" : "Range"), info.object_size, ptr);
786 live_objects->push_back(AllocObject(ptr, info.object_size,
1111 size_t object_size; local
1464 size_t object_size; local
    [all...]
central_freelist.cc 366 const size_t object_size = Static::sizemap()->class_to_size(size_class_);
367 ASSERT(object_size > 0);
368 const size_t overhead_per_span = (pages_per_span * kPageSize) % object_size;
heap-profile-table.cc 238 bool HeapProfileTable::FindAlloc(const void* ptr, size_t* object_size) const {
240 if (alloc_value != NULL) *object_size = alloc_value->bytes;
248 info->object_size = alloc_value->bytes;
258 size_t* object_size) const {
261 if (alloc_value != NULL) *object_size = alloc_value->bytes;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h 76 size_t object_size; // size of the allocation member in struct:HeapProfileTable::AllocInfo
119 // If yes, fill *object_size with the allocation byte size.
120 bool FindAlloc(const void* ptr, size_t* object_size) const;
126 // and *object_size with the allocation byte size.
129 const void** object_ptr, size_t* object_size) const;
295 info.object_size = v->bytes;
heap-checker.cc 734 live_objects->push_back(AllocObject(ptr, info.object_size,
763 uintptr_t end_address = start_address + info.object_size;
780 info.object_size, ptr, AsPtr(*iter));
785 (stack_disable ? "Stack" : "Range"), info.object_size, ptr);
786 live_objects->push_back(AllocObject(ptr, info.object_size,
1111 size_t object_size; local
1464 size_t object_size; local
    [all...]
central_freelist.cc 370 const size_t object_size = Static::sizemap()->class_to_size(size_class_);
371 ASSERT(object_size > 0);
372 const size_t overhead_per_span = (pages_per_span * kPageSize) % object_size;
heap-profile-table.cc 251 bool HeapProfileTable::FindAlloc(const void* ptr, size_t* object_size) const {
253 if (alloc_value != NULL) *object_size = alloc_value->bytes;
261 info->object_size = alloc_value->bytes;
271 size_t* object_size) const {
274 if (alloc_value != NULL) *object_size = alloc_value->bytes;
  /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));
  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
heap-checker.h 323 // We also fill *object_size for this object then
325 static inline bool HaveOnHeapLocked(const void** ptr, size_t* object_size);
  /external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
heap-checker.h 323 // We also fill *object_size for this object then
325 static inline bool HaveOnHeapLocked(const void** ptr, size_t* object_size);
  /external/v8/src/ia32/
macro-assembler-ia32.h 539 void AllocateInNewSpace(int object_size,
555 void AllocateInNewSpace(Register object_size,
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
generated_message_reflection.h 126 // object_size: The size of a message object of this type, as measured
136 int object_size);
  /external/protobuf/src/google/protobuf/
generated_message_reflection.h 120 // object_size: The size of a message object of this type, as measured
130 int object_size);

Completed in 243 milliseconds

1 2 3