HomeSort by relevance Sort by last modified time
    Searched refs:to_length (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/asan/
asan_interceptors.cc 467 uptr to_length = REAL(strlen)(to); local
468 ASAN_READ_RANGE(to, to_length);
469 ASAN_WRITE_RANGE(to + to_length, from_length + 1);
472 // to_length + from_length + 1.
474 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1,
487 uptr to_length = REAL(strlen)(to); local
488 ASAN_READ_RANGE(to, to_length);
489 ASAN_WRITE_RANGE(to + to_length, from_length + 1);
491 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
  /external/chromium_org/v8/src/
elements.cc 230 uint32_t to_length = to->length(); local
231 if (to_start + copy_size > to_length) {
232 copy_size = to_length - to_start;
465 uint32_t to_length = to->length(); local
466 if (to_start + copy_size > to_length) {
467 copy_size = to_length - to_start;
    [all...]

Completed in 62 milliseconds