HomeSort by: relevance | last modified time | path
    Searched defs:copy_length (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_interceptors.cc 404 uptr copy_length = Min(size, from_length + 1); local
405 ASAN_READ_RANGE(ctx, from, copy_length);
410 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
411 from, copy_length);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/stats/
stats.c 308 unsigned int copy_length = 0; local
321 copy_length = length;
323 copy_length = MOD_STATS_EVENT_STRING_MAX;
325 memcpy(&events[index].event_string, event_string, copy_length);
326 events[index].event_string[copy_length - 1] = '\0';
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_v7tar.c 365 size_t copy_length; local
383 r = archive_entry_pathname_l(entry, &pp, &copy_length, sconv);
395 if (strict && copy_length < V7TAR_name_size)
396 memcpy(h + V7TAR_name_offset, pp, copy_length);
397 else if (!strict && copy_length <= V7TAR_name_size)
398 memcpy(h + V7TAR_name_offset, pp, copy_length);
406 r = archive_entry_hardlink_l(entry, &p, &copy_length, sconv);
419 if (copy_length > 0)
422 r = archive_entry_symlink_l(entry, &p, &copy_length, sconv);
436 if (copy_length > 0)
    [all...]
archive_write_set_format_gnutar.c 569 size_t copy_length; local
591 copy_length = strlen(p);
594 copy_length = gnutar->pathname_length;
596 if (copy_length > GNUTAR_name_size)
597 copy_length = GNUTAR_name_size;
598 memcpy(h + GNUTAR_name_offset, p, copy_length);
600 if ((copy_length = gnutar->linkname_length) > 0) {
601 if (copy_length > GNUTAR_linkname_size)
602 copy_length = GNUTAR_linkname_size;
604 copy_length);
    [all...]
archive_write_set_format_ustar.c 392 size_t copy_length; local
410 r = archive_entry_pathname_l(entry, &pp, &copy_length, sconv);
422 if (copy_length <= USTAR_name_size)
423 memcpy(h + USTAR_name_offset, pp, copy_length);
426 p = strchr(pp + copy_length - USTAR_name_size - 1, '/');
459 pp + copy_length - p - 1);
463 r = archive_entry_hardlink_l(entry, &p, &copy_length, sconv);
476 if (copy_length > 0)
479 r = archive_entry_symlink_l(entry, &p, &copy_length, sconv);
493 if (copy_length > 0)
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_interceptors.cpp 395 uptr copy_length = Min(size, from_length + 1); local
396 ASAN_READ_RANGE(ctx, from, copy_length);
401 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
402 from, copy_length);
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_interceptors.cpp 533 uptr copy_length = Min(size, from_length + 1); local
534 ASAN_READ_RANGE(ctx, from, copy_length);
539 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
540 from, copy_length);
  /src/sys/net/
if_l2tp.c 579 int copy_length; local
586 copy_length = m->m_pkthdr.len;
588 copy_length = L2TP_COPY_LENGTH;
591 if (m->m_len < copy_length) {
592 m = m_pullup(m, copy_length);
617 memcpy(mtod(m_head, void *), mtod(m, void *), copy_length); local
618 m_head->m_len = copy_length;
619 m->m_data += copy_length;
620 m->m_len -= copy_length;
  /src/external/gpl3/gdb/dist/gdb/
value.c 1222 ULONGEST copy_length = length;
1225 copy_length = src_offset > limit ? 0 : limit - src_offset;
1234 if ((src_offset + copy_length) * unit_size > enclosing_type ()-> length ())
1240 copy_length * unit_size);
1243 copy_length * unit_size);
1221 ULONGEST copy_length = length; local
  /src/external/gpl3/gdb.old/dist/gdb/
value.c 1222 ULONGEST copy_length = length;
1225 copy_length = src_offset > limit ? 0 : limit - src_offset;
1234 if ((src_offset + copy_length) * unit_size > enclosing_type ()-> length ())
1240 copy_length * unit_size);
1243 copy_length * unit_size);
1221 ULONGEST copy_length = length; local
  /src/external/gpl3/gdb/dist/gdbserver/
linux-low.cc 6121 unsigned int actual_length, copy_length; local
6142 copy_length = actual_length - offset < len ? actual_length - offset : len;
6143 memcpy (myaddr, (char *) data + offset, copy_length);
6144 return copy_length;
  /src/external/gpl3/gdb.old/dist/gdbserver/
linux-low.cc 6136 unsigned int actual_length, copy_length; local
6157 copy_length = actual_length - offset < len ? actual_length - offset : len;
6158 memcpy (myaddr, (char *) data + offset, copy_length);
6159 return copy_length;

Completed in 62 milliseconds