Searched defs:vq (Results 1 - 9 of 9) sorted by relevance

/external/syslinux/gpxe/src/drivers/bus/
H A Dvirtio-pci.c20 struct vring_virtqueue *vq)
22 struct vring * vr = &vq->vring;
49 vq->queue_index = queue_index;
53 vring_init(vr, num, (unsigned char*)&vq->queue);
19 vp_find_vq(unsigned int ioaddr, int queue_index, struct vring_virtqueue *vq) argument
H A Dvirtio-ring.c35 void vring_detach(struct vring_virtqueue *vq, unsigned int head) argument
37 struct vring *vr = &vq->vring;
48 vr->desc[i].next = vq->free_head;
50 vq->free_head = head;
60 int vring_get_buf(struct vring_virtqueue *vq, unsigned int *len) argument
62 struct vring *vr = &vq->vring;
67 BUG_ON(!vring_more_used(vq));
69 elem = &vr->used->ring[vq->last_used_idx % vr->num];
75 ret = vq->vdata[id];
77 vring_detach(vq, i
84 vring_add_buf(struct vring_virtqueue *vq, struct vring_list list[], unsigned int out, unsigned int in, int index, int num_added) argument
123 vring_kick(unsigned int ioaddr, struct vring_virtqueue *vq, int num_added) argument
[all...]
/external/mksh/src/
H A DBuild.sh230 vq() { function
2367 NSIG=`vq "$CPP $CFLAGS $CPPFLAGS $NOWARN conftest.c" | \
2388 test 1 = $HAVE_CPP_DD && test $NSIG -gt 1 && sigs="$sigs "`vq \
2403 vq "$CPP $CFLAGS $CPPFLAGS $NOWARN conftest.c" | \
H A Dexpr.c682 struct tbl *vq; local
689 vq = tempvar("");
690 if (setint_v(vq, vp, es->arith) == NULL) {
695 v_evaluate(vq, str_val(vp), KSH_UNWIND_ERROR, es->arith);
699 return (vq);
H A Djobs.c1273 struct tbl *vq; local
1276 vq = alloc(offsetof(struct tbl, name[0]) + 11,
1278 memset(vq, 0, offsetof(struct tbl, name[0]));
1279 memcpy(vq->name, vp_pipest->name, 11);
1280 vp->u.array = vq;
1281 vp = vq;
H A Dvar.c97 struct tbl *vp, **vpp = l->vars.tbls, *vq; local
105 if ((vq = global(vp->name))->flag & ISSET)
106 setspec(vq);
108 unsetspec(vq);
351 struct tbl *vq; local
353 varsearch(l->next, &vq, vn, h);
354 if (vq != NULL) {
355 vp->flag |= vq->flag &
358 if (vq->flag & INTEGER)
359 vp->type = vq
451 setstr(struct tbl *vq, const char *s, int error_ok) argument
501 setint(struct tbl *vq, mksh_ari_t n) argument
616 setint_v(struct tbl *vq, struct tbl *vp, bool arith) argument
632 setint_n(struct tbl *vq, mksh_ari_t num, int newbase) argument
1595 struct tbl *vp, *vq; local
[all...]
H A Dfuncs.c1207 struct tbl *vq, *voptarg; local
1282 vq = global(var);
1284 if (!setstr(vq, buf, KSH_RETURN_ERROR))
1604 struct tbl *vp /* FU gcc */ = NULL, *vq = NULL; local
1987 if (vq) {
1991 vq = vp;
1994 vq->flag |= AINDEX;
1996 vq = arraysearch(vp, c++);
1998 vq = global(*wp);
2000 if (vq
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dvirtio-ring.h111 static inline void vring_enable_cb(struct vring_virtqueue *vq) argument
113 vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT;
116 static inline void vring_disable_cb(struct vring_virtqueue *vq) argument
118 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
129 static inline int vring_more_used(struct vring_virtqueue *vq) argument
132 return vq->last_used_idx != vq->vring.used->idx;
135 void vring_detach(struct vring_virtqueue *vq, unsigned int head);
136 int vring_get_buf(struct vring_virtqueue *vq, unsigned int *len);
137 void vring_add_buf(struct vring_virtqueue *vq, struc
[all...]
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.cpp515 tcu::Vec4 vq = tq * (float)src.getHeight(); local
520 tcu::Vec3 triV[2] = { vq.swizzle(0, 1, 2), vq.swizzle(3, 2, 1) };
814 tcu::Vec4 vq = tq * (float)src.getHeight(); local
821 tcu::Vec3 triV[2] = { vq.swizzle(0, 1, 2), vq.swizzle(3, 2, 1) };

Completed in 252 milliseconds