Searched refs:meta (Results 1 - 25 of 96) sorted by relevance

1234

/barrelfish-master/socs/
H A Domap44xx-int_meta.pl0 meta{
H A Domap44xx_meta.pl0 meta{
7 meta{
13 meta{
/barrelfish-master/lib/barrelfish/include/pmap_ll/
H A Dpmap_ds.h26 for (iter = (root)->v.u.vnode.children; iter; iter = iter->v.meta.next)
/barrelfish-master/usr/block_server/
H A Dnetwork_client.h52 struct bs_meta_data *meta,
58 struct bs_meta_data *meta,
64 struct bs_meta_data *meta,
H A Dnet_benchmark.c63 /* zero meta */
142 void *meta)
151 void *meta)
155 struct bs_meta_data *bsmeta = (struct bs_meta_data *) meta;
259 struct bs_meta_data meta = { local
268 meta.block_id = (i % BLOCK_COUNT);
270 (uint32_t )meta.block_id, (i + 1) % 256);
279 err = bulk_channel_move(tx_chan, buf, &meta, cont);
286 meta.req_id++;
315 meta
140 testrun_bulk_buffer_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
149 testrun_bulk_move_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
[all...]
H A Dlocal_server.h57 void *meta);
61 void *meta);
H A Dlocal_server.c136 void *meta)
142 struct bs_meta_data *bs = (struct bs_meta_data *) meta;
145 err = block_net_write(block_server, 1, &buffer, meta, BULK_CONT_NOP);
154 err = bulk_channel_pass(channel, buffer, meta,
166 void *meta)
176 void *meta)
183 bulk_channel_pass(&block_server->tx_chan, buffer, meta,
186 bulk_channel_pass(&block_server->rx_chan, buffer, meta,
354 /* XXX: assume that the meta data has been copied... */
527 void block_local_data_ready(struct bulk_buffer *buffer, void *meta) argument
134 bulk_move_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
164 bulk_copy_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
174 bulk_buffer_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
541 block_local_return_buffer(struct bulk_channel *chan, struct bulk_buffer *buffer, void *meta) argument
[all...]
H A Dnetwork_client.c53 void *meta);
56 void *meta);
59 void *meta);
528 struct bs_meta_data *meta,
542 * corresponding meta data.
546 err = bulk_channel_move(&server->tx_chan, buf[i], meta + i, cont);
562 struct bs_meta_data *meta,
576 * corresponding meta data.
580 err = bulk_channel_pass(&server->rx_chan, buf[i], meta + i, cont);
596 struct bs_meta_data *meta,
525 block_net_write(struct block_net_service *server, size_t count, struct bulk_buffer **buf, struct bs_meta_data *meta, struct bulk_continuation cont) argument
559 block_net_pass(struct block_net_service *server, size_t count, struct bulk_buffer **buf, struct bs_meta_data *meta, struct bulk_continuation cont) argument
593 block_net_release(struct block_net_service *server, size_t count, struct bulk_buffer **buf, struct bs_meta_data *meta, struct bulk_continuation cont) argument
656 bulk_move_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
670 bulk_buffer_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
683 bulk_copy_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
[all...]
H A Dblock_server.h178 void *meta);
182 void *meta);
/barrelfish-master/lib/mm/
H A Dslot_alloc.c31 if (this->meta[refill].free == L2_CNODE_SLOTS) {
59 &this->meta[refill].cap.cnode, L2_CNODE_SLOTS);
65 this->meta[refill].cap.slot = 0;
66 this->meta[refill].free = L2_CNODE_SLOTS;
77 if (this->meta[this->current].free < nslots) {
82 if (this->meta[this->current].free < nslots) {
87 *ret = this->meta[this->current].cap;
88 this->meta[this->current].cap.slot += nslots;
89 this->meta[this->current].free -= nslots;
117 this->meta[
[all...]
/barrelfish-master/lib/barrelfish/slot_alloc/
H A Drange_slot_alloc.c38 walk = alloc->meta;
74 alloc->meta = walk->next;
101 /* Create new meta data */
148 /* Create new meta data */
156 assert(alloc->meta == walk);
157 alloc->meta = new;
195 struct cnode_meta *walk = alloc->meta;
212 assert(alloc->meta == NULL);
213 alloc->meta = slab_alloc(&alloc->slab);
214 if (alloc->meta
[all...]
/barrelfish-master/usr/tests/bulk_transfer/
H A Dbulk_mini.c23 void *meta);
26 void *meta);
50 void *meta)
52 uint32_t meta_val = *((uint32_t*) meta);
53 debug_printf("APPL: cb_rx_move_received: %p, meta=%x\n", buffer->address,
68 void *meta)
70 debug_printf("APPL: cb_rx_copy_received: meta=%x\n", *((uint32_t*) meta));
109 void *meta);
156 void *meta)
48 cb_rx_move_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
66 cb_rx_copy_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
154 cb_tx_buffer_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
198 uint32_t meta; local
[all...]
H A Dbulk_netproxy.c30 void *meta);
33 void *meta);
59 void *meta)
61 uint32_t meta_val = *((uint32_t*) meta);
62 debug_printf("APPL: cb_rx_move_received: %p, meta=%x\n", buffer->address,
77 void *meta)
79 debug_printf("APPL: cb_rx_copy_received: meta=%x\n", *((uint32_t*) meta));
98 uint32_t meta = 0; local
110 err = bulk_channel_pass(channel, b, &meta, dummy_con
57 cb_rx_move_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
75 cb_rx_copy_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
209 cb_tx_buffer_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
272 uint32_t meta; local
[all...]
/barrelfish-master/lib/barrelfish/
H A Dpmap_ll.c32 for(n = root->v.u.vnode.children; n != NULL; n = n->v.meta.next) {
58 for (n = root->v.u.vnode.children; n; n = n->v.meta.next) {
78 prev->v.meta.next = walk->v.meta.next;
81 root->v.u.vnode.children = walk->v.meta.next;
86 walk = walk->v.meta.next;
114 v->v.meta.next = NULL;
119 newvnode->v.meta.next = root->v.u.vnode.children;
/barrelfish-master/lib/bulk_transfer/backends/local/
H A Dcontrol_channel.c70 void *meta; member in struct:local_event::__anon126::__anon130
78 void *meta; member in struct:local_event::__anon126::__anon131
86 void *meta; member in struct:local_event::__anon126::__anon132
108 void *meta,
112 void *meta,
116 void *meta,
486 lev->params.move_received.meta);
497 void *meta,
511 if (meta) {
516 ev->params.move_received.meta
495 impl_move(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
583 impl_pass(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
653 impl_copy(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
[all...]
/barrelfish-master/lib/bulk_transfer/backends/sm/
H A Dbulk_sm_impl.h54 const uint8_t *meta,
62 const uint8_t *meta,
76 const uint8_t *meta,
84 const uint8_t *meta,
98 const uint8_t *meta,
106 const uint8_t *meta,
H A Dbuffers.c28 void *meta; member in struct:pass_data
49 d->tid, d->cap, d->meta, d->metasize);
52 d->tid, d->meta, d->metasize);
68 void *meta,
73 size_t metasize = (meta) ? channel->meta_size : 0;//tolerate null pointers
94 d->meta = meta;
119 d->tid, d->cap, d->meta, d->metasize);
122 d->tid, d->meta, d->metasize);
138 void *meta,
66 bulk_sm_move(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
136 bulk_sm_copy(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
260 bulk_sm_pass(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
327 bulk_sm_move_rx_call( struct bulk_ctrl_binding *b, bulk_ctrl_poolid_t poolid, uint32_t bufferid, uint32_t tid, struct capref cap, const uint8_t *meta, size_t metasize) argument
392 bulk_sm_move_trusted_rx_call( struct bulk_ctrl_binding *b, bulk_ctrl_poolid_t poolid, uint32_t bufferid, uint32_t tid, const uint8_t *meta, size_t metasize) argument
440 bulk_sm_copy_rx_call( struct bulk_ctrl_binding *b, bulk_ctrl_poolid_t poolid, uint32_t bufferid, uint32_t tid, struct capref cap, const uint8_t *meta, size_t metasize) argument
504 bulk_sm_copy_trusted_rx_call( struct bulk_ctrl_binding *b, bulk_ctrl_poolid_t poolid, uint32_t bufferid, uint32_t tid, const uint8_t *meta, size_t metasize) argument
553 bulk_sm_pass_rx_call( struct bulk_ctrl_binding *b, bulk_ctrl_poolid_t poolid, uint32_t bufferid, uint32_t tid, struct capref cap, const uint8_t *meta, size_t metasize) argument
620 bulk_sm_pass_trusted_rx_call( struct bulk_ctrl_binding *b, bulk_ctrl_poolid_t poolid, uint32_t bufferid, uint32_t tid, const uint8_t *meta, size_t metasize) argument
[all...]
/barrelfish-master/include/bulk_transfer/
H A Dbulk_sm.h76 void *meta,
81 void *meta,
90 void *meta,
H A Dbulk_transfer.h123 void *meta,
128 void *meta,
137 void *meta,
186 void *meta);
191 void *meta);
196 void *meta);
234 /** the size of the transmitted meta information per bulk transfer */
454 * @param meta Pointer to metadata to be passed along with the data
460 void *meta,
470 * @param meta Pointe
[all...]
/barrelfish-master/usr/block_server_user/
H A Dbenchmark.c70 void *meta)
73 struct bs_meta_data *bs = meta;
84 err = bulk_channel_pass(channel, buffer, meta, BULK_CONT_NOP);
94 void *meta)
103 void *meta)
258 struct bs_meta_data meta; local
259 meta.block_id = i % BS_BENCH_MAX_BLOCKS;
260 meta.req_id = req_id++;
264 err = bulk_channel_move(&service->tx_channel, buf, &meta,
68 move_recvd_cb(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
92 buffer_recvd_cb(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
101 copy_recvd_cb(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
/barrelfish-master/usr/bench/bulk_transfer/
H A Dmicro_echo.c91 void *meta)
107 expect_success(bulk_channel_move(&txc, reply, meta, panic_cont));
109 expect_success(bulk_channel_pass(&rxc, buffer, meta, panic_cont));
112 expect_success(bulk_channel_move(&txc, buffer, meta, panic_cont));
118 void *meta)
127 expect_success(bulk_channel_pass(&rxc, buffer, meta, panic_cont));
89 cb_move_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
116 cb_buffer_received(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
/barrelfish-master/lib/bulk_transfer/
H A Dbulk_channel.c226 void *meta,
258 return channel->ep->f->move(channel, buffer, meta, cont);
266 void *meta,
294 return channel->ep->f->pass(channel, buffer, meta, cont);
302 void *meta,
338 return channel->ep->f->copy(channel, buffer, meta, cont);
224 bulk_channel_move(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
264 bulk_channel_pass(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
300 bulk_channel_copy(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta, struct bulk_continuation cont) argument
/barrelfish-master/usr/bulk_transfer_passthrough/
H A Dpassthrough.c194 void *meta)
201 errval_t err = bulk_channel_move(other, buffer, meta,
212 void *meta)
219 errval_t err = bulk_channel_pass(other, buffer, meta,
230 void *meta)
237 errval_t err = bulk_channel_copy(other, buffer, meta,
192 move_received_fw(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
210 buffer_received_fw(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
228 copy_received_fw(struct bulk_channel *channel, struct bulk_buffer *buffer, void *meta) argument
/barrelfish-master/usr/skb/programs/
H A Dplat_omap44xx.pl103 meta{
116 meta{
/barrelfish-master/include/mm/
H A Dslot_alloc.h44 } meta[2] __attribute__ ((aligned(4))); member in struct:slot_prealloc
46 /// Which entry in meta array we are currently allocating from

Completed in 203 milliseconds

1234