/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
cleanup.c | 82 if (execute && (cleanup->routine != NULL)) 85 (*cleanup->routine) (cleanup->arg); 100 ptw32_cleanup_callback_t routine, void *arg) 116 * routine 141 cleanup->routine = routine;
|
/dalvik/vm/compiler/template/armv5te-vfp/ |
TEMPLATE_SQRT_DOUBLE_VFP.S | 20 bx r2 @ tail call to sqrt library routine
|
/dalvik/vm/mterp/armv5te/ |
OP_INVOKE_STATIC.S | 1 %default { "routine":"NoRange" } 21 bne common_invokeMethod${routine} @ yes, continue on 41 beq common_invokeMethod${routine} @ no (r0=method, r9="this") 44 bne common_invokeMethod${routine} @ yes (r0=method, r9="this") 50 b common_invokeMethod${routine} @ whew, finally! 52 bne common_invokeMethod${routine} @ (r0=method, r9="this")
|
OP_INVOKE_INTERFACE.S | 1 %default { "isrange":"0", "routine":"NoRange" } 27 b common_invokeMethod${routine} @ (r0=method, r9="this")
|
OP_INVOKE_VIRTUAL_QUICK.S | 1 %default { "isrange":"0", "routine":"NoRange" } 23 bl common_invokeMethod${routine} @ (r0=method, r9="this")
|
OP_INVOKE_SUPER_QUICK.S | 1 %default { "isrange":"0", "routine":"NoRange" } 25 bl common_invokeMethod${routine} @ (r0=method, r9="this")
|
OP_INVOKE_DIRECT.S | 1 %default { "isrange":"0", "routine":"NoRange" } 30 bne common_invokeMethod${routine} @ r0=method, r9="this"
|
OP_INVOKE_VIRTUAL.S | 1 %default { "isrange":"0", "routine":"NoRange" } 45 bl common_invokeMethod${routine} @ (r0=method, r9="this")
|
/dalvik/vm/mterp/mips/ |
OP_INVOKE_STATIC.S | 1 %default { "routine":"NoRange" } 21 bnez a0, common_invokeMethod${routine} # yes, continue on 40 beqz a2, common_invokeMethod${routine} # no, (a0=method, rOBJ="this") 43 bnez a1, common_invokeMethod${routine} # yes, (a0=method, rOBJ="this") 49 b common_invokeMethod${routine} # whew, finally! 52 bnez v0, common_invokeMethod${routine} # (a0=method, rOBJ="this")
|
OP_INVOKE_INTERFACE.S | 1 %default { "isrange":"0", "routine":"NoRange" } 28 b common_invokeMethod${routine} # (a0=method, rOBJ="this")
|
OP_INVOKE_VIRTUAL_QUICK.S | 1 %default { "isrange":"0", "routine":"NoRange" } 23 b common_invokeMethod${routine} # (a0=method, r9="this")
|
OP_INVOKE_SUPER_QUICK.S | 1 %default { "isrange":"0", "routine":"NoRange" } 25 b common_invokeMethod${routine} # (a0=method, rOBJ="this")
|
/dalvik/vm/mterp/x86/ |
OP_INVOKE_STATIC.S | 1 %default { "routine":"NoRange","isrange":"0" } 25 jne common_invokeMethod${routine} 46 je common_invokeMethod${routine} # no (%eax=method, %ecx="this") 50 jne common_invokeMethod${routine} # yes (%eax=method, %ecx="this") 62 jmp common_invokeMethod${routine} 65 jne common_invokeMethod${routine}
|
OP_INVOKE_VIRTUAL_QUICK.S | 1 %default { "isrange":"0", "routine":"NoRange" } 23 jmp common_invokeMethod${routine}
|
OP_INVOKE_INTERFACE.S | 1 %default { "isrange":"0", "routine":"NoRange" } 34 jmp common_invokeMethod${routine}
|
OP_INVOKE_SUPER_QUICK.S | 1 %default { "isrange":"0", "routine":"NoRange" } 28 jmp common_invokeMethod${routine}
|
/external/linux-tools-perf/util/ |
usage.c | 44 void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN) 46 die_routine = routine;
|
/external/chromium_org/tools/find_runtime_symbols/ |
static_symbols.py | 222 routine = '' 254 routine = sym_name 260 # Tag this routine with the starting address in case the image 261 # has multiple occurrences of this routine. We use a syntax 267 routine = self._get_short_function_name(routine) 269 last_start, Procedure(last_start, start_val, routine)) 272 routine = sym_name 275 routine = self._get_short_function_name(routine) [all...] |
/external/linux-tools-perf/bench/ |
mem-memcpy.c | 26 static const char *routine = "default"; variable 36 OPT_STRING('r', "routine", &routine, "default", 37 "Specify routine to copy"), 49 struct routine { struct 55 struct routine routines[] = { 202 if (!strcmp(routines[i].name, routine)) 206 printf("Unknown routine:%s\n", routine);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
pthread.h | 222 /* Create a new thread, starting with execution of START-ROUTINE 540 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 541 when the thread is canceled or calls pthread_exit. ROUTINE will also 547 # define pthread_cleanup_push(routine, arg) \ 549 __pthread_cleanup_class __clframe (routine, arg) 561 # define pthread_cleanup_push_defer_np(routine, arg) \ 563 __pthread_cleanup_class __clframe (routine, arg); \ 586 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 587 when the thread is canceled or calls pthread_exit. ROUTINE will also 593 # define pthread_cleanup_push(routine, arg) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
pthread.h | 222 /* Create a new thread, starting with execution of START-ROUTINE 540 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 541 when the thread is canceled or calls pthread_exit. ROUTINE will also 547 # define pthread_cleanup_push(routine, arg) \ 549 __pthread_cleanup_class __clframe (routine, arg) 561 # define pthread_cleanup_push_defer_np(routine, arg) \ 563 __pthread_cleanup_class __clframe (routine, arg); \ 586 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 587 when the thread is canceled or calls pthread_exit. ROUTINE will also 593 # define pthread_cleanup_push(routine, arg) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
pthread.h | 222 /* Create a new thread, starting with execution of START-ROUTINE 540 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 541 when the thread is canceled or calls pthread_exit. ROUTINE will also 547 # define pthread_cleanup_push(routine, arg) \ 549 __pthread_cleanup_class __clframe (routine, arg) 561 # define pthread_cleanup_push_defer_np(routine, arg) \ 563 __pthread_cleanup_class __clframe (routine, arg); \ 586 /* Install a cleanup handler: ROUTINE will be called with arguments ARG 587 when the thread is canceled or calls pthread_exit. ROUTINE will also 593 # define pthread_cleanup_push(routine, arg) [all...] |
/external/chromium_org/third_party/mesa/src/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 )
|
/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 )
|
/external/qemu/memcheck/ |
memcheck.c | 59 * routine - If 1, access violation has occurred in 'free' routine. 60 * If 2, access violation has occurred in 'realloc' routine. 63 av_invalid_pointer(ProcDesc* proc, target_ulong ptr, int routine) 71 proc->image_path, proc->pid, ptr, routine == 1 ? "free" : "realloc", 72 routine == 1 ? "free" : "reallocate"); 113 /* Obtain routine, filename / line info for the address. */ 121 printf(" In routine %s in %s/%s:%u\n", 151 printf(" Unable to obtain routine information. Symbols file is not found.\n"); 153 printf(" Unable to obtain routine information.\n [all...] |