Searched refs:adj (Results 1 – 3 of 3) sorted by relevance
/nptl/ |
A D | pthread_cleanup_upto.c | 32 uintptr_t adj = (uintptr_t) self->stackblock + self->stackblock_size; in __pthread_cleanup_upto() local 33 uintptr_t targetframe_adj = (uintptr_t) targetframe - adj; in __pthread_cleanup_upto() 36 cbuf != NULL && _JMPBUF_UNWINDS_ADJ (target, cbuf, adj); in __pthread_cleanup_upto() 40 if ((uintptr_t) cbuf - adj <= targetframe_adj) in __pthread_cleanup_upto() 46 if ((uintptr_t) cbuf - adj >= targetframe_adj) in __pthread_cleanup_upto()
|
A D | unwind.c | 29 # define FRAME_LEFT(frame, other, adj) \ argument 30 ((uintptr_t) frame - adj >= (uintptr_t) other - adj) 32 # define FRAME_LEFT(frame, other, adj) \ argument 33 ((uintptr_t) frame - adj <= (uintptr_t) other - adj) 52 uintptr_t adj = (uintptr_t) self->stackblock + self->stackblock_size; in unwind_stop() local 61 adj)) in unwind_stop() 72 if (curp != oldp && (do_longjump || FRAME_LEFT (cfa, curp, adj))) in unwind_stop() 86 && (do_longjump || FRAME_LEFT (cfa, curp, adj))); in unwind_stop()
|
A D | allocatestack.c | 241 uintptr_t adj; in allocate_stack() local 259 adj = ((uintptr_t) stackaddr - TLS_TCB_SIZE) in allocate_stack() 261 assert (size > adj + TLS_TCB_SIZE); in allocate_stack() 263 adj = ((uintptr_t) stackaddr - tls_static_size_for_stack) in allocate_stack() 265 assert (size > adj); in allocate_stack() 274 - TLS_TCB_SIZE - adj); in allocate_stack() 277 - tls_static_size_for_stack - adj) in allocate_stack()
|
Completed in 6 milliseconds