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

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp388 uptr to_length = REAL(strlen)(to); local
389 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
390 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
393 // to_length + from_length + 1.
395 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, from,
410 uptr to_length = REAL(strlen)(to); local
411 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
412 ASAN_WRITE_RANGE(ctx, to + to_length, from_lengt
[all...]

Completed in 116 milliseconds