/glibc-2.36/signal/ |
D | tst-sigset2.c | 73 sighandler_t prev; in returnTest1() local 82 prev = sigset (TEST_SIG, handler); in returnTest1() 83 if (prev == SIG_ERR) in returnTest1() 87 printDisposition (prev); in returnTest1() 89 if (prev != SIG_HOLD) in returnTest1() 100 sighandler_t prev; in returnTest2() local 105 prev = sigset (TEST_SIG, SIG_HOLD); in returnTest2() 106 if (prev == SIG_ERR) in returnTest2() 110 printDisposition (prev); in returnTest2() 112 if (prev != SIG_DFL) in returnTest2() [all …]
|
/glibc-2.36/include/ |
D | list.h | 36 (ptr)->next = (ptr)->prev = (ptr) 44 newp->prev = head; in list_add() 45 head->next->prev = newp; in list_add() 55 elem->next->prev = elem->prev; in list_del() 56 elem->prev->next = elem->next; in list_del() 67 add->next->prev = head; in list_splice() 68 add->prev->next = head->next; in list_splice() 69 head->next->prev = add->prev; in list_splice() 88 for (pos = (head)->prev; pos != (head); pos = pos->prev) 94 for (pos = (head)->prev, p = pos->prev; \ [all …]
|
D | list_t.h | 27 struct list_head *prev; member
|
/glibc-2.36/misc/ |
D | insremque.c | 24 insque (void *elem, void *prev) in insque() argument 26 if (prev == NULL) in insque() 33 struct qelem *next = ((struct qelem *) prev)->q_forw; in insque() 34 ((struct qelem *) prev)->q_forw = (struct qelem *) elem; in insque() 38 ((struct qelem *) elem)->q_back = (struct qelem *) prev; in insque() 48 struct qelem *prev = ((struct qelem *) elem)->q_back; in remque() local 50 next->q_back = prev; in remque() 51 if (prev != NULL) in remque() 52 prev->q_forw = (struct qelem *) next; in remque()
|
/glibc-2.36/malloc/ |
D | mcheck-impl.c | 39 struct hdr *prev; member 77 switch (hdr->magic ^ ((uintptr_t) hdr->prev + (uintptr_t) hdr->next)) in checkhdr() 137 ptr->next->prev = ptr->prev; in unlink_blk() 138 ptr->next->magic = MAGICWORD ^ ((uintptr_t) ptr->next->prev in unlink_blk() 141 if (ptr->prev != NULL) in unlink_blk() 143 ptr->prev->next = ptr->next; in unlink_blk() 144 ptr->prev->magic = MAGICWORD ^ ((uintptr_t) ptr->prev->prev in unlink_blk() 145 + (uintptr_t) ptr->prev->next); in unlink_blk() 154 hdr->prev = NULL; in link_blk() 162 hdr->next->prev = hdr; in link_blk() [all …]
|
D | obstack.c | 183 chunk->prev = 0; in _obstack_begin() 231 chunk->prev = 0; in _obstack_begin_1() 265 new_chunk->prev = old_chunk; in _obstack_newchunk() 300 new_chunk->prev = old_chunk->prev; in _obstack_newchunk() 333 plp = lp->prev; in _obstack_allocated_p() 356 plp = lp->prev; in __obstack_free() 386 for (lp = h->chunk; lp != 0; lp = lp->prev) in strong_alias()
|
D | obstack.h | 149 struct _obstack_chunk *prev; /* address of prior chunk or NULL */ member 291 (__o->chunk->prev == 0 \ 420 ((h)->chunk->prev == 0 \
|
/glibc-2.36/time/ |
D | tst-ftime.c | 28 struct timeb prev, curr = {.time = 0, .millitm = 0}; in do_test() local 33 prev = curr; in do_test() 43 TEST_VERIFY (curr.time >= prev.time); in do_test() 45 if (curr.time == prev.time) in do_test() 46 TEST_VERIFY (curr.millitm >= prev.millitm); in do_test() 48 if (curr.time > prev.time) in do_test()
|
/glibc-2.36/sysdeps/nptl/ |
D | fork.h | 76 if (GL (dl_stack_used).next->prev != &GL (dl_stack_used)) in reclaim_stacks() 78 else if (GL (dl_stack_cache).next->prev != &GL (dl_stack_cache)) in reclaim_stacks() 83 assert (l->next->prev == elem); in reclaim_stacks() 85 elem->prev = l; in reclaim_stacks() 92 elem->next->prev = elem->prev; in reclaim_stacks() 93 elem->prev->next = elem->next; in reclaim_stacks()
|
D | libc_start_call_main.h | 51 unwind_buf.priv.data.prev = THREAD_GETMEM (self, cleanup_jmp_buf); in __libc_start_call_main()
|
/glibc-2.36/sunrpc/ |
D | svc.c | 161 svc_find (rpcprog_t prog, rpcvers_t vers, struct svc_callout **prev) in libc_hidden_def() 173 *prev = p; in libc_hidden_def() 185 struct svc_callout *prev; in svc_register() local 188 if ((s = svc_find (prog, vers, &prev)) != NULL_SVC) in svc_register() 227 struct svc_callout *prev; in libc_hidden_def() local 230 if ((s = svc_find (prog, vers, &prev)) == NULL_SVC) in libc_hidden_def() 234 if (prev == NULL_SVC) in libc_hidden_def() 237 prev->sc_next = s->sc_next; in libc_hidden_def()
|
D | svcauth_des.c | 430 register int prev; in cache_ref() local 432 prev = authdes_lru[0]; in cache_ref() 434 for (i = 1; prev != sid; ++i) in cache_ref() 437 authdes_lru[i] = prev; in cache_ref() 438 prev = curr; in cache_ref()
|
/glibc-2.36/sysdeps/htl/ |
D | timer_routines.c | 73 newp->prev = list->prev; in list_append() 75 list->prev->next = newp; in list_append() 76 list->prev = newp; in list_append() 93 struct list_head *lnext = list->next, *lprev = list->prev; in list_unlink() 95 lnext->prev = lprev; in list_unlink()
|
/glibc-2.36/stdlib/ |
D | test-cxa_atexit-race2.c | 41 static void *prev; in atexit_cb() local 42 if (arg == prev) in atexit_cb() 44 prev = arg; in atexit_cb()
|
/glibc-2.36/sysdeps/pthread/ |
D | posix-timer.h | 165 struct list_head *lnext = list->next, *lprev = list->prev; in list_unlink_ip() 167 lnext->prev = lprev; in list_unlink_ip() 175 list->prev = list; in list_unlink_ip()
|
/glibc-2.36/sysdeps/mips/ |
D | unwind-arch.h | 44 unwind_arch_adjustment (void *prev, void *addr) in unwind_arch_adjustment() argument 46 uint32_t *pc = (uint32_t *) prev; in unwind_arch_adjustment()
|
/glibc-2.36/nptl/ |
D | cleanup.c | 30 ibuf->priv.data.prev = THREAD_GETMEM (self, cleanup_jmp_buf); in ___pthread_register_cancel() 52 THREAD_SETMEM (THREAD_SELF, cleanup_jmp_buf, ibuf->priv.data.prev); in ___pthread_unregister_cancel()
|
D | descr.h | 82 struct pthread_unwind_buf *prev; member 218 __pthread_list_t *prev = (__pthread_list_t *) \ 221 prev->__next = mutex->__data.__list.__next; \
|
D | cleanup_defer.c | 30 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()
|
D | nptl-stack.c | 61 list_t *prev; in libc_hidden_def() local 64 list_for_each_prev_safe (entry, prev, &GL (dl_stack_cache)) in libc_hidden_def()
|
/glibc-2.36/sysdeps/sparc/sparc32/ |
D | memcpy.S | 67 #define SMOVE_CHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, prev, shil, shir, offset2) \ argument 73 or %t5, %prev, %t5; \ 74 sll %t1, shil, %prev; \ 79 or %t1, %prev, %t1; \ 82 sll %t3, shil, %prev; \ 85 #define SMOVE_ALIGNCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, prev, shil, shir, offset2) \ argument 91 or %t4, %prev, %t0; \ 92 sll %t1, shil, %prev; \ 97 or %t4, %prev, %t2; \ 98 sll %t3, shil, %prev; \
|
/glibc-2.36/sysdeps/generic/ |
D | unwind-dw2.c | 103 struct frame_state_reg_info *prev; member 732 fs->regs.prev = NULL; in execute_cfa_program() 823 unused_rs = unused_rs->prev; in execute_cfa_program() 829 fs->regs.prev = new_rs; in execute_cfa_program() 835 struct frame_state_reg_info *old_rs = fs->regs.prev; in execute_cfa_program() 843 old_rs->prev = unused_rs; in execute_cfa_program()
|
D | unwind-link.h | 27 unwind_arch_adjustment (void *prev, void *addr) in unwind_arch_adjustment() argument
|
/glibc-2.36/elf/ |
D | pldd.c | 190 struct thread_list *prev = thread_list; in main() local 192 free (prev); in main()
|
D | dl-tunables.c | 73 char **prev = envp; in get_next_env() local 87 *prev_envp = prev; in get_next_env()
|