Searched refs:adj (Results 1 – 7 of 7) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/ |
A D | unwind.c | 30 # define FRAME_LEFT(frame, other, adj) \ argument 31 ((uintptr_t) frame - adj >= (uintptr_t) other - adj) 33 # define FRAME_LEFT(frame, other, adj) \ argument 34 ((uintptr_t) frame - adj <= (uintptr_t) other - adj) 53 uintptr_t adj = (uintptr_t) self->stackblock + self->stackblock_size; in unwind_stop() local 62 adj)) in unwind_stop() 73 if (curp != oldp && (do_longjump || FRAME_LEFT (cfa, curp, adj))) in unwind_stop() 87 && (do_longjump || FRAME_LEFT (cfa, curp, adj))); in unwind_stop()
|
A D | pt-cleanup.c | 34 uintptr_t adj = (uintptr_t) self->stackblock + self->stackblock_size; in __pthread_cleanup_upto() local 35 uintptr_t targetframe_adj = (uintptr_t) targetframe - adj; in __pthread_cleanup_upto() 38 cbuf != NULL && _JMPBUF_UNWINDS_ADJ (target, cbuf, adj); in __pthread_cleanup_upto() 42 if ((uintptr_t) cbuf - adj <= targetframe_adj) in __pthread_cleanup_upto() 48 if ((uintptr_t) cbuf - adj >= targetframe_adj) in __pthread_cleanup_upto()
|
A D | allocatestack.c | 354 uintptr_t adj; in allocate_stack() local 364 adj = ((uintptr_t) attr->stackaddr - TLS_TCB_SIZE) in allocate_stack() 366 assert (size > adj + TLS_TCB_SIZE); in allocate_stack() 368 adj = ((uintptr_t) attr->stackaddr - __static_tls_size) in allocate_stack() 370 assert (size > adj); in allocate_stack() 379 - TLS_TCB_SIZE - adj); in allocate_stack() 382 - __static_tls_size - adj) in allocate_stack()
|
A D | ChangeLog | 5830 * unwind.c (FRAME_LEFT): Add adj argument. Subtract it from each
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/sh/ |
A D | jmpbuf-unwind.h | 26 #define _JMPBUF_UNWINDS_ADJ(jmpbuf, address, adj) \ argument 27 ((uintptr_t) (address) - (adj) < (uintptr_t) (jmpbuf)[0].__regs[7] - (adj))
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh/ |
A D | jmpbuf-unwind.h | 20 #define _JMPBUF_UNWINDS_ADJ(jmpbuf, address, adj) \ argument 21 ((uintptr_t) (address) - (adj) < (uintptr_t) (jmpbuf)[0].__regs[7] - (adj))
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc-simple/ |
A D | alloc.c | 163 unsigned long int adj; in memalign() local 179 adj = (unsigned long int) ((unsigned long int) ((char *) result - (char *) NULL)) % alignment; in memalign() 180 if (adj != 0) { in memalign() 198 result = l->aligned = (char *) result + alignment - adj; in memalign()
|
Completed in 17 milliseconds