Lines Matching defs:to_length
518 uptr to_length = internal_strlen(to);
519 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
520 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
523 // to_length + from_length + 1.
525 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, from,
540 uptr to_length = internal_strlen(to);
541 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
542 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
544 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,