/hardware/intel/img/libdrm/tests/ |
gem_mmap.c | 39 #define OBJECT_SIZE 16384 78 uint8_t expected[OBJECT_SIZE]; 79 uint8_t buf[OBJECT_SIZE]; 99 create.size = OBJECT_SIZE; 107 mmap.size = OBJECT_SIZE; 120 ret = do_write(fd, handle, buf, 0, OBJECT_SIZE); 131 munmap(addr, OBJECT_SIZE);
|
gem_readwrite.c | 39 #define OBJECT_SIZE 16384 76 uint8_t expected[OBJECT_SIZE]; 77 uint8_t buf[OBJECT_SIZE]; 88 create.size = OBJECT_SIZE; 94 ret = do_read(fd, handle, buf, 0, OBJECT_SIZE); 100 ret = do_read(fd, handle, buf, OBJECT_SIZE / 2, OBJECT_SIZE); 108 ret = do_write(fd, handle, buf, 0, OBJECT_SIZE); 110 ret = do_read(fd, handle, buf, 0, OBJECT_SIZE); 119 ret = do_read(fd, handle, buf, 0, OBJECT_SIZE); [all...] |
/external/chromium_org/v8/src/heap/ |
objects-visiting.h | 116 int object_size) { 119 DCHECK(IsAligned(object_size, kPointerSize)); 120 DCHECK(kMinObjectSizeInWords * kPointerSize <= object_size); 121 DCHECK(object_size <= Page::kMaxRegularHeapObjectSize); 124 base + (object_size >> kPointerSizeLog2) - kMinObjectSizeInWords); 204 int object_size = BodyDescriptor::SizeOf(map, object); local 206 map->GetHeap(), object, BodyDescriptor::kStartOffset, object_size); 207 return static_cast<ReturnType>(object_size); 210 template <int object_size> 212 DCHECK(BodyDescriptor::SizeOf(map, object) == object_size); [all...] |
heap.cc | 2088 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local 2097 int object_size = FixedDoubleArray::SizeFor(length); local 2105 int object_size = reinterpret_cast<FixedTypedArrayBase*>(object)->size(); local 2113 int object_size = reinterpret_cast<FixedFloat64Array*>(object)->size(); local 2121 int object_size = reinterpret_cast<ByteArray*>(object)->ByteArraySize(); local 2129 int object_size = SeqOneByteString::cast(object) local 2138 int object_size = SeqTwoByteString::cast(object) local 2177 int object_size = ConsString::kSize; local 2193 int object_size = map->instance_size(); local 3690 int object_size = map->instance_size(); local [all...] |
incremental-marking.cc | 184 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local 188 Min(object_size, start_offset + kProgressBarScanningChunk); 196 end_offset = Min(object_size, end_offset + kProgressBarScanningChunk); 198 } while (scan_until_end && start_offset < object_size); 200 if (start_offset < object_size) { 203 object_size - (start_offset - already_scanned_offset)); [all...] |
heap.h | [all...] |
/art/runtime/gc/space/ |
space_test.h | 119 void SizeFootPrintGrowthLimitAndTrimBody(MallocSpace* space, intptr_t object_size, 121 void SizeFootPrintGrowthLimitAndTrimDriver(size_t object_size, CreateSpaceFn create_space); 375 void SpaceTest::SizeFootPrintGrowthLimitAndTrimBody(MallocSpace* space, intptr_t object_size, 377 if (((object_size > 0 && object_size >= static_cast<intptr_t>(growth_limit))) || 378 ((object_size < 0 && -object_size >= static_cast<intptr_t>(growth_limit)))) { 400 size_t max_objects = (growth_limit / (object_size > 0 ? object_size : 8)) + 1; 412 if (object_size > 0) [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;
|
/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/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...] |
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;
|
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;
|
/external/libunwind/include/ |
mempool.h | 80 /* Initialize POOL for an object size of OBJECT_SIZE bytes. RESERVE
|
/art/runtime/gc/collector/ |
semi_space.cc | 481 const size_t object_size = obj->SizeOf(); local 488 forward_address = promo_dest_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, 492 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr); 537 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr); 544 forward_address = fallback_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, 557 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size); [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...] |
heap-profile-table.cc | 241 bool HeapProfileTable::FindAlloc(const void* ptr, size_t* object_size) const { 243 if (alloc_value != NULL) *object_size = alloc_value->bytes; 251 info->object_size = alloc_value->bytes; 261 size_t* object_size) const { 264 if (alloc_value != NULL) *object_size = alloc_value->bytes;
|
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;
|
/external/chromium_org/chrome/browser/media_galleries/win/ |
mtp_device_operations_util.cc | 228 int64 object_size = GetObjectSize(properties_values.get()); local 229 if (object_size < 0) 231 *size = object_size;
|
/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);
|
/external/chromium_org/content/browser/appcache/ |
appcache_url_request_job_unittest.cc | 732 int64 range_start, range_end, object_size; local 734 headers->GetContentRange(&range_start, &range_end, &object_size)); 737 EXPECT_EQ(5, object_size);
|
/external/chromium_org/v8/src/ |
code-stubs-hydrogen.cc | 419 int object_size = size; local 430 HValue* size_in_words = Add<HConstant>(object_size >> kPointerSizeLog2); 440 for (int i = 0; i < object_size; i += kPointerSize) { 447 DCHECK(FLAG_allocation_site_pretenuring || (size == object_size)); 450 object, Add<HConstant>(object_size), allocation_site); [all...] |