Searched refs:uc (Results 1 - 23 of 23) sorted by relevance

/barrelfish-2018-10-04/lib/barrelfish/arch/x86/
H A Dipi_notify.c22 struct ipi_notify *uc = (void *)st; local
23 uc->my_notify_cap = notify_cap;
24 assert(uc->cont.handler != NULL);
25 uc->cont.handler(uc->cont.st, err, uc);
51 struct ipi_notify* uc = arg; local
54 errval_t err = b->tx_vtbl.ipi_alloc_notify_request(b, NOP_CONT, uc->ep, (uintptr_t)uc);
58 b->register_send(b, b->waitset, MKCONT(ipi_alloc_notify_try_request, uc));
70 ipi_notify_alloc(struct ipi_notify *uc, struct ipi_alloc_continuation cont) argument
88 struct ipi_notify *uc = arg; local
110 ipi_notify_register(struct ipi_notify *uc, struct waitset *ws, struct event_closure closure) argument
125 ipi_notify_destroy(struct ipi_notify *uc) argument
[all...]
/barrelfish-2018-10-04/lib/barrelfish/
H A Dump_chan.c35 * \param uc Storage for channel state
41 errval_t ump_chan_init(struct ump_chan *uc, argument
45 assert(uc != NULL);
48 err = ump_endpoint_init(&uc->endpoint, inbuf, inbufsize);
53 err = ump_chan_state_init(&uc->send_chan, outbuf, outbufsize, UMP_OUTGOING);
58 uc->max_send_msgs = outbufsize / UMP_MSG_BYTES;
59 uc->max_recv_msgs = inbufsize / UMP_MSG_BYTES;
61 memset(&uc->cap_handlers, 0, sizeof(uc->cap_handlers));
62 uc
73 ump_chan_destroy(struct ump_chan *uc) argument
83 struct ump_chan *uc = (void *)conn_id; local
102 struct ump_chan *uc; member in struct:bind_ump_reply_state
165 ump_chan_send_bind_reply(struct monitor_binding *mb, struct ump_chan *uc, errval_t err, uintptr_t monitor_id, struct capref notify_cap) argument
192 struct ump_chan *uc = arg; local
229 ump_chan_bind(struct ump_chan *uc, struct ump_bind_continuation cont, struct event_queue_node *qnode, iref_t iref, struct monitor_binding *monitor_binding, size_t inchanlen, size_t outchanlen, struct capref notify_cap) argument
301 ump_chan_accept(struct ump_chan *uc, uintptr_t mon_id, struct capref frame, size_t inchanlen, size_t outchanlen) argument
347 ump_chan_register_send(struct ump_chan *uc, struct waitset *ws, struct event_closure closure) argument
377 struct ump_chan *uc, *first = dp->ump_send_events_list, *next; local
[all...]
/barrelfish-2018-10-04/include/barrelfish/
H A Dump_chan.h33 * \param uc On success, contains pointer to channel
36 void (*handler)(void *st, errval_t err, struct ump_chan *uc,
75 errval_t ump_chan_init(struct ump_chan *uc,
78 errval_t ump_chan_bind(struct ump_chan *uc, struct ump_bind_continuation cont,
83 errval_t ump_chan_accept(struct ump_chan *uc, uintptr_t mon_id,
85 errval_t ump_chan_register_send(struct ump_chan *uc, struct waitset *ws,
89 struct ump_chan *uc, errval_t err,
91 void ump_chan_destroy(struct ump_chan *uc);
101 * \param uc UMP channel
105 static inline errval_t ump_chan_register_recv(struct ump_chan *uc, argument
117 ump_chan_deregister_recv(struct ump_chan *uc) argument
122 ump_chan_recv(struct ump_chan *uc, volatile struct ump_message **msg) argument
130 ump_chan_can_recv(struct ump_chan *uc) argument
136 ump_chan_get_next( struct ump_chan *uc, struct ump_control *ctrl) argument
142 ump_chan_can_send(struct ump_chan *uc) argument
[all...]
/barrelfish-2018-10-04/include/arch/x86/barrelfish/
H A Dipi_notify.h29 * \param uc On success, contains pointer to channel
46 errval_t ipi_notify_alloc(struct ipi_notify *uc,
48 errval_t ipi_notify_set(struct ipi_notify *uc, struct capref notify);
49 void ipi_notify_destroy(struct ipi_notify *uc);
51 errval_t ipi_notify_register(struct ipi_notify *uc,
58 * \param uc IPI channel
60 static inline errval_t ipi_notify_deregister(struct ipi_notify *uc) argument
62 return lmp_endpoint_deregister(uc->iep);
/barrelfish-2018-10-04/lib/libc/string/
H A Dmemccpy.c45 unsigned char uc = c; local
47 if ((*tp++ = *fp++) == uc)
/barrelfish-2018-10-04/lib/libc/sys/
H A Dsetcontext.c47 setcontext(const ucontext_t *uc) argument
51 __libc_interposing[INTERPOS_setcontext])(uc));
/barrelfish-2018-10-04/lib/vis/
H A Dunvis.c204 unsigned char uc = (unsigned char)c; local
357 if (isoctal(uc)) {
373 if (isoctal(uc)) {
383 if (!isxdigit(uc))
387 if (isxdigit(uc)) {
388 *cp = xtod(uc);
400 if (isxdigit(uc)) {
401 *cp = xtod(uc) | (*cp << 4);
407 if (uc == '\n' || uc
[all...]
/barrelfish-2018-10-04/lib/cxx/unwind/
H A DUnwindLevel1.c28 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) { argument
30 unw_init_local(&cursor1, uc);
120 unwind_phase2(unw_context_t *uc, _Unwind_Exception *exception_object) { argument
122 unw_init_local(&cursor2, uc);
225 unwind_phase2_forced(unw_context_t *uc, argument
229 unw_init_local(&cursor2, uc);
330 unw_context_t uc; local
331 unw_getcontext(&uc);
339 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, exception_object);
344 return unwind_phase2(&uc, exception_objec
363 unw_context_t uc; local
387 unw_context_t uc; local
[all...]
H A DUnwindLevel1-gcc-ext.c87 unw_context_t uc; local
89 unw_getcontext(&uc);
90 unw_init_local(&cursor, &uc);
104 unw_context_t uc; local
105 unw_getcontext(&uc);
106 unw_init_local(&cursor, &uc);
176 unw_context_t uc; local
178 unw_getcontext(&uc);
179 unw_init_local(&cursor, &uc);
H A DUnwind-EHABI.cpp473 unwind_phase1(unw_context_t *uc, _Unwind_Exception *exception_object) { argument
478 // Instead, they are passed the original |uc| and they create a new VRS
481 unw_init_local(&cursor1, uc);
582 static _Unwind_Reason_Code unwind_phase2(unw_context_t *uc, argument
587 unw_init_local(&cursor2, uc);
728 unw_context_t uc; local
729 unw_getcontext(&uc);
736 _Unwind_Reason_Code phase1 = unwind_phase1(&uc, exception_object);
741 return unwind_phase2(&uc, exception_object, false);
764 unw_context_t uc; local
[all...]
/barrelfish-2018-10-04/usr/tests/xeon_phi_test/
H A Dbenchmark.h145 struct ump_chan *uc);
148 struct ump_chan *uc);
151 struct ump_chan *uc);
154 struct ump_chan *uc);
157 struct ump_chan *uc);
H A Dbenchmark.c380 struct ump_chan *uc)
388 msg = ump_chan_get_next(uc, &ctrl);
402 err = ump_chan_recv(uc, &msg_recv);
405 msg = ump_chan_get_next(uc, &ctrl);
418 struct ump_chan *uc)
427 msg = ump_chan_get_next(uc, &ctrl);
440 err = ump_chan_recv(uc, &msg);
446 msg = ump_chan_get_next(uc, &ctrl);
457 struct ump_chan *uc)
478 err = ump_chan_recv(uc,
379 xphi_bench_start_echo(struct bench_bufs *bufs, struct ump_chan *uc) argument
417 xphi_bench_start_processor(struct bench_bufs *bufs, struct ump_chan *uc) argument
456 xphi_bench_start_initator_rtt(struct bench_bufs *bufs, struct ump_chan *uc) argument
516 xphi_bench_start_initator_sync(struct bench_bufs *bufs, struct ump_chan *uc) argument
633 xphi_bench_start_initator_async(struct bench_bufs *bufs, struct ump_chan *uc) argument
[all...]
H A Dmain_inter_card.c43 static struct ump_chan uc; variable in typeref:struct:ump_chan
213 err = ump_chan_init(&uc, inbuf,
229 xphi_bench_start_initator_rtt(&bufs, &uc);
235 xphi_bench_start_initator_sync(&bufs, &uc);
240 xphi_bench_start_initator_async(&bufs, &uc);
248 xphi_bench_start_echo(&bufs, &uc);
253 xphi_bench_start_processor(&bufs, &uc);
H A Dmain_card.c45 static struct ump_chan uc; variable in typeref:struct:ump_chan
269 err = ump_chan_init(&uc, inbuf,
285 xphi_bench_start_echo(&bufs, &uc);
290 xphi_bench_start_processor(&bufs, &uc);
297 xphi_bench_start_initator_rtt(&bufs, &uc);
303 xphi_bench_start_initator_sync(&bufs, &uc);
308 xphi_bench_start_initator_async(&bufs, &uc);
H A Dmain_host.c43 static struct ump_chan uc; variable in typeref:struct:ump_chan
282 err = ump_chan_init(&uc, inbuf, XPHI_BENCH_MSG_FRAME_SIZE, outbuf,
290 xphi_bench_start_initator_rtt(&bufs, &uc);
296 xphi_bench_start_initator_sync(&bufs, &uc);
301 xphi_bench_start_initator_async(&bufs, &uc);
314 xphi_bench_start_echo(&bufs, &uc);
319 xphi_bench_start_processor(&bufs, &uc);
/barrelfish-2018-10-04/usr/bench/xeon_phi_ump/
H A Dbenchmark.c135 struct ump_chan *uc)
159 err = ump_chan_recv(uc, &msg);
178 msg = ump_chan_get_next(uc, &ctrl);
189 err = ump_chan_recv(uc, &msg);
205 msg = ump_chan_get_next(uc, &ctrl);
212 err = ump_chan_recv(uc, &msg);
227 msg = ump_chan_get_next(uc, &ctrl);
252 struct ump_chan *uc)
277 err = ump_chan_recv(uc, &msg);
300 msg = ump_chan_get_next(uc,
[all...]
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dsvc_dg.c522 struct cl_cache *uc; local
530 uc = ALLOC(struct cl_cache, 1);
531 if (uc == NULL) {
536 uc->uc_size = size;
537 uc->uc_nextvictim = 0;
538 uc->uc_entries = ALLOC(cache_ptr, size * SPARSENESS);
539 if (uc->uc_entries == NULL) {
541 FREE(uc, struct cl_cache, 1);
545 MEMZERO(uc->uc_entries, cache_ptr, size * SPARSENESS);
546 uc
579 struct cl_cache *uc = (struct cl_cache *) su->su_cache; local
667 struct cl_cache *uc = (struct cl_cache *) su->su_cache; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Dbat.sh16 $uc=$lib;
17 $uc =~ s/^lib(.*)\.a/$1/;
18 $uc =~ tr/a-z/A-Z/;
19 $lib_nam{$uc}=$uc;
20 $lib_obj{$uc}.=$libobj." ";
/barrelfish-2018-10-04/lib/int_route/client/
H A Dclient.c79 struct event_closure uc; member in struct:irq_handler_arg
92 irqarg->uc.handler(irqarg->uc.arg);
121 ag->uc = MKCLOSURE(handler, handler_arg);
/barrelfish-2018-10-04/tools/usbboot/libc/
H A Dprintf.c126 unsigned char uc; local
174 uc = va_arg(ap, unsigned int);
175 OUTPUT_CHAR(uc);
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dintervals.c687 double ls, lc, us, uc; local
691 sincos(xu, &uc, &us);
692 lc = -lc; uc = -uc;
695 sincos(xu, &us, &uc);
699 if (uc >= 0) {
709 if (uc >= 0) {
/barrelfish-2018-10-04/lib/tzcode/zic/
H A Dzic.c1688 unsigned char uc; local
1690 uc = typemap[types[i]];
1691 (void) fwrite((void *) &uc,
1692 (size_t) sizeof uc,
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dregcomp.c1272 register unsigned uc = (unsigned char)c; local
1275 if (col[uc] != 0)

Completed in 325 milliseconds