Searched refs:copy_length (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_ustar.c262 size_t copy_length; local
328 copy_length = strlen(p);
329 if (copy_length > USTAR_linkname_size) {
333 copy_length = USTAR_linkname_size;
335 memcpy(h + USTAR_linkname_offset, p, copy_length);
340 copy_length = strlen(p);
341 if (copy_length > USTAR_uname_size) {
345 copy_length = USTAR_uname_size;
347 memcpy(h + USTAR_uname_offset, p, copy_length);
352 copy_length
[all...]
/freebsd-9.3-release/sys/dev/isci/scil/
H A Dscic_sds_stp_request.c1211 U32 copy_length;
1218 copy_length = MIN(length, current_sgl->length - sgl_offset);
1220 memcpy(destination_address, source_address, copy_length);
1222 length -= copy_length;
1223 sgl_offset += copy_length;
1224 data_offset += copy_length;
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Djournal.c2101 unsigned int copy_length; local
2205 copy_length = j->header.end.offset - best_guess.offset;
2207 if (copy_length != 0) {
2212 if (copy_length < size)
2213 size = copy_length;
2222 for (i = 0; i < copy_length; i += size) {
2223 unsigned int len = (copy_length - i) > size ? size :
2224 (copy_length - i);
2237 new->header.end.offset = indexend + copy_length;
/freebsd-9.3-release/contrib/gcc/
H A Dprotoize.c2835 size_t copy_length = (size_t) (p - clean_read_ptr);
2838 if (copy_length == 0)
2841 output_bytes (copy_start, copy_length);
2816 size_t copy_length = (size_t) (p - clean_read_ptr); local

Completed in 79 milliseconds