Searched refs:delptr (Results 1 – 3 of 3) sorted by relevance
/external/fastrpc/inc/ |
D | uthash.h | 202 #define HASH_DELETE(hh,head,delptr) \ argument 206 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \ 213 _hd_hh_del = &((delptr)->hh); \ 214 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \ 216 (UT_hash_handle*)((char*)((delptr)->hh.prev) + \ 219 if ((delptr)->hh.prev) { \ 220 ((UT_hash_handle*)((char*)((delptr)->hh.prev) + \ 221 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \ 223 DECLTYPE_ASSIGN(head,(delptr)->hh.next); \ 259 #define HASH_DEL(head,delptr) \ argument [all …]
|
/external/libdrm/intel/ |
D | uthash.h | 337 #define HASH_DELETE(hh,head,delptr) \ argument 340 if ( ((delptr)->hh.prev == NULL) && ((delptr)->hh.next == NULL) ) { \ 348 _hd_hh_del = &((delptr)->hh); \ 349 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \ 351 (UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \ 354 if ((delptr)->hh.prev != NULL) { \ 355 ((UT_hash_handle*)((ptrdiff_t)((delptr)->hh.prev) + \ 356 (head)->hh.tbl->hho))->next = (delptr)->hh.next; \ 358 DECLTYPE_ASSIGN(head,(delptr)->hh.next); \ 392 #define HASH_DEL(head,delptr) \ argument [all …]
|
/external/llvm-project/openmp/runtime/src/ |
D | kmp_stats.cpp | 398 kmp_stats_list *delptr = this->next; in deallocate() local 400 delptr = ptr; in deallocate() 403 delptr->_event_vector.deallocate(); in deallocate() 404 delptr->~kmp_stats_list(); in deallocate() 405 __kmp_free(delptr); in deallocate()
|