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

1 2 3

  /external/v8/src/
objects-visiting.h 125 int object_size) {
129 ASSERT(IsAligned(object_size, kPointerSize));
130 ASSERT(kMinObjectSizeInWords * kPointerSize <= object_size);
131 ASSERT(object_size < Page::kMaxHeapObjectSize);
134 base + (object_size >> kPointerSizeLog2) - kMinObjectSizeInWords);
215 int object_size = BodyDescriptor::SizeOf(map, object); local
220 object_size);
221 return static_cast<ReturnType>(object_size);
224 template<int object_size>
226 ASSERT(BodyDescriptor::SizeOf(map, object) == object_size);
    [all...]
mark-compact.cc 1776 int object_size; \/\/ Will be set on each iteration of the loop. local
    [all...]
heap.cc 1411 int object_size = FixedArray::BodyDescriptor::SizeOf(map, object); local
1422 int object_size = reinterpret_cast<ByteArray*>(object)->ByteArraySize(); local
1430 int object_size = SeqAsciiString::cast(object)-> local
1439 int object_size = SeqTwoByteString::cast(object)-> local
1480 int object_size = ConsString::kSize; local
1497 int object_size = map->instance_size(); local
3287 int object_size = map->instance_size(); local
3314 object_size); local
    [all...]
heap-inl.h 272 bool Heap::ShouldBePromoted(Address old_address, int object_size) {
277 || (new_space_.Size() + object_size) >= (new_space_.Capacity() >> 2);
mark-compact.h 113 int object_size);
125 int object_size,
objects-inl.h     [all...]
spaces.cc     [all...]
heap.h     [all...]
objects.h     [all...]
spaces.h     [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/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/ia32/
macro-assembler-ia32.cc 700 void MacroAssembler::AllocateInNewSpace(int object_size,
734 add(Operand(top_reg), Immediate(object_size));
745 sub(Operand(result), Immediate(object_size - kHeapObjectTag));
747 sub(Operand(result), Immediate(object_size));
803 void MacroAssembler::AllocateInNewSpace(Register object_size,
817 // object_size is left unchanged by this function.
830 if (!object_size.is(result_end)) {
831 mov(result_end, object_size);
    [all...]
macro-assembler-ia32.h 348 void AllocateInNewSpace(int object_size,
364 void AllocateInNewSpace(Register object_size,
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc     [all...]
macro-assembler-x64.h     [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc     [all...]
macro-assembler-arm.h 461 // Allocate an object in new space. The object_size is specified
468 void AllocateInNewSpace(int object_size,
474 void AllocateInNewSpace(Register object_size,
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc     [all...]
macro-assembler-mips.h 311 // Allocate an object in new space. The object_size is specified
318 void AllocateInNewSpace(int object_size,
324 void AllocateInNewSpace(Register object_size,
    [all...]
  /external/v8/test/cctest/
test-heap.cc 927 int object_size = my_map->instance_size(); local
946 int to_fill = static_cast<int>(*limit_addr - *top_addr - object_size);
981 CHECK(page->IsRegionDirty(clone_addr + (object_size - kPointerSize)));
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
builtins.def     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
builtins.def     [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
builtins.def     [all...]

Completed in 571 milliseconds

1 2 3