Lines Matching refs:space
36 // 0x00~0x06 represent new object to different space:
37 // 0x00: old space
38 // 0x01: non movable space
39 // 0x02: machine code space
40 // 0x03: huge space
41 // 0x04: shared old space
42 // 0x05: shared non movable space
43 // 0x06: shared huge space
95 static uint8_t EncodeNewObject(SerializedObjectSpace space)
97 return static_cast<uint8_t>(space) | static_cast<uint8_t>(EncodeFlag::NEW_OBJECT);
332 void CalculateSerializedObjectSize(SerializedObjectSpace space, size_t objectSize)
334 switch (space) {