Home
last modified time | relevance | path

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

/NextBSD/contrib/gcc/
HDbitmap.c398 bitmap_element *to_elt = bitmap_element_allocate (to); in bitmap_copy() local
400 to_elt->indx = from_ptr->indx; in bitmap_copy()
401 memcpy (to_elt->bits, from_ptr->bits, sizeof (to_elt->bits)); in bitmap_copy()
407 to->first = to->current = to_elt; in bitmap_copy()
409 to_elt->next = to_elt->prev = 0; in bitmap_copy()
413 to_elt->prev = to_ptr; in bitmap_copy()
414 to_elt->next = 0; in bitmap_copy()
415 to_ptr->next = to_elt; in bitmap_copy()
418 to_ptr = to_elt; in bitmap_copy()