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

  /external/v8/src/
mark-compact.cc 891 inline Object* MCAllocateFromNewSpace(HeapObject* object, int object_size) {
893 if (object_size > Heap::MaxObjectSizeInPagedSpace()) {
899 forwarded = target_space->MCAllocateRaw(object_size);
902 forwarded = Heap::new_space()->MCAllocateRaw(object_size);
910 int object_size) {
911 return Heap::old_pointer_space()->MCAllocateRaw(object_size);
915 inline Object* MCAllocateFromOldDataSpace(HeapObject* ignore, int object_size) {
916 return Heap::old_data_space()->MCAllocateRaw(object_size);
920 inline Object* MCAllocateFromCodeSpace(HeapObject* ignore, int object_size) {
921 return Heap::code_space()->MCAllocateRaw(object_size);
999 int object_size; \/\/ Will be set on each iteration of the loop. local
    [all...]
mark-compact.h 60 typedef Object* (*AllocationFunction)(HeapObject* object, int object_size);
71 int object_size,
heap-inl.h 173 bool Heap::ShouldBePromoted(Address old_address, int object_size) {
178 || (new_space_.Size() + object_size) >= (new_space_.Capacity() >> 2);
spaces-inl.h 312 int LargeObjectSpace::ExtraRSetBytesFor(int object_size) {
314 RoundUp((object_size - Page::kObjectAreaSize) / kPointerSize,
heap.cc 1099 int object_size = object->SizeFromMap(first_word.ToMap()); local
2558 int object_size = map->instance_size(); local
    [all...]
spaces.cc     [all...]
spaces.h     [all...]
objects-inl.h     [all...]
objects.h     [all...]
heap.h     [all...]
objects.cc     [all...]
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_mmap.c 48 size_t page_ptr(size_t object_offset, size_t object_size, size_t *offset, size_t *mmap_offset)
57 object_size += object_offset;
58 r = object_size % psz;
60 r = object_size + psz - r;
62 r = object_size;
  /external/v8/src/arm/
macro-assembler-arm.h 195 // Allocate an object in new space. The object_size is specified in words (not
199 void AllocateInNewSpace(int object_size,
205 void AllocateInNewSpace(Register object_size,
macro-assembler-arm.cc 837 void MacroAssembler::AllocateInNewSpace(int object_size,
868 add(result, result, Operand(object_size * kPointerSize));
881 sub(result, result, Operand((object_size * kPointerSize) -
884 sub(result, result, Operand(object_size * kPointerSize));
889 void MacroAssembler::AllocateInNewSpace(Register object_size,
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.h 234 void AllocateInNewSpace(int object_size,
250 void AllocateInNewSpace(Register object_size,
macro-assembler-ia32.cc 775 void MacroAssembler::AllocateInNewSpace(int object_size,
789 lea(result_end, Operand(result, object_size));
833 void MacroAssembler::AllocateInNewSpace(Register object_size,
847 if (!object_size.is(result_end)) {
848 mov(result_end, object_size);
    [all...]
  /device/samsung/crespo/alsa-lib/include/
local.h 162 size_t page_ptr(size_t object_offset, size_t object_size, size_t *offset, size_t *mmap_offset);
  /external/v8/src/x64/
macro-assembler-x64.h 540 void AllocateInNewSpace(int object_size,
556 void AllocateInNewSpace(Register object_size,
    [all...]
macro-assembler-x64.cc     [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/chromium/net/http/
http_cache_unittest.cc 815 int64 range_start, range_end, object_size;
816 if (!headers->GetContentRange(&range_start, &range_end, &object_size))
    [all...]

Completed in 210 milliseconds