Home
last modified time | relevance | path

Searched refs:new_move (Results 1 – 1 of 1) sorted by relevance

/glibc-2.36/nscd/
Dmem.c335 struct moveinfo *new_move; in gc() local
336 if (__builtin_expect (stack_used + sizeof (*new_move) <= MAX_STACK_USE, in gc()
338 new_move = alloca_account (sizeof (*new_move), stack_used); in gc()
340 new_move = obstack_alloc (&ob, sizeof (*new_move)); in gc()
341 new_move->from = db->data + off_alloc; in gc()
342 new_move->to = db->data + off_free; in gc()
343 new_move->size = off_allocend - off_alloc; in gc()
346 moves = new_move->next = new_move; in gc()
349 new_move->next = moves->next; in gc()
350 moves = moves->next = new_move; in gc()