Searched refs:vr (Results 1 - 8 of 8) sorted by relevance

/barrelfish-2018-10-04/include/virtio/
H A Dvirtio_ring.h169 static inline uint16_t *vring_get_used_event(struct vring *vr) argument
171 return &vr->avail->ring[vr->num];
180 static inline uint16_t *vring_get_avail_event(struct vring *vr) argument
182 return (uint16_t *) &vr->used->ring[vr->num];
213 * \param vr vring structure to initialize
219 static inline void vring_init(struct vring *vr, argument
229 vr->num = num;
230 vr
[all...]
/barrelfish-2018-10-04/usr/tests/nkm/
H A Dnkmtest.c66 struct vregion *vr; local
70 err = vspace_map_one_frame(&vaddr, BASE_PAGE_SIZE, frame, &memobj, &vr);
/barrelfish-2018-10-04/lib/virtio/
H A Dvirtqueue.c130 struct vring *vr = &vq->vring; local
139 vring_init(vr, vq->desc_num, vq->vring_align, (void *) vq->vring_vaddr);
141 vr->num = vq->desc_num;
148 vr->desc[i].next = i + 1;
150 vr->desc[i].next = VIRTQUEUE_CHAIN_END;
695 * \param vr pointer to the vring structure to be initialized
703 errval_t vring_init_from_cap(struct vring *vr, argument
732 vring_init(vr, num, align, addr);
740 * \param vr pointer to the vring structure
748 errval_t vring_alloc(struct vring *vr, argument
786 vring_free(struct vring *vr) argument
[all...]
H A Dvirtqueue_host.c593 * \param vr pointer to the vring structure to be initialized
601 errval_t vring_init_from_cap(struct vring *vr, argument
630 vring_init(vr, num, align, addr);
638 * \param vr the vring to be freed
643 errval_t vring_free(struct vring *vr) argument
647 err = vspace_unmap(vr->desc);
/barrelfish-2018-10-04/usr/examples/xmpl-cow/
H A Dmain.c53 struct vregion *vr; local
56 err = vspace_map_one_frame(&buf, BASE_PAGE_SIZE, f, NULL, &vr);
59 vregion_destroy(vr);
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dbip_load.c758 p_call_c(value v, type t, value vr, type tr) argument
772 mydid = vr.ptr->val.did;
782 resv.all = vr.ptr[1].val.all;
783 rest.all = vr.ptr[1].tag.all;
787 resv.all = vr.all;
H A Dbip_comp.c82 p_compare_instances4(value vr, type tr, value v1, type t1, value v2, type t2, value vl, type tl),
485 p_compare_instances4(value vr, type tr, argument
509 Bind_Var(vr, tr, res, TDICT)
513 if (vr.did == d_.unify0)
518 else if (vr.did == d_.inf0)
523 else if (vr.did == d_.sup0)
H A Dbigrat.c918 _rat_string_size(value vr, type tr, int quoted) argument
923 Big_To_Mpi(vr.ptr[0].val.ptr, &bign);
925 Big_To_Mpi(vr.ptr[1].val.ptr, &bign);
936 _rat_to_string(value vr, type tr, char *buf, int quoted) argument
941 Big_To_Mpi(vr.ptr[0].val.ptr, &bign);
948 Big_To_Mpi(vr.ptr[1].val.ptr, &bign);

Completed in 75 milliseconds