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 in function:puffs__fsframe_read
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 in function:puffs__fsframe_write
154 howmuch = flen - puffs_framebuf_telloff(pb);
156 while (howmuch) {
    [all...]
  /src/usr.sbin/puffs/mount_9p/
ninebuf.c 82 size_t howmuch, winlen; local in function:p9pbuf_read
87 howmuch = 4 - CUROFF(pb);
89 howmuch = p9pbuf_get_len(pb) - CUROFF(pb);
91 if (puffs_framebuf_reserve_space(pb, howmuch) == -1)
94 while (howmuch) {
95 winlen = howmuch;
107 howmuch -= n;
127 size_t winlen, howmuch; local in function:p9pbuf_write
136 howmuch = puffs_framebuf_tellsize(pb) - CUROFF(pb);
137 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 96 size_t howmuch, winlen; local in function:psbuf_read
101 howmuch = 4 - CUROFF(pb);
103 howmuch = psbuf_get_len(pb) - (CUROFF(pb) - 4);
105 if (puffs_framebuf_reserve_space(pb, howmuch) == -1)
108 while (howmuch) {
109 winlen = howmuch;
121 howmuch -= n;
142 size_t winlen, howmuch; local in function:psbuf_write
152 howmuch = puffs_framebuf_tellsize(pb) - CUROFF(pb);
153 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 in function:puffs_vnop_readdir
1548 howmuch = resid - readdir_msg->pvnr_resid;
1551 if (howmuch == 0) {
1556 error = uiomove(readdir_msg->pvnr_data + cookiemem, howmuch, uio);

Completed in 16 milliseconds