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

/freebsd-10.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_ustar.c393 size_t copy_length; local
411 r = archive_entry_pathname_l(entry, &pp, &copy_length, sconv);
423 if (copy_length <= USTAR_name_size)
424 memcpy(h + USTAR_name_offset, pp, copy_length);
427 p = strchr(pp + copy_length - USTAR_name_size - 1, '/');
460 pp + copy_length - p - 1);
464 r = archive_entry_hardlink_l(entry, &p, &copy_length, sconv);
477 if (copy_length > 0)
480 r = archive_entry_symlink_l(entry, &p, &copy_length, sconv);
494 if (copy_length >
[all...]
H A Darchive_write_set_format_gnutar.c577 size_t copy_length; local
599 copy_length = strlen(p);
602 copy_length = gnutar->pathname_length;
604 if (copy_length > GNUTAR_name_size)
605 copy_length = GNUTAR_name_size;
606 memcpy(h + GNUTAR_name_offset, p, copy_length);
608 if ((copy_length = gnutar->linkname_length) > 0) {
609 if (copy_length > GNUTAR_linkname_size)
610 copy_length = GNUTAR_linkname_size;
612 copy_length);
[all...]
H A Darchive_write_set_format_v7tar.c370 size_t copy_length; local
388 r = archive_entry_pathname_l(entry, &pp, &copy_length, sconv);
400 if (strict && copy_length < V7TAR_name_size)
401 memcpy(h + V7TAR_name_offset, pp, copy_length);
402 else if (!strict && copy_length <= V7TAR_name_size)
403 memcpy(h + V7TAR_name_offset, pp, copy_length);
411 r = archive_entry_hardlink_l(entry, &p, &copy_length, sconv);
424 if (copy_length > 0)
427 r = archive_entry_symlink_l(entry, &p, &copy_length, sconv);
441 if (copy_length >
[all...]
/freebsd-10.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;
1225 source_address += copy_length;
/freebsd-10.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 75 milliseconds