HomeSort by relevance Sort by last modified time
    Searched defs:object_size (Results 1 - 18 of 18) 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);
  /system/vold/
Keymaster.cpp 289 const size_t object_size, uint8_t** signature_buffer, size_t* signature_buffer_size) {
302 std::string input(reinterpret_cast<const char*>(object), object_size); local
  /external/v8/src/compiler/
memory-optimizer.cc 165 int32_t const object_size = m.Value(); local
166 if (state->size() <= kMaxRegularHeapObjectSize - object_size &&
171 int32_t const state_size = state->size() + object_size;
182 Node* top = __ IntAdd(state->top(), __ IntPtrConstant(object_size));
200 Node* size = __ UniqueInt32Constant(object_size);
237 top = __ IntAdd(done.PhiAt(0), __ IntPtrConstant(object_size));
249 state = AllocationState::Open(group, object_size, top, zone());
  /external/v8/src/heap/
scavenger.cc 158 HeapObject* object, int object_size) {
163 heap->new_space()->AllocateRaw(object_size, alignment);
173 MigrateObject(heap, object, target, object_size);
178 heap->IncrementSemiSpaceCopiedObjectSize(object_size);
187 HeapObject* object, int object_size) {
191 heap->old_space()->AllocateRaw(object_size, alignment);
195 MigrateObject(heap, object, target, object_size);
205 heap->promotion_queue()->insert(target, object_size,
208 heap->IncrementPromotedObjectsSize(object_size);
216 HeapObject* object, int object_size) {
266 int object_size = FixedArray::SizeFor(length); local
274 int object_size = FixedDoubleArray::SizeFor(length); local
280 int object_size = reinterpret_cast<FixedTypedArrayBase*>(object)->size(); local
287 int object_size = reinterpret_cast<FixedFloat64Array*>(object)->size(); local
294 int object_size = reinterpret_cast<ByteArray*>(object)->ByteArraySize(); local
300 int object_size = SeqOneByteString::cast(object) local
307 int object_size = SeqTwoByteString::cast(object) local
344 int object_size = ConsString::kSize; local
376 int object_size = map->instance_size(); local
    [all...]
object-stats.cc 245 int object_size = obj->Size(); local
246 stats_->RecordObjectStats(map->instance_type(), object_size);
incremental-marking.cc 191 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local
195 Min(object_size, start_offset + kProgressBarScanningChunk);
202 end_offset = Min(object_size, end_offset + kProgressBarScanningChunk);
205 } while (scan_until_end && start_offset < object_size);
207 if (start_offset < object_size) {
215 object_size - (start_offset - already_scanned_offset));
    [all...]
heap.cc 3607 int object_size = map->instance_size(); local
    [all...]
  /external/vixl/src/
pool-manager-impl.h 103 int object_size = label_base->GetPoolObjectSizeInBytes(); local
113 pc += object_size;
  /external/vixl/test/
test-pool-manager.cc 603 int object_size = 4; local
607 TestObject object(object_size, object_alignment);
622 VIXL_ASSERT(new_pc == min_location + object_size);
633 int object_size = 4; local
637 TestObject object(object_size, object_alignment);
654 VIXL_ASSERT(new_pc == AlignUp(pc, object_alignment) + object_size);
    [all...]
  /art/runtime/gc/collector/
semi_space.cc 514 const size_t object_size = obj->SizeOf(); local
521 forward_address = promo_dest_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
525 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
571 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
579 forward_address = fallback_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated,
592 CopyAvoidingDirtyingPages(reinterpret_cast<void*>(forward_address), obj, object_size);
    [all...]
  /external/v8/src/builtins/
builtins-constructor.cc 674 Node* object_size = IntPtrAdd(WordShl(properties_count, kPointerSizeLog2), local
676 Node* allocation_size = object_size;
679 IntPtrAdd(object_size, IntPtrConstant(AllocationMemento::kSize));
685 Node* size_in_words = WordShr(object_size, kPointerSizeLog2);
693 Node* end_offset = IntPtrAdd(object_size, offset.value());
714 Node* memento = InnerAllocate(copy, object_size);
  /frameworks/base/media/jni/
android_mtp_MtpDevice.cpp 736 const jlong object_size = static_cast<jlong>(property->getCurrentValue().u.u64); local
737 if (object_size < 0) {
742 return object_size;
    [all...]
  /art/imgdiag/
imgdiag.cc 625 size_t object_size = EntrySize(object1); local
626 for (size_t i = 0; i < object_size; ++i) {
    [all...]
  /art/dex2oat/linker/
image_writer.cc 521 size_t object_size = object->SizeOf(); local
632 size_t offset_delta = RoundUp(object_size, kObjectAlignment); // 64-bit alignment
    [all...]
  /toolchain/binutils/binutils-2.27/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 2245 uint64_t object_size = MachOContents.size(); local
2266 uint64_t object_size = MachOContents.size(); local
2472 uint64_t object_size = MachOContents.size(); local
    [all...]
  /external/v8/include/
v8.h 6070 size_t object_size() { return object_size_; } function in class:v8::HeapObjectStatistics
    [all...]
  /external/v8/src/
api.cc 8373 size_t object_size = heap->ObjectSizeAtLastGC(type_index); local
    [all...]

Completed in 1329 milliseconds