Lines Matching refs:delptr
216 #define HASH_DELETE(hh,head,delptr) \ argument
220 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \
227 _hd_hh_del = &((delptr)->hh); \
228 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \
230 (UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \
233 if ((delptr)->hh.prev) { \
234 ((UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \
235 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \
237 DECLTYPE_ASSIGN(head,(delptr)->hh.next); \
271 #define HASH_DEL(head,delptr) \ argument
272 HASH_DELETE(hh,head,delptr)