Searched refs:mark_bits (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc1898 static inline int MarkWordToObjectStarts(uint32_t mark_bits, int* starts);
4090 static inline int MarkWordToObjectStarts(uint32_t mark_bits, int* starts) { argument
4095 DCHECK((mark_bits & 0x180) != 0x180);
4096 DCHECK((mark_bits & 0x18000) != 0x18000);
4097 DCHECK((mark_bits & 0x1800000) != 0x1800000);
4099 while (mark_bits != 0) {
4100 int byte = (mark_bits & 0xff);
4101 mark_bits >>= 8;

Completed in 466 milliseconds