Searched refs:routine (Results 1 – 5 of 5) sorted by relevance
/bionic/docs/ |
D | libc_assembler.md | 6 * First, benchmark the previous version of the routine. 7 * Update the routine, run the bionic unit tests to verify the routine doesn't 9 verify that the routine is being properly tested. 11 the new routine. See the [Performance](#Performance) section for details about 13 * Verify that unwind information for new routine looks sane. See the [Unwind Info](#unwind-info) se… 125 especially important if this is the first time a routine is assembler. 129 When verifying an assembler routine that operates on buffer data (such as 132 * Verify the routine does not read past the end of the buffers. Many 136 * Verify the routine handles unaligned buffers properly. Usually, a failure 138 * Verify the routine handles different sized buffers. [all …]
|
D | status.md | 270 `pthread_detach(pthread_self());` from the new thread's start routine
|
/bionic/libc/bionic/ |
D | pthread_exit.cpp | 51 void __pthread_cleanup_push(__pthread_cleanup_t* c, __pthread_cleanup_func_t routine, void* arg) { in __pthread_cleanup_push() argument 53 c->__cleanup_routine = routine; in __pthread_cleanup_push()
|
/bionic/libc/include/ |
D | pthread.h | 296 #define pthread_cleanup_push(routine, arg) \ argument 299 __pthread_cleanup_push( &__cleanup, (routine), (arg) ); \
|
/bionic/libc/malloc_debug/ |
D | README.md | 169 Any allocation routine, other than calloc, will result in the allocation being
|