Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_interceptors.cpp182 uptr to_length = internal_strlen(to); in INTERCEPTOR() local
183 MEMPROF_READ_STRING(to, to_length); in INTERCEPTOR()
184 MEMPROF_WRITE_RANGE(to + to_length, from_length + 1); in INTERCEPTOR()
195 uptr to_length = internal_strlen(to); in INTERCEPTOR() local
196 MEMPROF_READ_STRING(to, to_length); in INTERCEPTOR()
197 MEMPROF_WRITE_RANGE(to + to_length, from_length + 1); in INTERCEPTOR()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp518 uptr to_length = internal_strlen(to); local
519 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
520 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
525 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, from,
540 uptr to_length = internal_strlen(to); local
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,