HomeSort by: relevance | last modified time | path
    Searched refs:howmuch (Results 1 - 9 of 9) sorted by relevancy

  /src/lib/libpuffs/
requests.c 64 size_t howmuch, winlen, curoff; local
72 howmuch = sizeof(struct putter_hdr) - curoff;
77 howmuch = phdr.pth_framelen - curoff;
81 if (puffs_framebuf_reserve_space(pb, howmuch) == -1)
85 while (howmuch) {
86 winlen = howmuch;
99 howmuch -= n;
123 size_t winlen, howmuch, curoff; local
154 howmuch = flen - puffs_framebuf_telloff(pb);
156 while (howmuch) {
    [all...]
  /src/usr.sbin/puffs/mount_9p/
ninebuf.c 83 size_t howmuch, winlen; local
88 howmuch = 4 - CUROFF(pb);
90 howmuch = p9pbuf_get_len(pb) - CUROFF(pb);
92 if (puffs_framebuf_reserve_space(pb, howmuch) == -1)
95 while (howmuch) {
96 winlen = howmuch;
108 howmuch -= n;
128 size_t winlen, howmuch; local
137 howmuch = puffs_framebuf_tellsize(pb) - CUROFF(pb);
138 while (howmuch) {
    [all...]
  /src/lib/librumpuser/
rumpfiber_sp.c 101 rumpuser_sp_anonmmap(void *arg, size_t howmuch, void **addr)
rumpuser_mem.c 47 rumpuser_malloc(size_t howmuch, int alignment, void **memp)
55 rv = posix_memalign(&mem, (size_t)alignment, howmuch);
rumpuser_sp.c 462 anonmmap_req(struct spclient *spc, size_t howmuch, void **resp)
469 DPRINTF(("anonmmap_req: %zu bytes\n", howmuch));
471 rhdr.rsp_len = sizeof(rhdr) + sizeof(howmuch);
477 IOVPUT(iov[1], howmuch);
857 rumpuser_sp_anonmmap(void *arg, size_t howmuch, void **addr)
865 rv = anonmmap_req(spc, howmuch, &rdata);
  /src/usr.sbin/puffs/mount_psshfs/
psbuf.c 97 size_t howmuch, winlen; local
102 howmuch = 4 - CUROFF(pb);
104 howmuch = psbuf_get_len(pb) - (CUROFF(pb) - 4);
106 if (puffs_framebuf_reserve_space(pb, howmuch) == -1)
109 while (howmuch) {
110 winlen = howmuch;
122 howmuch -= n;
143 size_t winlen, howmuch; local
153 howmuch = puffs_framebuf_tellsize(pb) - CUROFF(pb);
154 while (howmuch) {
    [all...]
  /src/sys/rump/include/rump-sys/
kern.h 240 #define rump_sysproxy_anonmmap(arg, howmuch, addr) \
241 rump_sysproxy_ops.rspo_anonmmap(arg, howmuch, addr)
  /src/sys/rump/librump/rumpkern/
vm.c 1296 rump_hypermalloc(size_t howmuch, int alignment, bool waitok, const char *wmsg)
1309 newmem = atomic_add_long_nv(&curphysmem, howmuch);
1311 newmem = atomic_add_long_nv(&curphysmem, -howmuch);
1322 error = rumpuser_malloc(howmuch, alignment, &rv);
  /src/sys/fs/puffs/
puffs_vnops.c 1476 size_t howmuch, resid; local
1548 howmuch = resid - readdir_msg->pvnr_resid;
1551 if (howmuch == 0) {
1556 error = uiomove(readdir_msg->pvnr_data + cookiemem, howmuch, uio);

Completed in 21 milliseconds