Searched refs:cl (Results 1 - 25 of 142) sorted by relevance

123456

/barrelfish-2018-10-04/lib/libc/iconv/
H A Dcitrus_lookup.c87 seq_get_num_entries_db(struct _citrus_lookup *cl) argument
90 return (cl->cl_dbnum);
94 seq_next_db(struct _citrus_lookup *cl, struct _region *key, argument
98 if (cl->cl_key) {
100 _region_init(key, cl->cl_key, cl->cl_keylen);
101 return (_db_lookup_by_s(cl->cl_db, cl->cl_key, data,
102 &cl->cl_dblocator));
105 if (cl
116 seq_lookup_db(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
131 seq_close_db(struct _citrus_lookup *cl) argument
139 seq_open_db(struct _citrus_lookup *cl, const char *name) argument
171 seq_next_plain(struct _citrus_lookup *cl, struct _region *key, struct _region *data) argument
211 seq_get_num_entries_plain(struct _citrus_lookup *cl) argument
223 seq_lookup_plain(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
246 seq_close_plain(struct _citrus_lookup *cl) argument
253 seq_open_plain(struct _citrus_lookup *cl, const char *name) argument
276 struct _citrus_lookup *cl; local
297 _citrus_lookup_seq_rewind(struct _citrus_lookup *cl) argument
307 _citrus_lookup_seq_next(struct _citrus_lookup *cl, struct _region *key, struct _region *data) argument
315 _citrus_lookup_seq_lookup(struct _citrus_lookup *cl, const char *key, struct _region *data) argument
323 _citrus_lookup_get_number_of_entries(struct _citrus_lookup *cl) argument
330 _citrus_lookup_seq_close(struct _citrus_lookup *cl) argument
342 struct _citrus_lookup *cl; local
[all...]
/barrelfish-2018-10-04/lib/net_queue_manager/
H A DQM_benchmark.c81 uint64_t queueid, uint64_t state, uint64_t delta, uint64_t cl)
83 errval_t err = cc->tx_vtbl.benchmark_control_response(cc, NOP_CONT, queueid, state, delta, cl);
95 struct client_closure *cl = ((struct client_closure *) (cc->st)); local
97 assert(cl->queueid == queueid);
98 cl->debug_state = state;
99 cl->debug_print = state;
105 ts = rdtsc() - cl->start_ts;
107 ts = rdtsc() - cl->start_ts_tx;
113 in_seconds(ts), cl->pbuf_count, cl
80 send_benchmark_control(struct net_queue_manager_binding *cc, uint64_t queueid, uint64_t state, uint64_t delta, uint64_t cl) argument
[all...]
/barrelfish-2018-10-04/lib/tommath/etc/
H A Dmakefile.msvc8 cl pprime.obj ../tommath.lib
11 cl mersenne.obj ../tommath.lib
14 cl tune.obj ../tommath.lib
17 cl mont.obj ../tommath.lib
20 cl drprime.obj ../tommath.lib
23 cl 2kprime.obj ../tommath.lib
/barrelfish-2018-10-04/usr/tests/timer/
H A Dtimer.c72 static int is_stopped(struct client_data *cl) argument
75 cl->client_name, cl->timer_name, cl->interval, cl->counter);
77 if(cl->is_stopped){
78 return cl->is_stopped;
81 if(cl->counter >= cl->limit){
83 cl
100 struct client_data *cl = (struct client_data *)data; local
[all...]
/barrelfish-2018-10-04/lib/octopus/client/
H A Dcapability_storage.c33 struct octopus_thc_client_binding_t *cl = oct_get_thc_client(); local
39 err = cl->call_seq.get_cap(cl, key, retcap, &reterr);
56 struct octopus_thc_client_binding_t *cl = oct_get_thc_client(); local
58 errval_t err = cl->call_seq.put_cap(cl, key, cap, &reterr);
80 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
81 assert(cl != NULL);
84 err = cl->call_seq.sput_cap(cl, ke
108 struct octopus_thc_client_binding_t *cl = oct_get_thc_client(); local
[all...]
H A Dgetset.c62 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
65 err = cl->call_seq.get_names(cl, buf, NOP_TRIGGER, reply.output,
102 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
103 assert(cl != NULL);
106 err = cl->call_seq.get(cl, buf, NOP_TRIGGER, reply.output,
148 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
151 err = cl->call_seq.set(cl, bu
184 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
227 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
264 struct octopus_thc_client_binding_t *cl = oct_get_thc_client(); local
309 struct octopus_thc_client_binding_t *cl = oct_get_thc_client(); local
346 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
377 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
408 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
[all...]
H A Dbarriers.c68 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
69 err = cl->call_seq.exists(cl, name, t, &tid, &exist_err);
80 err = cl->recv.trigger(cl, NULL, NULL, &mode, NULL, NULL);
138 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
139 err = cl->call_seq.exists(cl, barrier_name, t, &tid, &exist_err);
147 err = cl->recv.trigger(cl, NUL
[all...]
H A Dpubsub.c82 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
91 err = cl->call_seq.subscribe(cl, buf, fl_function,
113 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
115 errval_t err = cl->call_seq.unsubscribe(cl, id, &error_code);
143 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
145 err = cl->call_seq.publish(cl, buf, &error_code);
H A Dnameservice_client.c59 struct octopus_thc_client_binding_t *cl = oct_get_thc_client();
60 if (cl == NULL) {
66 err = cl->call_seq.get(cl, iface, &record, t, &error_code);
73 cl->recv.trigger(cl, &mode, &fn, &state, &record);
/barrelfish-2018-10-04/lib/xeon_phi/
H A Dxeon_phi_client.c150 static inline uint8_t rpc_start(struct xeon_phi_client *cl) argument
152 if (!cl->rpc_wait_reply) {
153 cl->rpc_wait_reply = 0x1;
164 static inline void rpc_wait_done(struct xeon_phi_client *cl) argument
166 while (cl->rpc_wait_reply == 0x1) {
176 static inline void rpc_done(struct xeon_phi_client *cl) argument
178 cl->rpc_wait_reply = 0x2;
186 static inline void rpc_clear(struct xeon_phi_client *cl) argument
188 cl->rpc_wait_reply = 0x0;
287 struct xeon_phi_client *cl local
302 struct xeon_phi_client *cl = b->st; local
316 struct xeon_phi_client *cl = b->st; local
330 struct xeon_phi_client *cl = b->st; local
345 struct xeon_phi_client *cl = b->st; local
362 struct xeon_phi_client *cl = b->st; local
377 struct xeon_phi_client *cl = b->st; local
391 struct xeon_phi_client *cl = b->st; local
408 struct xeon_phi_client *cl = b->st; local
446 xphi_client_register(struct xeon_phi_client *cl) argument
496 struct xeon_phi_client *cl = st; local
533 struct xeon_phi_client *cl = xphi_svc[xid]; local
676 struct xeon_phi_client *cl = xphi_svc[xid]; local
779 struct xeon_phi_client *cl = xphi_svc[xid]; local
857 struct xeon_phi_client *cl = xphi_svc[xid]; local
[all...]
/barrelfish-2018-10-04/usr/tests/thcidctest/
H A Dthcidctest.c35 static void test_ooo_rpc(struct ping_pong_thc_client_binding_t *cl, argument
38 cl->call.outoforder(cl, val, &result_val);
42 static void do_nx(struct ping_pong_thc_client_binding_t *cl, argument
46 if (cl->call_x.outoforder(cl, i, &response) != THC_CANCELED) {
59 struct ping_pong_thc_client_binding_t cl; local
70 err = ping_pong_thc_init_client(&cl, b, b);
81 cl.send.str0(&cl, 4
[all...]
/barrelfish-2018-10-04/lib/libc/string/
H A Dmemmem.c42 const char *cl = (const char *)l; local
47 return (void *)cl;
58 last = (char *)cl + l_len - s_len;
60 for (cur = (char *)cl; cur <= last; cur++)
/barrelfish-2018-10-04/usr/acpi/arch/x86/
H A Dacpi_allocators_arch.c28 struct monitor_blocking_binding *cl = get_monitor_blocking_binding(); local
29 assert(cl != NULL);
38 err = cl->rpc_tx_vtbl.get_io_cap(cl, &requested_caps, &error_code);
/barrelfish-2018-10-04/usr/tests/sdmatest/
H A Dsdmatest.c119 static void run_client(struct omap_sdma_thc_client_binding_t *cl) argument
129 cl->call_seq.mem_copy(cl, dst_frame, src_frame, &err);
139 cl->call_seq.mem_fill(cl, dst_frame, 0xAB, &err);
169 cl->call_seq.mem_copy_2d(cl, dst_addr, src_addr, count_2d, false, 0, &err);
186 cl->call_seq.mem_copy_2d(cl, dst_addr, src_addr, count_2d, false, 0, &err);
208 cl
337 struct omap_sdma_thc_client_binding_t *cl; local
[all...]
/barrelfish-2018-10-04/usr/examples/xmpl-thc-binding/
H A Dthc-binding.c28 static void run_client(struct xmplthc_thc_client_binding_t *cl) argument
35 cl->send.mymsg(cl, i);
39 cl->send.mycall(cl, i);
41 cl->recv.myresponse(cl, s);
45 cl->send.myrpc(cl, i);
47 cl
63 struct xmplthc_thc_client_binding_t *cl; local
[all...]
/barrelfish-2018-10-04/usr/bench/bulk_sdma/
H A Dbulk_sdma.c19 static struct omap_sdma_thc_client_binding_t *cl; variable in typeref:struct:omap_sdma_thc_client_binding_t
34 cl = malloc(sizeof(struct omap_sdma_thc_client_binding_t));
35 assert(cl != NULL);
37 err = omap_sdma_thc_init_client(cl, b, b);
82 cl->call_fifo.mem_copy_2d(cl, dst_addr, src_addr, count_2d, false, 0, &err);
/barrelfish-2018-10-04/usr/tests/octopus/
H A Dd2bench1.c39 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
41 assert(cl != NULL);
60 cl->call_seq.get(cl, "rec", NOP_TRIGGER, &reply, &tid, &error_code);
67 cl->call_seq.set(cl, record, SET_DEFAULT, NOP_TRIGGER, false, &reply, &tid, &error_code);
H A Dd2bench.c60 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
61 assert(cl != NULL);
71 cl->call_seq.get(cl, buf, NOP_TRIGGER, &data, &tid, &error_code);
94 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
95 assert(cl != NULL);
107 cl->call_seq.set(cl, record, SET_SEQUENTIAL, NOP_TRIGGER, false, &ret, &tid, &error_code);
117 cl->call_seq.set(cl, to_ad
153 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
181 struct octopus_thc_client_binding_t* cl = oct_get_thc_client(); local
[all...]
/barrelfish-2018-10-04/usr/bench/sdma_bench/
H A Dsdma_bench.c105 static void bench_1d(struct omap_sdma_thc_client_binding_t *cl, argument
124 cl->call_fifo.mem_copy(cl, dst_frame[idx], src_frame[idx], &err);
128 cl->call_fifo.mem_fill(cl, dst_frame[idx], 0, &err);
153 static void bench_2d(struct omap_sdma_thc_client_binding_t *cl, argument
197 cl->call_fifo.mem_copy_2d(cl, dst_addr, src_addr, count,
202 cl->call_fifo.mem_fill_2d(cl, dst_add
221 run_client(struct omap_sdma_thc_client_binding_t *cl) argument
266 struct omap_sdma_thc_client_binding_t *cl; local
[all...]
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dclnt_generic.c284 CLIENT *cl = NULL; /* client handle */ local
296 &cl, (struct timeval *)tp)) == NULL) {
300 if (cl == NULL) {
301 cl = clnt_tli_create(RPC_ANYFD, nconf, svcaddr,
305 if (CLNT_CONTROL(cl, CLSET_SVC_ADDR, (void *)svcaddr) == TRUE) {
306 if (cl->cl_netid == NULL)
307 cl->cl_netid = strdup(nconf->nc_netid);
308 if (cl->cl_tp == NULL)
309 cl->cl_tp = strdup(nconf->nc_device);
310 (void) CLNT_CONTROL(cl, CLSET_PRO
336 CLIENT *cl; /* client handle */ local
[all...]
/barrelfish-2018-10-04/lib/compiler-rt/builtins/i386/
H A Dashldi3.S47 shldl %cl, %eax, %edx // left shift high by count
48 shll %cl, %eax // left shift low by count
53 shll %cl, %edx // shift high by count - 32
H A Dlshrdi3.S48 shrdl %cl, %edx, %eax // right shift low by count
49 shrl %cl, %edx // right shift high by count
54 shrl %cl, %eax // shift low by count - 32
/barrelfish-2018-10-04/usr/examples/xmpl-thc-lang/
H A Dthc-lang.c28 static void run_client(struct xmplthc_thc_client_binding_t *cl, int id) argument
34 cl->call_seq.myrpc(cl, i, &s);
46 struct xmplthc_thc_client_binding_t *cl; local
56 cl = malloc(sizeof(struct xmplthc_thc_client_binding_t));
57 assert(cl != NULL);
59 err = xmplthc_thc_init_client(cl, b, b);
64 run_client(cl, atoi(arg));
/barrelfish-2018-10-04/usr/tests/thcminitest/
H A Dthcminitest.c38 struct ping_pong_thc_client_binding_t cl; local
49 err = ping_pong_thc_init_client(&cl, b, b);
59 cl.send.ping(&cl, val);
60 cl.recv.pong(&cl, &val);
65 cl.send.stop(&cl);
/barrelfish-2018-10-04/lib/vfs/
H A Dvfs_ramfs.c44 static errval_t resolve_path(struct ramfs_client *cl, const char *path, argument
52 trivfs_fh_t fh = cl->rootfh;
76 err = cl->rpc->rpc_tx_vtbl.lookup(cl->rpc, fh, pathbuf, &msgerr, &nextfh, &isdir);
82 if (fh == cl->rootfh) { // revalidate root
83 err = cl->rpc->rpc_tx_vtbl.getroot(cl->rpc, &cl->rootfh);
87 fh = cl->rootfh;
129 struct ramfs_client *cl local
157 struct ramfs_client *cl = st; local
205 struct ramfs_client *cl = st; local
233 struct ramfs_client *cl = st; local
270 struct ramfs_client *cl = st; local
305 struct ramfs_client *cl = st; local
377 struct ramfs_client *cl = st; local
439 struct ramfs_client *cl = st; local
475 struct ramfs_client *cl = st; local
552 struct ramfs_client *cl = st; local
583 struct ramfs_client *cl = st; local
646 struct ramfs_client *cl = st; local
687 struct ramfs_client *cl = st; local
749 struct ramfs_client *cl = st; local
[all...]

Completed in 185 milliseconds

123456