Lines Matching refs:delptr
192 #define HASH_DELETE(hh,head,delptr) \ argument
196 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \
203 _hd_hh_del = &((delptr)->hh); \
204 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \
206 (UT_hash_handle*)((char*)((delptr)->hh.prev) + \
209 if ((delptr)->hh.prev) { \
210 ((UT_hash_handle*)((char*)((delptr)->hh.prev) + \
211 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \
213 DECLTYPE_ASSIGN(head,(delptr)->hh.next); \
241 #define HASH_DEL(head,delptr) \ argument
242 HASH_DELETE(hh,head,delptr)