Lines Matching refs:delptr
224 #define HASH_DELETE(hh,head,delptr) \ argument
227 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \
235 _hd_hh_del = &((delptr)->hh); \
236 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \
238 (UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \
241 if ((delptr)->hh.prev) { \
242 ((UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \
243 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \
245 DECLTYPE_ASSIGN(head,(delptr)->hh.next); \
279 #define HASH_DEL(head,delptr) \ argument
280 HASH_DELETE(hh,head,delptr)