Home
last modified time | relevance | path

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

/NextBSD/contrib/gcc/
HDbitmap.c640 bitmap_element *dst_elt = dst->first; in bitmap_and() local
665 if (!dst_elt) in bitmap_and()
666 dst_elt = bitmap_elt_insert_after (dst, dst_prev, a_elt->indx); in bitmap_and()
668 dst_elt->indx = a_elt->indx; in bitmap_and()
673 dst_elt->bits[ix] = r; in bitmap_and()
678 dst_prev = dst_elt; in bitmap_and()
679 dst_elt = dst_elt->next; in bitmap_and()
685 bitmap_elt_clear_from (dst, dst_elt); in bitmap_and()
743 bitmap_element *dst_elt = dst->first; in bitmap_and_compl() local
761 if (!dst_elt) in bitmap_and_compl()
[all …]
/NextBSD/contrib/apr/tables/
HDapr_tables.c527 apr_table_entry_t *dst_elt = NULL; in apr_table_set() local
536 if (!dst_elt) { in apr_table_set()
537 dst_elt = next_elt; in apr_table_set()
540 else if (dst_elt) { in apr_table_set()
541 *dst_elt++ = *next_elt; in apr_table_set()
551 if (dst_elt) { in apr_table_set()
553 *dst_elt++ = *next_elt; in apr_table_set()
599 apr_table_entry_t *dst_elt = NULL; in apr_table_setn() local
608 if (!dst_elt) { in apr_table_setn()
609 dst_elt = next_elt; in apr_table_setn()
[all …]