Lines Matching refs:next
82 GFreeAtom *next;
87 GMemArea *next; /* the next mem area */
115 GMemChunk *next; /* pointer to the next chunk */
179 mem_chunk->next = mem_chunks;
205 mem_areas = mem_areas->next;
210 if (mem_chunk->next)
211 mem_chunk->next->prev = mem_chunk->prev;
213 mem_chunk->prev->next = mem_chunk->next;
216 mem_chunks = mem_chunks->next;
242 * point to its next element.
245 mem_chunk->free_atoms = mem_chunk->free_atoms->next;
278 if (temp_area->next)
279 temp_area->next->prev = temp_area->prev;
281 temp_area->prev->next = temp_area->next;
283 mem_chunk->mem_areas = mem_chunk->mem_areas->next;
332 mem_chunk->mem_area->next = mem_chunk->mem_areas;
400 free_atom->next = mem_chunk->free_atoms;
451 prev_free_atom->next = temp_free_atom->next;
453 mem_chunk->free_atoms = temp_free_atom->next;
454 temp_free_atom = temp_free_atom->next;
462 if (mem_area->next)
463 mem_area->next->prev = mem_area->prev;
465 mem_area->prev->next = mem_area->next;
467 mem_chunk->mem_areas = mem_chunk->mem_areas->next;
479 temp_free_atom = temp_free_atom->next;
504 mem_areas = mem_areas->next;
533 mem_areas = mem_areas->next;
553 next;
566 mem_chunk = mem_chunk->next;