Lines Matching defs:page
28 // Given a page and a slot in that page, this function adds the slot to the
90 // Given a page and a slot in that page, this function adds the slot to the
102 // Given a page and a slot in that page, this function returns true if
119 // Given a page and a slot in that page, this function removes the slot from
128 // Given a page and a range of slots in that page, this function removes the
215 // Given a page and a typed slot in that page, this function adds the slot
226 static void MergeTyped(MemoryChunk* page, std::unique_ptr<TypedSlots> other) {
227 TypedSlotSet* slot_set = page->typed_slot_set<type>();
229 slot_set = page->AllocateTypedSlotSet<type>();
234 // Given a page and a range of typed slots in that page, this function removes
236 static void RemoveRangeTyped(MemoryChunk* page, Address start, Address end) {
237 TypedSlotSet* slot_set = page->typed_slot_set<type>();