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

/openbsd-current/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_interceptors.cpp205 uptr to_length = internal_strlen(to); local
206 MEMPROF_READ_STRING(to, to_length);
207 MEMPROF_WRITE_RANGE(to + to_length, from_length + 1);
218 uptr to_length = internal_strlen(to); local
219 MEMPROF_READ_STRING(to, to_length);
220 MEMPROF_WRITE_RANGE(to + to_length, from_length + 1);
/openbsd-current/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp411 uptr to_length = internal_strlen(to); local
412 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
413 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
416 // to_length + from_length + 1.
418 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, from,
433 uptr to_length = internal_strlen(to); local
434 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
435 ASAN_WRITE_RANGE(ctx, to + to_length, from_lengt
[all...]

Completed in 132 milliseconds