Searched refs:func (Results 1 - 25 of 199) sorted by relevance

12345678

/barrelfish-2018-10-04/lib/libc/arm/aeabi/
H A Daeabi_atexit.c34 __aeabi_atexit(void *object, void (*func)(void*), void *dso) argument
36 return __cxa_atexit(func, object, dso);
/barrelfish-2018-10-04/lib/libc/gen/
H A Dassert.c41 __assert(const char *func, const char *file, int line, const char *failedexpr) argument
43 if (func == NULL)
50 failedexpr, func, file, line);
H A D_pthread_stubs.c150 FUNC_TYPE(name) func; \
151 func = (FUNC_TYPE(name))__thr_jtable[idx][0]; \
152 return (func()); \
156 FUNC_TYPE(name) func; \
157 func = (FUNC_TYPE(name))__thr_jtable[idx][1]; \
158 return (func()); \
169 FUNC_TYPE(name) func; \
170 func = (FUNC_TYPE(name))__thr_jtable[idx][0]; \
171 return (func(p0)); \
175 FUNC_TYPE(name) func; \
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Dck_errf.pl21 $func="";
28 $func = $1;
29 $func =~ tr/A-Z/a-z/;
36 if ($func eq "")
41 # print "check -$file:$.:$func:$n\n";
48 { print "$file:$.:$func:$n [${errlib}err]\n"; $bad = 1; next; }
51 if (($n ne $func) && ($errlib ne "SYS"))
52 { print "$file:$.:$func:$n\n"; $bad = 1; next; }
53 # print "$func:$1\n";
/barrelfish-2018-10-04/lib/openssl-1.0.0d/bugs/
H A Dalpha.c64 * func(*(a++),*(a++))
72 void func(a,b) function
89 func(p,*(p++));
/barrelfish-2018-10-04/lib/acpica/source/include/platform/
H A Dacdragonflyex.h126 const char *func,
134 const char *func,
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dstring.cpp52 void throw_from_string_out_of_range( const string& func )
54 throw_helper<out_of_range>(func + ": out of range");
58 void throw_from_string_invalid_arg( const string& func )
60 throw_helper<invalid_argument>(func + ": no conversion");
68 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) argument
77 throw_from_string_out_of_range(func);
79 throw_from_string_invalid_arg(func);
88 as_integer(const string& func, const S& s, size_t* idx, int base);
94 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
97 long r = as_integer_helper<long>( func,
106 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
114 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
122 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
130 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
139 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
151 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
159 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
167 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
175 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
185 as_float_helper(const string& func, const S& str, size_t* idx, F f ) argument
209 as_float( const string& func, const string& s, size_t* idx ) argument
217 as_float(const string& func, const string& s, size_t* idx ) argument
225 as_float( const string& func, const string& s, size_t* idx ) argument
237 as_float( const string& func, const wstring& s, size_t* idx ) argument
245 as_float( const string& func, const wstring& s, size_t* idx ) argument
253 as_float( const string& func, const wstring& s, size_t* idx ) argument
[all...]
/barrelfish-2018-10-04/lib/lua/src/
H A Dlinit.c55 for (lib = loadedlibs; lib->func; lib++) {
56 luaL_requiref(L, lib->name, lib->func, 1);
61 for (lib = preloadedlibs; lib->func; lib++) {
62 lua_pushcfunction(L, lib->func);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rand/
H A Drand_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_RAND,func,0)
/barrelfish-2018-10-04/lib/cxx/cxxabi/
H A Dcxa_default_handlers.cpp108 set_unexpected(unexpected_handler func) _NOEXCEPT
110 if (func == 0)
111 func = default_unexpected_handler;
112 return __sync_swap(&__cxa_unexpected_handler, func);
114 // return __cxa_unexpected_handler.exchange(func, memory_order_acq_rel);
118 set_terminate(terminate_handler func) _NOEXCEPT
120 if (func == 0)
121 func = default_terminate_handler;
122 return __sync_swap(&__cxa_terminate_handler, func);
124 // return __cxa_terminate_handler.exchange(func, memory_order_acq_re
[all...]
H A Dcxa_handlers.hpp29 __unexpected(unexpected_handler func);
33 __terminate(terminate_handler func) _NOEXCEPT;
H A Dcxa_handlers.cpp37 __unexpected(unexpected_handler func) argument
39 func();
62 __terminate(terminate_handler func) _NOEXCEPT
68 func();
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dquick_exit.c52 at_quick_exit(void (*func)(void)) argument
60 h->cleanup = func;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/buffer/
H A Dbuf_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_BUF,func,0)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/comp/
H A Dcomp_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_COMP,func,0)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/
H A Dcpt_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_CRYPTO,func,0)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ecdh/
H A Dech_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDH,func,0)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/objects/
H A Dobj_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_OBJ,func,0)
/barrelfish-2018-10-04/lib/barrelfish/
H A Dthread_once.c49 void thread_once_internal(thread_once_t *control, void (*func)(void)) { argument
56 (*func)();
/barrelfish-2018-10-04/usr/tests/msun/
H A Dinvctrig_test.c59 #define test_p(func, z, result, exceptmask, excepts, checksign) do { \
61 debug(" testing %s(%Lg + %Lg I) == %Lg + %Lg I\n", #func, \
64 assert(cfpequal_cs((func)(_d), (result), (checksign))); \
65 assert(((void)(func), fetestexcept(exceptmask) == (excepts))); \
72 #define test_p_tol(func, z, result, tol) do { \
74 debug(" testing %s(%Lg + %Lg I) ~= %Lg + %Lg I\n", #func, \
76 assert(cfpequal_tol((func)(_d), (result), (tol), CS_BOTH)); \
80 #define test(func, z, result, exceptmask, excepts, checksign) do { \
81 test_p(func, z, result, exceptmask, excepts, checksign); \
82 test_p(func, conj
[all...]
H A Dctrig_test.c59 #define test_p(func, z, result, exceptmask, excepts, checksign) do { \
61 debug(" testing %s(%Lg + %Lg I) == %Lg + %Lg I\n", #func, \
64 assert(cfpequal_cs((func)(_d), (result), (checksign))); \
65 assert(((void)(func), fetestexcept(exceptmask) == (excepts))); \
73 #define test_p_tol(func, z, result, tol) do { \
75 debug(" testing %s(%Lg + %Lg I) ~= %Lg + %Lg I\n", #func, \
77 assert(cfpequal_tol((func)(_d), (result), (tol), FPE_ABS_ZERO)); \
81 #define test(func, z, result, exceptmask, excepts, checksign) do { \
82 test_p(func, z, result, exceptmask, excepts, checksign); \
83 test_p(func, conj
[all...]
/barrelfish-2018-10-04/lib/acpica/tests/aslts/bin/
H A Dsettings109 local func compl excep bdemo serv impl
113 func="arithmetic bfield constant control descriptor"
114 func="$func logic manipulation name reference region synchronization"
115 func="$func table"
154 # ENABLED_TCASES="$func $compl $excep $bdemo $serv"
155 # ENABLED_TCASES="$func $compl $excep $Identity2MS $bdemo $serv"
156 ENABLED_TCASES="$func $compl $excep $mt $Identity2MS $bdemo $serv"
/barrelfish-2018-10-04/lib/libc/amd64/gen/
H A Dsignalcontext.c39 static void sigctx_wrapper(ucontext_t *ucp, handler_t func, uint64_t *args);
44 __signalcontext(ucontext_t *ucp, int sig, __sighandler_t *func) argument
57 * 'func' onto the stack and do the funky stack alignment.
86 ucp->uc_mcontext.mc_rsi = (register_t)func;
96 sigctx_wrapper(ucontext_t *ucp, handler_t func, uint64_t *args) argument
99 (*func)(args[0], args[1], args[2]);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dasn1_mac.h75 #define M_ASN1_D2I_vars(a,type,func) \
83 { if ((ret=(type)func()) == NULL) \
98 #define M_ASN1_D2I_Finish(a,func,e) \
103 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
114 #define M_ASN1_D2I_Finish_nolen(a, func, e) \
121 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
129 #define M_ASN1_D2I_get(b, func) \
131 if (func(&(b),&c.p,c.slen) == NULL) \
136 #define M_ASN1_D2I_get_x(type,b,func) \
138 if (((D2I_OF(type))func)(
[all...]
/barrelfish-2018-10-04/include/openssl/
H A Dasn1_mac.h75 #define M_ASN1_D2I_vars(a,type,func) \
83 { if ((ret=(type)func()) == NULL) \
98 #define M_ASN1_D2I_Finish(a,func,e) \
103 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
114 #define M_ASN1_D2I_Finish_nolen(a, func, e) \
121 if ((ret != NULL) && ((a == NULL) || (*a != ret))) func(ret); \
129 #define M_ASN1_D2I_get(b, func) \
131 if (func(&(b),&c.p,c.slen) == NULL) \
136 #define M_ASN1_D2I_get_x(type,b,func) \
138 if (((D2I_OF(type))func)(
[all...]

Completed in 299 milliseconds

12345678