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

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_compression_none.c119 ssize_t remaining, to_copy; local
158 to_copy = (remaining > state->avail) ?
160 memcpy(state->next, buff, to_copy);
161 state->next += to_copy;
162 state->avail -= to_copy;
163 buff += to_copy;
164 remaining -= to_copy;
/freebsd-9.3-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-9.3-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-9.3-release/sys/ofed/drivers/infiniband/hw/mlx4/
H A Dqp.c1857 int off, to_copy; local
1878 to_copy = MLX4_INLINE_ALIGN - off;
1879 memcpy(wqe, addr, to_copy);
1880 len -= to_copy;
1881 wqe += to_copy;
1882 addr += to_copy;
1883 seg_len += to_copy;
/freebsd-9.3-release/libexec/rtld-elf/
H A Drtld.c4152 int to_copy; local
4159 to_copy = dtv[1];
4160 if (to_copy > tls_max_index)
4161 to_copy = tls_max_index;
4162 memcpy(&newdtv[2], &dtv[2], to_copy * sizeof(Elf_Addr));

Completed in 121 milliseconds