Home
last modified time | relevance | path

Searched refs:bufv (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/lib/librefuse/refuse/
H A Dbuf.c48 fuse_buf_size(const struct fuse_bufvec *bufv) { in fuse_buf_size() argument
52 for (i = 0; i < bufv->count; i++) { in fuse_buf_size()
53 total += bufv->buf[i].size; in fuse_buf_size()
62 fuse_buf_current(const struct fuse_bufvec *bufv) { in fuse_buf_current() argument
63 if (bufv->idx < bufv->count) in fuse_buf_current()
64 return &bufv->buf[bufv->idx]; in fuse_buf_current()
260 fuse_buf_advance(struct fuse_bufvec *bufv, size_t len) { in fuse_buf_advance() argument
261 const struct fuse_buf *buf = fuse_buf_current(bufv); in fuse_buf_advance()
263 assert(bufv->off + len <= buf->size); in fuse_buf_advance()
264 bufv->off += len; in fuse_buf_advance()
[all …]
H A Dbuf.h98 size_t fuse_buf_size(const struct fuse_bufvec *bufv);
/netbsd-src/sys/opencrypto/
H A Dcryptosoft.c87 swcr_encdec(struct cryptodesc *crd, const struct swcr_data *sw, void *bufv, in swcr_encdec() argument
90 char *buf = bufv; in swcr_encdec()