Lines Matching defs:slot
5 #include "src/heap/slot-set.h"
25 TypedSlot slot = {TypeField::encode(type) | OffsetField::encode(offset)};
28 chunk->buffer.push_back(slot);
65 IterateSlotsInRanges([](TypedSlot* slot) { *slot = ClearedTypedSlot(); },
71 [](TypedSlot* slot) {
72 CHECK_WITH_MSG(false, "No slot in ranges expected.");
84 for (TypedSlot& slot : chunk->buffer) {
85 SlotType type = TypeField::decode(slot.type_and_offset);
87 uint32_t offset = OffsetField::decode(slot.type_and_offset);
90 // upper_bounds points to the invalid range after the given slot. Hence,
95 callback(&slot);