/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
unwind-bad-1.l | 4 [^:]*:11: Error: personality routine specified for cantunwind frame 5 [^:]*:19: Error: personality routine specified for cantunwind frame 9 [^:]*:41: Error: personality routine required before \.handlerdata directive 10 [^:]*:48: Error: bad personality routine number 11 [^:]*:50: Error: bad personality routine number
|
unwind-bad-1.s | 10 # personality routine specified for cantunwind frame 18 # personality routine specified for cantunwind frame 40 # personality routine required before .handlerdata directive 47 # bad personality routine number 49 # bad personality routine number
|
unwind-bad-2.l | 2 [^:]*:8: Error: stack pointer offset too large for personality routine 3 [^:]*:20: Error: stack frame layout does not match personality routine 4 [^:]*:33: Error: stack frame layout does not match personality routine
|
unwind-bad-2.s | 4 # stack pointer offset too large for personality routine 18 # stack frame layout does not match personality routine 31 # stack frame layout does not match personality routine
|
/external/jemalloc/test/src/ |
thd.c | 7 LPTHREAD_START_ROUTINE routine = (LPTHREAD_START_ROUTINE)proc; local 8 *thd = CreateThread(NULL, 0, routine, arg, 0, NULL);
|
/external/ltrace/testsuite/ltrace.torture/ |
vfork-thread.c | 8 routine (void *data) function 41 pthread_create (&thread, NULL, &routine, NULL);
|
/art/runtime/interpreter/mterp/x86/ |
op_div_long.S | 1 %default {"routine":"art_quick_ldiv"} 6 .extern $routine 18 call SYMBOL($routine)
|
op_div_long_2addr.S | 1 %default {"routine":"art_quick_ldiv"} 6 .extern $routine 20 call SYMBOL($routine)
|
/external/webrtc/webrtc/common_audio/signal_processing/ |
spl_sqrt_floor_arm.S | 7 @ Subject: Re: sqrt routine 19 @ Subject: Fwd: sqrt routine 21 @ I saw your sqrt routine from several web sites, including
|
/external/libunwind/doc/ |
unw_regname.tex | 19 The \Func{unw\_regname}() routine returns a printable name for 27 The \Func{unw\_regname}() routine cannot fail and always returns a 32 The \Func{unw\_regname}() routine is thread-safe as well as safe to
|
unw_backtrace.tex | 23 \Func{unw\_backtrace}() is a convenient routine for obtaining the backtrace for 24 the calling program. The routine fills up to \Var{size} addresses in the array 25 pointed by \Var{buffer}. The routine is only available for local unwinding. 37 The routine returns the number of addresses stored in the array pointed by
|
unw_flush_cache.tex | 19 The \Func{unw\_flush\_cache}() routine flushes all cached info as it 25 flushed by a call to this routine. The address range specified by 36 The \Func{unw\_flush\_cache}() routine cannot fail and does not 41 The \Func{unw\_flush\_cache}() routine is thread-safe as well as safe to
|
unw_get_accessors.tex | 19 The \Func{unw\_get\_accessors}() routine returns a pointer to a 32 The \Func{unw\_get\_accessors}() routine cannot fail and always 38 The \Func{unw\_get\_accessors}() routine is thread-safe as well as
|
unw_is_fpreg.tex | 19 The \Func{unw\_is\_fpreg}() routine checks whether register number 22 This routine is normally implemented as a macro and applications 27 The \Func{unw\_is\_fpreg}() routine returns a non-zero value if
|
unw_get_proc_info.tex | 19 The \Func{unw\_get\_proc\_info}() routine returns auxiliary 39 handler routine. This is sometimes called the \emph{personality} 40 routine. If the procedure does not define 41 a personality routine, the \Var{handler} member is cleared to 0. \\ 60 \Func{unw\_get\_proc\_info}() routine 66 \Func{unw\_get\_proc\_info}() routine 73 \Func{unw\_get\_proc\_info}() routine 80 members. If a single function/routine is split into multiple, 93 in the local address-space, this routine is also safe to use from a
|
_U_dyn_cancel.tex | 19 The \Func{\_U\_dyn\_cancel}() routine cancels the registration of the 24 The \Func{\_U\_dyn\_cancel}() routine is guaranteed to execute in
|
_U_dyn_register.tex | 19 The \Func{\_U\_dyn\_register}() routine registers unwind-info for a 25 The \Func{\_U\_dyn\_register}() routine is guaranteed to execute in
|
/prebuilts/go/darwin-x86/src/sync/ |
cond_test.go | 228 for routine := 0; routine < waiters+1; routine++ { 252 for routine := 0; routine < waiters+1; routine++ {
|
/prebuilts/go/linux-x86/src/sync/ |
cond_test.go | 228 for routine := 0; routine < waiters+1; routine++ { 252 for routine := 0; routine < waiters+1; routine++ {
|
/external/eigen/lapack/ |
dsecnd_NONE.f | 20 *> If you are using that routine, it means that neither EXTERNAL ETIME, 40 * -- LAPACK auxiliary routine (version 3.4.0) --
|
second_NONE.f | 20 *> If you are using that routine, it means that neither EXTERNAL ETIME, 40 * -- LAPACK auxiliary routine (version 3.4.0) --
|
/bionic/libc/bionic/ |
pthread_exit.cpp | 46 void __pthread_cleanup_push(__pthread_cleanup_t* c, __pthread_cleanup_func_t routine, void* arg) { 48 c->__cleanup_routine = routine;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
pthread.h | 224 /* Create a new thread, starting with execution of START-ROUTINE 542 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 543 when the thread is canceled or calls pthread_exit. ROUTINE will also 549 # define pthread_cleanup_push(routine, arg) \ 551 __pthread_cleanup_class __clframe (routine, arg) 563 # define pthread_cleanup_push_defer_np(routine, arg) \ 565 __pthread_cleanup_class __clframe (routine, arg); \ 588 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 589 when the thread is canceled or calls pthread_exit. ROUTINE will also 595 # define pthread_cleanup_push(routine, arg) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
pthread.h | 222 /* Create a new thread, starting with execution of START-ROUTINE 552 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 553 when the thread is canceled or calls pthread_exit. ROUTINE will also 559 # define pthread_cleanup_push(routine, arg) \ 561 __pthread_cleanup_class __clframe (routine, arg) 573 # define pthread_cleanup_push_defer_np(routine, arg) \ 575 __pthread_cleanup_class __clframe (routine, arg); \ 598 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 599 when the thread is canceled or calls pthread_exit. ROUTINE will also 605 # define pthread_cleanup_push(routine, arg) [all...] |
/external/mesa3d/src/gallium/auxiliary/os/ |
os_thread.h | 57 static INLINE pipe_thread pipe_thread_create( void *(* routine)( void *), void *param ) 65 ret = pthread_create( &thread, NULL, routine, param ); 138 static INLINE pipe_thread pipe_thread_create( void *(WINAPI * routine)( void *), void *param ) 141 return CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE) routine, param, 0, &id ); 252 static INLINE pipe_thread pipe_thread_create( void *(* routine)( void *), void *param )
|