Searched refs:buf_off (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Dbio_b64.c35 int buf_off; member in struct:b64_struct
130 ctx->buf_off = 0;
137 OPENSSL_assert(ctx->buf_len >= ctx->buf_off);
138 i = ctx->buf_len - ctx->buf_off;
141 OPENSSL_assert(ctx->buf_off + i < (int)sizeof(ctx->buf));
142 memcpy(out, &(ctx->buf[ctx->buf_off]), i);
146 ctx->buf_off += i;
147 if (ctx->buf_len == ctx->buf_off) {
149 ctx->buf_off = 0;
301 ctx->buf_off
[all...]
H A Dbio_ok.c99 size_t buf_off; member in struct:ok_struct
190 i = ctx->buf_len - ctx->buf_off;
193 memcpy(out, &(ctx->buf[ctx->buf_off]), i);
197 ctx->buf_off += i;
200 if (ctx->buf_len == ctx->buf_off) {
201 ctx->buf_off = 0;
278 n = ctx->buf_len - ctx->buf_off;
280 i = BIO_write(next, &(ctx->buf[ctx->buf_off]), n);
287 ctx->buf_off += i;
293 if (ctx->buf_len == ctx->buf_off) {
[all...]
H A Dbio_enc.c29 int buf_off; member in struct:enc_struct
122 i = ctx->buf_len - ctx->buf_off;
125 memcpy(out, &(ctx->buf[ctx->buf_off]), i);
129 ctx->buf_off += i;
130 if (ctx->buf_len == ctx->buf_off) {
132 ctx->buf_off = 0;
165 ctx->buf_off = 0;
224 ctx->buf_off = i;
248 n = ctx->buf_len - ctx->buf_off;
250 i = BIO_write(next, &(ctx->buf[ctx->buf_off]),
[all...]
/freebsd-13-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_mem.c207 u64 buf_off; local
211 buf_off = addr & page_mask;
215 if (buf_off & off_mask)
218 *offset = buf_off >> ilog2(off_size);
/freebsd-13-stable/sys/dev/ntb/test/
H A Dntb_tool.c511 int *cmd_op, ssize_t buf_off, ssize_t buf_size, char *type)
523 index = buf_off;
545 "->", buf_size, buf_off);
510 tool_mw_read_fn(struct sysctl_req *req, struct tool_mw *inmw, char *read_addr, int *cmd_op, ssize_t buf_off, ssize_t buf_size, char *type) argument

Completed in 97 milliseconds