Lines Matching defs:from_length
516 uptr from_length = internal_strlen(from);
517 ASAN_READ_RANGE(ctx, from, from_length + 1);
520 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
523 // to_length + from_length + 1.
524 if (from_length > 0) {
525 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, from,
526 from_length + 1);
537 uptr from_length = MaybeRealStrnlen(from, size);
538 uptr copy_length = Min<uptr>(size, from_length + 1);
542 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
543 if (from_length > 0) {