Searched refs:fn (Results 26 - 50 of 133) sorted by relevance

123456

/barrelfish-master/lib/msun/src/
H A Ds_lrint.c36 #define fn lrint macro
47 fn(type x) function
H A Ds_nearbyint.c44 #define DECL(type, fn, rint) \
46 fn(type x) \
H A De_rem_pio2.c57 double z,w,t,r,fn; local
130 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
131 STRICT_ASSIGN(double,fn,x*invpio2+0x1.8p52);
132 fn = fn-0x1.8p52;
134 n = irint(fn);
136 n = (int32_t)fn;
138 r = x-fn*pio2_1;
139 w = fn*pio2_1t; /* 1st round good to 85 bit */
148 w = fn*pio2_
[all...]
H A Ds_lround.c39 #define fn lround macro
56 fn(type x) function
/barrelfish-master/lib/msun/ld128/
H A De_rem_pio2l.h65 long double z,w,t,r,fn; local
77 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
78 fn = x*invpio2+0x1.8p112;
79 fn = fn-0x1.8p112;
81 n = i64rint(fn);
83 n = fn;
85 r = x-fn*pio2_1;
86 w = fn*pio2_1t; /* 1st round good to 180 bit */
97 w = fn*pio2_
[all...]
/barrelfish-master/lib/msun/ld80/
H A De_rem_pio2l.h77 long double z,w,t,r,fn; local
87 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
88 fn = x*invpio2+0x1.8p63;
89 fn = fn-0x1.8p63;
91 n = irint(fn);
93 n = fn;
95 r = x-fn*pio2_1;
96 w = fn*pio2_1t; /* 1st round good to 102 bit */
107 w = fn*pio2_
[all...]
/barrelfish-master/lib/libc/net/
H A Dnss_compat.c96 int (*fn)(const char *, struct group *, char *, size_t, int *);
104 fn = mdata;
110 nss_status = fn(name, grp, buffer, bufsize, errnop);
121 int (*fn)(gid_t, struct group *, char *, size_t, int *);
129 fn = mdata;
135 nss_status = fn(gid, grp, buffer, bufsize, errnop);
146 int (*fn)(struct group *, char *, size_t, int *);
155 fn = mdata;
160 nss_status = fn(grp, buffer, bufsize, errnop);
197 int (*fn)(cons
[all...]
/barrelfish-master/lib/compiler-rt/test/arm/
H A Dcall_apsr.h33 uint32_t call_apsr_f(float a, float b, __attribute__((pcs("aapcs"))) void (*fn)(float, float));
36 uint32_t call_apsr_d(double a, double b, __attribute__((pcs("aapcs"))) void (*fn)(double, double));
/barrelfish-master/lib/bomp_new/
H A Dparallel.c31 void GOMP_parallel_start(void (*fn)(void *),
35 debug_printf("GOMP_parallel_start(%p, %p, %u)\n", fn, data, nthreads);
60 bomp_start_processing(fn, data, 0, icv_task->nthreads);
92 void GOMP_parallel(void (*fn)(void *),
H A Dbomp.c17 void bomp_start_processing(void (*fn)(void *),
24 debug_printf("bomp_start_processing(%p, %p, %u, %u)\n", fn, data, tid_start, nthreads);
41 coreid_t num = bomp_node_exec(&tls->r.master.nodes[i], fn, data, tid_start, nthreads);
65 bomp_thread_exec(&node->threads[i], fn, data, tid_current);
101 xdata->fn = fn;
111 xdata->fn = fn;
H A Dbomp_thread.c33 uint64_t fn; ///< the function member in struct:bomp_msg_st::__anon523::__anon524
85 st->args.exec.fn, st->args.exec.arg, st->args.exec.tid,
215 bomp_thread_fn_t fn, void *arg, uint32_t tid)
217 debug_printf("bomp_thread_exec(%p, %p, %p, %u) %p\n", thread, fn, arg, tid, thread->icvt);
231 bomp_msg_st->args.exec.fn = (uint64_t)fn;
272 uint64_t fn, uint64_t arg, uint32_t tid, uint64_t icv_task)
290 bomp_thread_fn_t func= (bomp_thread_fn_t)fn;
214 bomp_thread_exec(struct bomp_thread *thread, bomp_thread_fn_t fn, void *arg, uint32_t tid) argument
271 execute__rx(struct bomp_binding *_binding, uint64_t fn, uint64_t arg, uint32_t tid, uint64_t icv_task) argument
/barrelfish-master/lib/lwip2/src/apps/snmp/
H A Dsnmp_mib2.c62 snmp_mib2_lwip_synchronizer(snmp_threadsync_called_fn fn, void* arg) argument
66 fn(arg);
69 tcpip_callback(fn, arg);
/barrelfish-master/lib/bomp/include/
H A Dabi.h87 void GOMP_parallel(void (*fn)(void *), void *data, unsigned num_threads, unsigned int flags);
96 void GOMP_parallel_sections_start(void (*fn)(void *), void *data,
98 void GOMP_parallel_sections(void (*fn)(void *), void *data, unsigned num_threads,
H A Dbomp_internal.h52 bomp_thread_fn_t fn; member in struct:bomp_thread
60 void (*fn)(void *); member in struct:bomp_work
117 void bomp_start_processing(void (*fn) (void *), void *data, unsigned nthreads);
/barrelfish-master/lib/bomp_new/include/
H A Domp_abi.h87 void GOMP_parallel(void (*fn)(void *), void *data, unsigned num_threads, unsigned int flags);
96 void GOMP_parallel_sections_start(void (*fn)(void *), void *data,
98 void GOMP_parallel_sections(void (*fn)(void *), void *data, unsigned num_threads,
H A Dbomp_internal.h131 coreid_t bomp_node_exec(struct bomp_node *node, void *fn, void *arg, coreid_t tid_start, coreid_t nthreads);
136 bomp_thread_fn_t fn, void *arg, uint32_t tid);
139 void bomp_start_processing(void (*fn)(void *),
177 bomp_thread_fn_t fn;
186 void (*fn)(void *);
/barrelfish-master/lib/openssl-1.0.0d/crypto/engine/
H A Dtb_cipher.c122 ENGINE_CIPHERS_PTR fn = ENGINE_get_ciphers(e); local
123 if(!fn || !fn(e, &ret, NULL, nid))
H A Dtb_digest.c122 ENGINE_DIGESTS_PTR fn = ENGINE_get_digests(e); local
123 if(!fn || !fn(e, &ret, NULL, nid))
H A Dtb_pkmeth.c123 ENGINE_PKEY_METHS_PTR fn = ENGINE_get_pkey_meths(e); local
124 if(!fn || !fn(e, &ret, NULL, nid))
/barrelfish-master/lib/bomp/backends/
H A Dbomp_exclusive.c77 static void xomp_start_processing(void (*fn)(void *),
81 XMP_DEBUG("start processing fn:%p, data:%p, threads:%u\n", fn, data, nthreads);
114 xdata->fn = fn;
125 task->fn = fn;
/barrelfish-master/lib/devif/backends/net/mlx4/include/linux/
H A Dworkqueue.h55 void (*fn)(struct work_struct *); member in struct:work_struct
85 w->fn(w);
91 typedef __typeof(((struct work_struct *)0)->fn) work_func_t;
114 (work)->fn = (func); \
/barrelfish-master/include/
H A Dposixcompat.h36 errval_t posixcompat_pthread_set_placement_fn(pthread_placement_fn fn);
/barrelfish-master/include/dma/ioat/
H A Dioat_dma_device.h91 * \param fn interrupt handler function
96 dma_irq_fn_t fn,
/barrelfish-master/include/dma/
H A Ddma_mem_mgr.h45 * \param fn convert function to be called
49 dma_mem_convert_fn fn,
/barrelfish-master/lib/libc/gen/
H A Dftw.c33 ftw(const char *path, int (*fn)(const char *, const struct stat *, int),
80 error = fn(cur->fts_path, cur->fts_statp, fnflag);

Completed in 218 milliseconds

123456