Home | History | Annotate | Download | only in src

Lines Matching refs:obj_size

3378   int obj_size = Code::SizeFor(body_size);
3379 ASSERT(IsAligned(static_cast<intptr_t>(obj_size), kCodeAlignment));
3383 if (obj_size > code_space()->AreaSize() || immovable) {
3384 maybe_result = lo_space_->AllocateRaw(obj_size, EXECUTABLE);
3386 maybe_result = code_space_->AllocateRaw(obj_size);
3431 int obj_size = code->Size();
3433 if (obj_size > code_space()->AreaSize()) {
3434 maybe_result = lo_space_->AllocateRaw(obj_size, EXECUTABLE);
3436 maybe_result = code_space_->AllocateRaw(obj_size);
3445 CopyBlock(new_addr, old_addr, obj_size);