Searched defs:body_size (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dheap.cc2189 int body_size = RoundUp(desc.instr_size + desc.reloc_size, kObjectAlignment); local
2192 int obj_size = Code::SizeFor(body_size, sinfo_size);
H A Dobjects.h2684 inline int body_size();
2707 static int SizeFor(int body_size, int sinfo_size) { argument
2708 ASSERT_SIZE_TAG_ALIGNED(body_size);
2710 return RoundUp(kHeaderSize + body_size + sinfo_size, kCodeAlignment);
2730 int CodeSize() { return SizeFor(body_size(), sinfo_size()); }

Completed in 23 milliseconds