/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/sysdeps/pthread/ |
A D | list.h | 31 struct list_head *prev; member 48 head->next->prev = newp; in list_add() 50 newp->prev = head; in list_add() 59 head->prev->next = newp; in list_add_tail() 61 newp->prev = head->prev; in list_add_tail() 62 head->prev = newp; in list_add_tail() 70 elem->next->prev = elem->prev; in list_del() 82 add->next->prev = head; in list_splice() 84 head->next->prev = add->prev; in list_splice() 103 for (pos = (head)->prev; pos != (head); pos = pos->prev) [all …]
|
A D | posix-timer.h | 27 struct list_links *prev; member 179 struct list_links *lnext = list->next, *lprev = list->prev; in list_unlink_ip() 181 lnext->prev = lprev; in list_unlink_ip() 189 list->prev = list; in list_unlink_ip()
|
A D | timer_routines.c | 70 list->next = list->prev = list; in list_init() 76 newp->prev = list->prev; in list_append() 78 list->prev->next = newp; in list_append() 79 list->prev = newp; in list_append() 96 struct list_links *lnext = list->next, *lprev = list->prev; in list_unlink() 98 lnext->prev = lprev; in list_unlink()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/pthread/ |
A D | list.h | 31 struct list_head *prev; member 41 (ptr)->next = (ptr)->prev = (ptr) 49 newp->prev = head; in list_add() 50 head->next->prev = newp; in list_add() 59 elem->next->prev = elem->prev; in list_del() 60 elem->prev->next = elem->next; in list_del() 71 add->next->prev = head; in list_splice() 73 head->next->prev = add->prev; in list_splice() 92 for (pos = (head)->prev; pos != (head); pos = pos->prev) 98 for (pos = (head)->prev, p = pos->prev; \ [all …]
|
A D | posix-timer.h | 27 struct list_links *prev; member 172 struct list_links *lnext = list->next, *lprev = list->prev; in list_unlink_ip() 174 lnext->prev = lprev; in list_unlink_ip() 182 list->prev = list; in list_unlink_ip()
|
A D | timer_routines.c | 71 list->next = list->prev = list; in list_init() 77 newp->prev = list->prev; in list_append() 79 list->prev->next = newp; in list_append() 80 list->prev = newp; in list_append() 97 struct list_links *lnext = list->next, *lprev = list->prev; in list_unlink() 99 lnext->prev = lprev; in list_unlink()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc/ |
A D | heap.h | 44 struct heap_free_area *next, *prev; member 110 fa->next->prev = fa->prev; in __heap_delete() 111 if (fa->prev) in __heap_delete() 112 fa->prev->next = fa->next; in __heap_delete() 127 fa->prev = prev; in __heap_link_free_area() 129 if (prev) in __heap_link_free_area() 130 prev->next = fa; in __heap_link_free_area() 134 next->prev = fa; in __heap_link_free_area() 145 if (prev) in __heap_link_free_area_after() 146 prev->next = fa; in __heap_link_free_area_after() [all …]
|
A D | heap_debug.c | 41 (long)fa->prev, in __heap_dump_freelist() 98 struct heap_free_area *fa, *prev; in __heap_check() local 101 if (first_fa && first_fa->prev) in __heap_check() 107 (ul_t)first_fa, (ul_t)first_fa->prev); in __heap_check() 109 for (prev = 0, fa = first_fa; fa; prev = fa, fa = fa->next) in __heap_check() 120 if (fa->prev != prev) in __heap_check() 124 (ul_t)prev, (ul_t)prev->next, in __heap_check() 125 (ul_t)fa, (ul_t)fa->prev); in __heap_check() 127 if (prev) in __heap_check() 139 (ul_t)fa, (ul_t)prev, in __heap_check() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/ |
A D | list.h | 24 struct list_head *next, *prev; member 82 struct list_head *prev, in __list_add() argument 85 next->prev = _new; in __list_add() 87 _new->prev = prev; in __list_add() 88 prev->next = _new; in __list_add() 101 __list_add(_new, head->prev, head); in list_add_tail() 111 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del() argument 113 next->prev = prev; in __list_del() 114 prev->next = next; in __list_del() 127 __list_del(entry->prev, entry->next); in list_del() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/search/ |
A D | insremque.c | 27 insque (void *elem, void *prev) in insque() argument 29 if (prev == NULL) in insque() 36 struct qelem *next = ((struct qelem *) prev)->q_forw; in insque() 37 ((struct qelem *) prev)->q_forw = (struct qelem *) elem; in insque() 41 ((struct qelem *) elem)->q_back = (struct qelem *) prev; in insque() 54 struct qelem *prev = ((struct qelem *) elem)->q_back; in remque() local 56 next->q_back = prev; in remque() 57 if (prev != NULL) in remque() 58 prev->q_forw = (struct qelem *) next; in remque()
|
/l4re-core-master/cxx/lib/tl/include/ |
A D | dlist | 41 static D_list_item *&prev(D_list_item *e) { return e->_dli_prev; } 43 static D_list_item *prev(D_list_item const *e) { return e->_dli_prev; } 85 _c = C::prev(_c); 108 C::next(C::prev(e)) = C::next(e); 109 C::prev(C::next(e)) = C::prev(e); 127 C::prev(e) = *pos; 129 C::prev(C::next(*pos)) = e; 137 C::prev(e) = C::prev(*pos); 138 C::next(C::prev(*pos)) = e; 139 C::prev(*pos) = e; [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/gnu/ |
A D | obstack.c | 199 chunk->prev = 0; 247 chunk->prev = 0; in _obstack_begin_1() 281 new_chunk->prev = old_chunk; in _obstack_newchunk() 316 new_chunk->prev = old_chunk->prev; in _obstack_newchunk() 347 plp = lp->prev; in _obstack_allocated_p() 370 plp = lp->prev; in obstack_free() 400 for (lp = h->chunk; lp != 0; lp = lp->prev) in _obstack_memory_used()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/libsupc++/ |
A D | eh_catch.cc | 45 __cxa_exception *prev = globals->caughtExceptions; in __cxa_begin_catch() local 55 if (prev != 0) in __cxa_begin_catch() 76 if (header != prev) in __cxa_begin_catch() 78 header->nextException = prev; in __cxa_begin_catch()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/internals/ |
A D | shared_flat_add_library.c | 40 this_lib.prev = __last_shared_lib; in __shared_flat_add_library() 41 if (this_lib.prev) in __shared_flat_add_library() 42 this_lib.prev->next = &this_lib; in __shared_flat_add_library()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/rpc/ |
A D | svc.c | 147 svc_find (rpcprog_t prog, rpcvers_t vers, struct svc_callout **prev) in libc_hidden_def() 159 *prev = p; in libc_hidden_def() 171 struct svc_callout *prev; in svc_register() local 174 if ((s = svc_find (prog, vers, &prev)) != NULL_SVC) in svc_register() 203 struct svc_callout *prev; in libc_hidden_def() local 206 if ((s = svc_find (prog, vers, &prev)) == NULL_SVC) in libc_hidden_def() 209 if (prev == NULL_SVC) in libc_hidden_def() 212 prev->sc_next = s->sc_next; in libc_hidden_def()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/ |
A D | cleanup.c | 31 ibuf->priv.data.prev = THREAD_GETMEM (self, cleanup_jmp_buf); in __pthread_register_cancel() 46 THREAD_SETMEM (THREAD_SELF, cleanup_jmp_buf, ibuf->priv.data.prev); in hidden_def()
|
A D | cleanup_defer.c | 31 ibuf->priv.data.prev = THREAD_GETMEM (self, cleanup_jmp_buf); in __pthread_register_cancel_defer() 68 THREAD_SETMEM (self, cleanup_jmp_buf, ibuf->priv.data.prev); in __pthread_unregister_cancel_restore()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/filesystem/ |
A D | std-path.cc | 48 auto cmpt = std::prev(_M_cmpts.end()); in remove_filename() 52 auto prev = std::prev(cmpt); in remove_filename() local 53 if (prev->_M_type == _Type::_Root_dir in remove_filename() 54 || prev->_M_type == _Type::_Root_name) in remove_filename() 242 for (auto __it = _M_cmpts.begin(), __end = std::prev(_M_cmpts.end()); in parent_path() 424 if (std::prev(elem)->_M_type == _Type::_Filename) in lexically_normal() 444 auto back = std::prev(ret.end()); in lexically_normal() 446 if (back->empty() && is_dotdot(*std::prev(back))) in lexically_normal()
|