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

/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
H A Dfnv1a.c214 apr_size_t to_copy = SCALING - context->buffered; local
215 if (to_copy > len)
222 memcpy(context->buffer + context->buffered, data, to_copy);
223 data = (const char *)data + to_copy;
224 len -= to_copy;
H A Dsubst.c1287 apr_size_t to_copy;
1313 to_copy = (buffer_remainder > unsatisfied)
1315 memcpy(buffer + off, b->readbuf->data + b->readbuf_off, to_copy);
1316 off += to_copy;
1317 b->readbuf_off += to_copy;
1318 unsatisfied -= to_copy;
1283 apr_size_t to_copy; local
/freebsd-10-stable/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-stable/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-stable/contrib/libarchive/libarchive/
H A Darchive_write.c383 ssize_t remaining, to_copy; local
410 to_copy = ((size_t)remaining > state->avail) ?
412 memcpy(state->next, buff, to_copy);
413 state->next += to_copy;
414 state->avail -= to_copy;
415 buff += to_copy;
416 remaining -= to_copy;
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dstring_table.c508 apr_size_t to_copy = len - header->head_length;
516 while (to_copy >= copied + sizeof(apr_uint64_t))
527 mask = *(const apr_uint64_t *)copy_masks[to_copy - copied];
505 apr_size_t to_copy = len - header->head_length; local
H A Dpack.c425 apr_size_t to_copy = (apr_size_t)(MIN(size, ffd->block_size)); local
429 SVN_ERR(svn_io_file_read_full2(source, buffer, to_copy,
431 SVN_ERR(svn_io_file_write_full(dest, buffer, to_copy,
434 size -= to_copy;
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dpack.c447 apr_size_t to_copy = (apr_size_t)(MIN(size, ffd->block_size)); local
451 SVN_ERR(svn_io_file_read_full2(source, buffer, to_copy,
453 SVN_ERR(svn_io_file_write_full(dest, buffer, to_copy,
456 size -= to_copy;
/freebsd-10-stable/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-stable/libexec/rtld-elf/
H A Drtld.c4393 int to_copy; local
4400 to_copy = dtv[1];
4401 if (to_copy > tls_max_index)
4402 to_copy = tls_max_index;
4403 memcpy(&newdtv[2], &dtv[2], to_copy * sizeof(Elf_Addr));

Completed in 272 milliseconds