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

1 2

  /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...]
mark-compact.cc 1158 int object_size = JSWeakMap::BodyDescriptor::SizeOf(map, object); local
    [all...]
heap.h     [all...]
objects.h     [all...]
objects-inl.h     [all...]
spaces.h 955 LargePage* AllocateLargePage(intptr_t object_size,
    [all...]
  /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/v8/src/ia32/
macro-assembler-ia32.h 539 void AllocateInNewSpace(int object_size,
555 void AllocateInNewSpace(Register object_size,
    [all...]
macro-assembler-ia32.cc     [all...]
lithium-codegen-ia32.cc 4428 int object_size = object->map()->instance_size(); local
    [all...]
  /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);
generated_message_reflection.cc 180 int object_size)
187 object_size_ (object_size),
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc     [all...]
macro-assembler-arm.h 657 // Allocate an object in new space. The object_size is specified
664 void AllocateInNewSpace(int object_size,
670 void AllocateInNewSpace(Register object_size,
    [all...]
lithium-codegen-arm.cc 4573 int object_size = object->map()->instance_size(); local
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.h     [all...]
macro-assembler-x64.cc     [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 472 // Allocate an object in new space. The object_size is specified
479 void AllocateInNewSpace(int object_size,
485 void AllocateInNewSpace(Register object_size,
    [all...]
macro-assembler-mips.cc     [all...]
lithium-codegen-mips.cc 4468 int object_size = object->map()->instance_size(); local
    [all...]
  /external/v8/test/cctest/
test-heap.cc 883 int object_size = my_map->instance_size(); local
902 int to_fill = static_cast<int>(*limit_addr - *top_addr - object_size);
    [all...]

Completed in 407 milliseconds

1 2