| /freebsd/contrib/llvm-project/libc/src/__support/ |
| H A D | arg_list.h | 28 va_list vlist; variable 31 LIBC_INLINE ArgList(va_list vlist) { va_copy(this->vlist, vlist); } in ArgList() argument 32 LIBC_INLINE ArgList(ArgList &other) { va_copy(this->vlist, other.vlist); } in ArgList() 33 LIBC_INLINE ~ArgList() { va_end(this->vlist); } in ~ArgList() 36 va_copy(vlist, rhs.vlist); 40 template <class T> LIBC_INLINE T next_var() { return va_arg(vlist, T); } in next_var()
|
| /freebsd/sys/kern/ |
| H A D | subr_memdesc.c | 69 vlist_copyback(struct bus_dma_segment *vlist, int sglist_cnt, int off, in vlist_copyback() argument 75 while (vlist->ds_len <= off) { in vlist_copyback() 78 off -= vlist->ds_len; in vlist_copyback() 79 vlist++; in vlist_copyback() 88 if (todo > vlist->ds_len - off) in vlist_copyback() 89 todo = vlist->ds_len - off; in vlist_copyback() 91 memcpy((char *)(uintptr_t)vlist->ds_addr + off, p, todo); in vlist_copyback() 93 vlist++; in vlist_copyback() 217 vlist_copydata(struct bus_dma_segment *vlist, int sglist_cnt, int off, in vlist_copydata() argument 223 while (vlist->ds_len <= off) { in vlist_copydata() [all …]
|
| /freebsd/sys/dev/md/ |
| H A D | md.c | 600 bus_dma_segment_t *vlist; in md_malloc_move_vlist() local 605 vlist = *pvlist; in md_malloc_move_vlist() 610 seg_len = imin(vlist->ds_len - ma_offs, len); in md_malloc_move_vlist() 611 p = (uint8_t *)(uintptr_t)vlist->ds_addr + ma_offs; in md_malloc_move_vlist() 641 if (ma_offs == vlist->ds_len) { in md_malloc_move_vlist() 643 vlist++; in md_malloc_move_vlist() 647 *pvlist = vlist; in md_malloc_move_vlist() 658 bus_dma_segment_t *vlist; in mdstart_malloc() local 675 vlist = (bp->bio_flags & BIO_VLIST) != 0 ? in mdstart_malloc() 681 KASSERT(vlist == NULL, ("vlists cannot be unmapped")); in mdstart_malloc() [all …]
|
| /freebsd/usr.bin/rpcgen/ |
| H A D | rpc_parse.c | 136 version_list *vlist; in def_program() local 151 vlist = XALLOC(version_list); in def_program() 152 vlist->vers_name = tok.str; in def_program() 154 ptailp = &vlist->procs; in def_program() 212 *vtailp = vlist; in def_program() 213 vtailp = &vlist->next; in def_program() 217 vlist->vers_num = tok.str; in def_program() 219 for (plist = vlist->procs; plist != NULL; in def_program() 222 vlist->vers_num); in def_program()
|
| H A D | rpc_cout.c | 289 version_list *vlist; in emit_program() local 292 for (vlist = def->def.pr.versions; vlist != NULL; vlist = vlist->next) in emit_program() 293 for (plist = vlist->procs; plist != NULL; plist = plist->next) { in emit_program()
|
| /freebsd/contrib/ntp/ntpq/ |
| H A D | libntpq_subs.c | 40 struct ntpq_varlist *vlist, in ntpq_doquerylist() argument 49 return doquerylist((struct varlist *)vlist, op, associd, auth, in ntpq_doquerylist()
|
| H A D | ntpq-subs.c | 479 struct varlist *vlist, in doaddvlist() argument 491 vl = findlistvar(vlist, name); in doaddvlist() 515 struct varlist *vlist, in dormvlist() argument 527 vl = findlistvar(vlist, name); in dormvlist() 551 struct varlist *vlist in doclearvlist() argument 556 for (vl = vlist; vl < vlist + MAXLIST && vl->name != 0; vl++) { in doclearvlist() 572 struct varlist *vlist, in makequerydata() argument 585 for (vl = vlist; vl < vlist in makequerydata() 618 doquerylist(struct varlist * vlist,int op,associd_t associd,int auth,u_short * rstatus,size_t * dsize,const char ** datap) doquerylist() argument 643 doprintvlist(struct varlist * vlist,FILE * fp) doprintvlist() argument 723 dolist(struct varlist * vlist,associd_t associd,int op,int type,FILE * fp) dolist() argument [all...] |
| /freebsd/sys/sys/ |
| H A D | memdesc.h | 95 memdesc_vlist(struct bus_dma_segment *vlist, int sglist_cnt) in memdesc_vlist() argument 99 mem.u.md_list = vlist; in memdesc_vlist()
|
| /freebsd/sys/dev/nvmf/controller/ |
| H A D | ctl_frontend_nvmf.c | 348 struct bus_dma_segment *vlist; in nvmft_datamove_out() local 350 vlist = mallocarray(ctnio->kern_sg_entries, sizeof(*vlist), in nvmft_datamove_out() 352 ctnio->ext_data_ptr = (void *)vlist; in nvmft_datamove_out() 355 vlist[i].ds_addr = (uintptr_t)sgl[i].addr; in nvmft_datamove_out() 356 vlist[i].ds_len = sgl[i].len; in nvmft_datamove_out() 358 mem = memdesc_vlist(vlist, ctnio->kern_sg_entries); in nvmft_datamove_out()
|
| /freebsd/usr.bin/rpcinfo/ |
| H A D | rpcinfo.c | 112 struct verslist *vlist; member 637 for (vl = rs->vlist; vl; vl = vl->next) 646 vl->next = rs->vlist; 647 rs->vlist = vl; 827 rs->vlist = NULL; 840 for (vl = rs->vlist; vl; vl = vl->next) {
|
| /freebsd/stand/libsa/zfs/ |
| H A D | zfsimpl.c | 540 vdev_list_t *vlist; in vdev_lookup_top() local 542 vlist = &spa->spa_root_vdev->v_children; in vdev_lookup_top() 543 STAILQ_FOREACH(rvd, vlist, v_childlink) in vdev_lookup_top() 1521 vdev_list_t *vlist; in spa_status() local 1550 vlist = &spa->spa_root_vdev->v_children; in spa_status() 1551 STAILQ_FOREACH(vdev, vlist, v_childlink) { in spa_status() 1570 STAILQ_FOREACH(vdev, vlist, v_childlink) { in spa_status() 2389 vdev_list_t *vlist; in zio_read_impl() local 2398 vlist = &spa->spa_root_vdev->v_children; in zio_read_impl() 2399 STAILQ_FOREACH(vdev, vlist, v_childlink) { in zio_read_impl()
|