Searched refs:to_copy (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.2-release/contrib/ncurses/ncurses/base/
H A Dlib_scroll.c58 size_t to_copy = (size_t) (sizeof(NCURSES_CH_T) * (win->_maxx + 1)); local
88 to_copy);
106 to_copy);
/freebsd-10.2-release/contrib/ofed/libmlx4/src/
H A Dqp.c305 int off, to_copy; local
328 to_copy = MLX4_INLINE_ALIGN - off;
329 memcpy(wqe, addr, to_copy);
330 len -= to_copy;
331 wqe += to_copy;
332 addr += to_copy;
333 seg_len += to_copy;
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_write.c331 ssize_t remaining, to_copy; local
358 to_copy = ((size_t)remaining > state->avail) ?
360 memcpy(state->next, buff, to_copy);
361 state->next += to_copy;
362 state->avail -= to_copy;
363 buff += to_copy;
364 remaining -= to_copy;
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_subr/
H A Dsubst.c1272 apr_size_t to_copy;
1298 to_copy = (buffer_remainder > unsatisfied)
1300 memcpy(buffer + off, b->readbuf->data + b->readbuf_off, to_copy);
1301 off += to_copy;
1302 b->readbuf_off += to_copy;
1303 unsatisfied -= to_copy;
1268 apr_size_t to_copy; local
H A Dcache-membuffer.c215 apr_size_t to_copy = len > PREFIX_TAIL_LEN-1 ? PREFIX_TAIL_LEN-1 : len; local
218 memcpy(prefix_tail, prefix + len - to_copy, to_copy);
/freebsd-10.2-release/sys/ofed/drivers/infiniband/hw/mlx4/
H A Dqp.c2914 int off, to_copy; local
2935 to_copy = MLX4_INLINE_ALIGN - off;
2936 memcpy(wqe, addr, to_copy);
2937 len -= to_copy;
2938 wqe += to_copy;
2939 addr += to_copy;
2940 seg_len += to_copy;
/freebsd-10.2-release/libexec/rtld-elf/
H A Drtld.c4272 int to_copy; local
4279 to_copy = dtv[1];
4280 if (to_copy > tls_max_index)
4281 to_copy = tls_max_index;
4282 memcpy(&newdtv[2], &dtv[2], to_copy * sizeof(Elf_Addr));

Completed in 211 milliseconds