HomeSort by relevance Sort by last modified time
    Searched refs:routine (Results 1 - 25 of 259) sorted by null

1 2 3 4 5 6 7 8 91011

  /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;
  /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);
  /external/chromium_org/third_party/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
unw_destroy_addr_space.tex 19 The \Func{unw\_destroy\_addr\_space}() routine destroys the
unw_get_proc_info_by_ip.tex 19 The \Func{unw\_get\_proc\_info\_by\_ip}() routine returns the same
28 The routine expects the followins arguments: \Var{as} is the
46 members. If a single function/routine is split into multiple,
59 address-space is passed in argument \Var{as}, this routine is also
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
usage.c 48 void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN)
50 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/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 45 void __pthread_cleanup_push(__pthread_cleanup_t* c, __pthread_cleanup_func_t routine, void* arg) {
47 c->__cleanup_routine = routine;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
mem-memcpy.c 25 static const char *routine = "default"; variable
36 OPT_STRING('r', "routine", &routine, "default",
37 "Specify routine to copy"),
51 struct routine { struct
57 struct routine routines[] = {
210 if (!strcmp(routines[i].name, routine))
214 printf("Unknown routine:%s\n", routine);
mem-memset.c 25 static const char *routine = "default"; variable
36 OPT_STRING('r', "routine", &routine, "default",
37 "Specify routine to set"),
51 struct routine { struct
57 static const struct routine routines[] = {
202 if (!strcmp(routines[i].name, routine))
206 printf("Unknown routine:%s\n", routine);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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...]
  /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 )

Completed in 872 milliseconds

1 2 3 4 5 6 7 8 91011