/external/syslinux/gpxe/src/drivers/bus/ |
D | virtio-ring.c | 35 void vring_detach(struct vring_virtqueue *vq, unsigned int head) in vring_detach() argument 37 struct vring *vr = &vq->vring; in vring_detach() 48 vr->desc[i].next = vq->free_head; in vring_detach() 50 vq->free_head = head; in vring_detach() 60 int vring_get_buf(struct vring_virtqueue *vq, unsigned int *len) in vring_get_buf() argument 62 struct vring *vr = &vq->vring; in vring_get_buf() 67 BUG_ON(!vring_more_used(vq)); in vring_get_buf() 69 elem = &vr->used->ring[vq->last_used_idx % vr->num]; in vring_get_buf() 75 ret = vq->vdata[id]; in vring_get_buf() 77 vring_detach(vq, id); in vring_get_buf() [all …]
|
D | virtio-pci.c | 20 struct vring_virtqueue *vq) in vp_find_vq() argument 22 struct vring * vr = &vq->vring; in vp_find_vq() 49 vq->queue_index = queue_index; in vp_find_vq() 53 vring_init(vr, num, (unsigned char*)&vq->queue); in vp_find_vq()
|
/external/syslinux/gpxe/src/include/gpxe/ |
D | virtio-ring.h | 111 static inline void vring_enable_cb(struct vring_virtqueue *vq) in vring_enable_cb() argument 113 vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT; in vring_enable_cb() 116 static inline void vring_disable_cb(struct vring_virtqueue *vq) in vring_disable_cb() argument 118 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT; in vring_disable_cb() 129 static inline int vring_more_used(struct vring_virtqueue *vq) in vring_more_used() argument 132 return vq->last_used_idx != vq->vring.used->idx; in vring_more_used() 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, struct vring_list list[], 140 void vring_kick(unsigned int ioaddr, struct vring_virtqueue *vq, int num_added);
|
D | virtio-pci.h | 96 struct vring_virtqueue *vq);
|
/external/mksh/src/ |
D | var.c | 94 struct tbl *vp, **vpp = l->vars.tbls, *vq; in popblock() local 102 if ((vq = global(vp->name))->flag & ISSET) in popblock() 103 setspec(vq); in popblock() 105 unsetspec(vq); in popblock() 339 struct tbl *vq; in local() local 341 varsearch(l->next, &vq, vn, h); in local() 342 if (vq != NULL) { in local() 343 vp->flag |= vq->flag & in local() 346 if (vq->flag & INTEGER) in local() 347 vp->type = vq->type; in local() [all …]
|
D | expr.c | 679 struct tbl *vq; in intvar() local 686 vq = tempvar(""); in intvar() 687 if (setint_v(vq, vp, es->arith) == NULL) { in intvar() 692 v_evaluate(vq, str_val(vp), KSH_UNWIND_ERROR, es->arith); in intvar() 696 return (vq); in intvar()
|
D | funcs.c | 1572 struct tbl *vq, *voptarg; in c_getopts() local 1647 vq = global(var); in c_getopts() 1649 if (!setstr(vq, buf, KSH_RETURN_ERROR)) in c_getopts() 1969 struct tbl *vp /* FU gcc */ = NULL, *vq = NULL; in c_read() local 2337 if (vq) { in c_read() 2341 vq = vp; in c_read() 2344 vq->flag |= AINDEX; in c_read() 2346 vq = arraysearch(vp, c++); in c_read() 2348 vq = global(*wp); in c_read() 2350 if (vq->flag & RDONLY) in c_read() [all …]
|
D | jobs.c | 1254 struct tbl *vq; in j_waitj() local 1257 vq = alloc(offsetof(struct tbl, name[0]) + 11, in j_waitj() 1259 memset(vq, 0, offsetof(struct tbl, name[0])); in j_waitj() 1260 memcpy(vq->name, vp_pipest->name, 11); in j_waitj() 1261 vp->u.array = vq; in j_waitj() 1262 vp = vq; in j_waitj()
|
/external/libvorbis/vq/ |
D | Makefile.am | 31 $(MAKE) vq CFLAGS="@DEBUG@" 34 $(MAKE) vq CFLAGS="@PROFILE@" 36 vq: target
|
D | Makefile.in | 37 subdir = vq 265 $(AUTOMAKE) --gnu vq/Makefile 513 $(MAKE) vq CFLAGS="@DEBUG@" 516 $(MAKE) vq CFLAGS="@PROFILE@" 518 vq:
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
D | FlatManifestWriterImpl.java | 125 VideoQuality vq = videoQualities.get(i); in getManifest() local 128 qualityLevel.setAttribute("Bitrate", Long.toString(vq.bitrate)); in getManifest() 129 qualityLevel.setAttribute("FourCC", vq.fourCC); in getManifest() 130 qualityLevel.setAttribute("MaxWidth", Long.toString(vq.width)); in getManifest() 131 qualityLevel.setAttribute("MaxHeight", Long.toString(vq.height)); in getManifest() 132 qualityLevel.setAttribute("CodecPrivateData", vq.codecPrivateData); in getManifest() 133 qualityLevel.setAttribute("NALUnitLengthField", Integer.toString(vq.nalLength)); in getManifest()
|
/external/libvorbis/ |
D | todo.txt | 9 Option for brute-forcing vq search on maptype 2 (helps on undertrained
|
D | Makefile.am | 5 SUBDIRS = m4 include vq lib test doc subdir
|
D | README | 67 ./vq Internal utilities for training/building new LSP/residue
|
D | Makefile.in | 83 DIST_SUBDIRS = m4 include vq lib test doc examples 234 SUBDIRS = m4 include vq lib test doc $(am__append_1)
|
D | configure.ac | 289 vq/Makefile
|
/external/libopus/ |
D | celt_sources.mk | 18 celt/vq.c
|
D | celt_headers.mk | 31 celt/vq.h \
|
/external/speex/ |
D | Android.bp | 122 "libspeex/vq.c",
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/ |
D | en-US_lh0_kpdf_phs.pkb | 530 !&)'"G���诇��������vq}�qM3'&% 1094 …!1BS^`[O@2(" #)3@LTVOB4&& ',//,G���̔vq����mQOXQ8$ '(# @XhgZH6*" $,7COWXPBO"… 1632 G���渏vq|����t\C.$%1E\lm\B)
|
/external/lz4/tests/ |
D | Makefile | 288 ./datagen -g4M | $(LZ4) -11vq | $(LZ4) -qt 365 valgrind --leak-check=yes --error-exitcode=1 $(LZ4) -B4D -f -vq tmp $(VOID)
|
/external/clang/docs/ |
D | IntroductionToTheClangAST.rst | 12 …<center><iframe width="560" height="315" src="http://www.youtube.com/embed/VqCkCDFLSsc?vq=hd720" f…
|
/external/ImageMagick/PerlMagick/t/reference/write/composite/ |
D | Subtract.miff | 42 vq��ue��uc��vc��wa��va��ud��sb��sa��s`��ud��ui��xi��zl��|o��pe�pki�mhg�mhe�lgd�ifb�eec�fec�ibc�lac�…
|
/external/ImageMagick/PerlMagick/t/reference/composite/ |
D | Subtract.miff | 15 …�����������������uwuvvtvxuyxuzwtzvsytqtqrsrsqptrostnsropsqpttrvtsurqvrp{sp}vq�zu�{w�xt�vu�vu�zs|�v…
|
/external/v8/tools/profviz/ |
D | gnuplot-4.6.3-emscripten.js | 4495 …vq=0,vr=0,vs=0,vt=0.0,vu=0,vv=0,vw=0.0,vx=0,vy=0,vz=0.0,vA=0,vB=0,vC=0.0,vD=0.0,vE=0,vF=0.0,vG=0.0… 4497 …0;c=c|0;ab(8);return 0}function vp(a,b,c){a=a|0;b=b|0;c=c|0;ab(9)}function vq(){ab(10)}function vr… function 4499 …vq,vq,m3,vq,p7,vq,mC,vq,mc,vq,dR,vq,pb,vq,rl,vq,pR,vq,qv,vq,mk,vq,ee,vq,np,vq,ei,vq,nL,vq,dX,vq,nU…
|