Searched refs:fn (Results 76 - 100 of 133) sorted by relevance

123456

/barrelfish-master/include/openssl/
H A Dlhash.h220 #define LHM_lh_doall(type, lh,fn) lh_doall(CHECKED_LHASH_OF(type, lh), fn)
221 #define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \
222 lh_doall_arg(CHECKED_LHASH_OF(type, lh), fn, CHECKED_PTR_OF(arg_type, arg))
/barrelfish-master/include/xomp/
H A Dxomp.h95 xomp_worker_fn_t fn; ///< worker function to be called member in struct:xomp_task
/barrelfish-master/lib/openssl-1.0.0d/
H A DMakefile577 fn=`basename $$i .pod`; \
578 echo "installing html/$$fn.$(HTMLSUFFIX)"; \
583 > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
585 grep -v $$filecase "^$$fn\$$" | \
588 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
606 fn=`basename $$i .pod`; \
608 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
613 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
615 (grep -v $$filecase "^$$fn\$$"; true) | \
619 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn
[all...]
/barrelfish-master/lib/msun/ld128/
H A Dk_expl.h235 * "huge" is anything that would make fn*L1 inexact (|x| > ~2**17*ln2).
241 double dr, fn, r2; local
245 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
249 fn = (double)x * INV_L + 0x1.8p52 - 0x1.8p52;
251 n = irint(fn);
253 n = (int)fn;
258 r1 = x - fn * L1;
259 r2 = fn * -L2;
/barrelfish-master/include/
H A Dk_expl.h235 * "huge" is anything that would make fn*L1 inexact (|x| > ~2**17*ln2).
241 double dr, fn, r2; local
245 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
249 fn = (double)x * INV_L + 0x1.8p52 - 0x1.8p52;
251 n = irint(fn);
253 n = (int)fn;
258 r1 = x - fn * L1;
259 r2 = fn * -L2;
H A Dstdio.h401 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
402 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
/barrelfish-master/include/thc/
H A Dthc.h219 // - execute "fn(args)" within it, as the first AWE
221 // - return the result of "fn(args)" when it completes
228 //extern int THCRun(THCFn_t fn,
277 THCCancelFn_t fn; member in struct:cancel_item_t
284 void THCAddCancelItem(cancel_item_t *ci, THCCancelFn_t fn, void *arg);
H A Dthcinternal.h178 void _thc_onaltstack(void *s, void *fn, void *args);
184 void _thc_callcont(awe_t *awe, THCContFn_t fn, void *args) __attribute__((returns_twice));
/barrelfish-master/usr/tests/hw_model_test/
H A Doffloadknc.c41 static void do_work_rx(struct xomp_binding *_binding, uint64_t fn, uint64_t arg, argument
50 uint64_t *p = (uint64_t *)(fn + i);
/barrelfish-master/lib/openssl-1.0.0d/crypto/perlasm/
H A Dx86asm.pl165 { my ($type,$fn,$cpu)=@_;
167 $filename=$fn;
/barrelfish-master/kernel/arch/armv8/
H A Dpsci.c27 static inline void psci_invoke(psci_fn_t fn, uintptr_t arg0, uintptr_t arg1, argument
35 invoke_arm_hvc(fn, arg0, arg1, arg2, 0, 0, 0, 0, ret_val);
37 invoke_arm_smc(fn, arg0, arg1, arg2, 0, 0, 0, 0, ret_val);
/barrelfish-master/usr/bench/mdb_bench/
H A Dmain.c227 reset_and_dump(addr, size_wanted, runs, reset->fn, reset->name);
236 test(addr, size_wanted, runs, reset->fn, measure->fn, bench_name);
/barrelfish-master/lib/bomp/backends/
H A Dxomp_master.c114 uint64_t fn; member in struct:xomp_msg_st::__anon121::__anon122
253 st->args.do_work.fn, st->args.do_work.arg,
1115 uint64_t fn = 0; local
1139 err = spawn_symval_lookup_addr((genvaddr_t) task->fn, &fn_idx, &fn_name);
1164 fn = (uint64_t) task->fn;
1175 fn = (uint64_t) fn_idx | XOMP_FN_INDEX_FLAG;
1193 work->fn = task->fn;
1232 st->args.do_work.fn
[all...]
H A Dxomp_worker.c481 uint64_t fn,
488 XWP_DEBUG("do_work_rx: fn:%lx, id:%lx\n", fn, id);
516 if (fn & XOMP_FN_INDEX_FLAG) {
517 uint32_t idx = fn & ~XOMP_FN_INDEX_FLAG;
519 err = spawn_symval_lookup_idx(idx, &fn_name, &fn);
528 xomp_worker_fn_t fnct = (xomp_worker_fn_t) fn;
480 do_work_rx(struct xomp_binding *b, uint64_t fn, uint64_t arg, uint64_t id, uint64_t flags) argument
/barrelfish-master/lib/openssl-1.0.0d/util/
H A Dmkerr.pl90 void ERR_<LIB>_error(int f, int r, char *fn, int ln);
652 my $fn;
654 $fn = $1;
655 if(exists $ftrans{$fn}) {
656 $fn = $ftrans{$fn};
658 # print OUT "{ERR_PACK($pack_errcode,$i,0),\t\"$fn\"},\n";
659 print OUT "{ERR_FUNC($i),\t\"$fn\"},\n";
H A Dmkstack.pl161 #define lh_${type_thing}_doall(lh,fn) LHM_lh_doall(${type_thing},lh,fn)
162 #define lh_${type_thing}_doall_arg(lh,fn,arg_type,arg) \\
163 LHM_lh_doall_arg(${type_thing},lh,fn,arg_type,arg)
/barrelfish-master/usr/bench/sdma_bench/
H A Dsdma_bench.c140 size_t fn = 1 << y_bits; local
141 size_t count = en*fn;
147 1, en, fn, count, cycles[run], nt, bench_id, desc);
/barrelfish-master/lib/thc/
H A Dthc.c327 // Execute "fn(args)" on the stack growing down from "stacktop". This is
338 DEBUG_DISPATCH(DEBUGPRINTF(DEBUG_DISPATCH_PREFIX " calling idle fn\n"));
340 DEBUG_DISPATCH(DEBUGPRINTF(DEBUG_DISPATCH_PREFIX " returned from idle fn\n"));
560 extern void _thc_callcont_c(awe_t *awe, THCContFn_t fn, void *args);
562 THCContFn_t fn,
570 fn(awe, args);
718 (*ci->fn)(ci->arg);
982 void THCSuspendThen(awe_t **awe_ptr_ptr, THCThenFn_t fn, void *arg) { argument
985 t.then_fn = fn;
1053 void THCAddCancelItem(cancel_item_t *ci, THCCancelFn_t fn, voi argument
561 _thc_callcont_c(awe_t *awe, THCContFn_t fn, void *args) argument
1702 _thc_callcont(awe_t *awe, THCContFn_t fn, void *args) argument
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Da_strex.c397 ASN1_OBJECT *fn; local
472 fn = X509_NAME_ENTRY_get_object(ent);
474 fn_nid = OBJ_obj2nid(fn);
478 OBJ_obj2txt(objtmp, sizeof objtmp, fn, 1);
/barrelfish-master/usr/drivers/usb/usb_keyboard/
H A Dusb_keyboard_driver.h45 uint8_t fn :1; member in struct:usb_keyboard_modifiers::__anon414
/barrelfish-master/include/lua/
H A Dlauxlib.h124 #define luaL_dofile(L, fn) \
125 (luaL_loadfile(L, fn) || lua_pcall(L, 0, LUA_MULTRET, 0))
/barrelfish-master/include/octopus/parser/
H A Dast.h130 struct node_float fn; member in union:ast_object::__anon45
195 p->u.fn.value = value;
/barrelfish-master/lib/dma/
H A Ddma_mem_mgr.c234 * \param fn convert function to be called
238 dma_mem_convert_fn fn,
241 mem_mgr->convert = fn;
237 dma_mem_mgr_set_convert_fn(struct dma_mem_mgr *mem_mgr, dma_mem_convert_fn fn, void *arg) argument
/barrelfish-master/lib/libc/net/
H A Dnsdispatch.c473 nss_module_register_fn fn; local
486 fn = reg_fn;
503 fn = (nss_module_register_fn)dlfunc(mod.handle,
505 if (fn == NULL) {
512 mod.mtab = fn(mod.name, &mod.mtabsize, &mod.unregister);
/barrelfish-master/lib/openssl-1.0.0d/crypto/stack/
H A Dsafestack.h2344 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn)
2345 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \
2346 LHM_lh_doall_arg(ADDED_OBJ,lh,fn,arg_type,arg)
2362 #define lh_APP_INFO_doall(lh,fn) LHM_lh_doall(APP_INFO,lh,fn)
2363 #define lh_APP_INFO_doall_arg(lh,fn,arg_type,arg) \
2364 LHM_lh_doall_arg(APP_INFO,lh,fn,arg_type,arg)
2380 #define lh_CONF_VALUE_doall(lh,fn) LHM_lh_doall(CONF_VALUE,lh,fn)
[all...]

Completed in 409 milliseconds

123456