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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/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/swiftshader/src/Reactor/
LLVMRoutineManager.cpp 31 routine = nullptr;
36 delete routine;
71 delete routine;
72 routine = new LLVMRoutine(static_cast<int>(actualSize));
74 return (uint8_t*)routine->buffer;
79 routine->functionSize = static_cast<int>(static_cast<ptrdiff_t>(functionEnd - functionStart));
113 delete routine;
114 routine = nullptr;
131 markExecutable(routine->buffer, routine->bufferSize)
    [all...]
Main.cpp 38 Routine *routine = nullptr; local
62 routine = function(L"one");
64 if(routine)
66 int (*callable)(int*, int) = (int(*)(int*,int))routine->getEntry();
73 delete routine;
78 Routine *routine = nullptr; local
100 routine = function(L"one");
102 if(routine)
115 Routine *routine = nullptr; local
175 Routine *routine = nullptr; local
224 Routine *routine = nullptr; local
267 Routine *routine = nullptr; local
394 Routine *routine = nullptr; local
961 Routine *routine = nullptr; local
    [all...]
LLVMRoutineManager.hpp 51 LLVMRoutine *routine; member in class:sw::LLVMRoutineManager
  /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);
  /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
  /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) --
  /prebuilts/go/darwin-x86/src/runtime/
mmap.go 17 // assembly routine; the higher bits (if required), should be provided
18 // by the assembly routine as 0.
  /prebuilts/go/linux-x86/src/runtime/
mmap.go 17 // assembly routine; the higher bits (if required), should be provided
18 // by the assembly routine as 0.
  /bionic/libc/bionic/
pthread_exit.cpp 50 void __pthread_cleanup_push(__pthread_cleanup_t* c, __pthread_cleanup_func_t routine, void* arg) {
52 c->__cleanup_routine = routine;
  /external/swiftshader/src/Renderer/
SetupProcessor.cpp 226 Routine *SetupProcessor::routine(const State &state) function in class:sw::SetupProcessor
228 Routine *routine = routineCache->query(state); local
230 if(!routine)
234 routine = generator->getRoutine();
237 routineCache->add(state, routine);
240 return routine;
  /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...]
  /prebuilts/go/darwin-x86/src/sync/
cond_test.go 287 for routine := 0; routine < waiters+1; routine++ {
311 for routine := 0; routine < waiters+1; routine++ {
  /prebuilts/go/linux-x86/src/sync/
cond_test.go 287 for routine := 0; routine < waiters+1; routine++ {
311 for routine := 0; routine < waiters+1; routine++ {

Completed in 269 milliseconds

1 2 3 4 5 6 7 8 91011>>