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

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp386 uptr from_length = REAL(strlen)(from); local
387 ASAN_READ_RANGE(ctx, from, from_length + 1);
390 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
393 // to_length + from_length + 1.
394 if (from_length > 0) {
395 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, from,
396 from_length + 1);
407 uptr from_length = MaybeRealStrnlen(from, size); local
408 uptr copy_length = Min(size, from_length + 1);
412 ASAN_WRITE_RANGE(ctx, to + to_length, from_length
[all...]

Completed in 100 milliseconds