Searched refs:from_size (Results 1 - 2 of 2) sorted by path

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_string.c2030 int to_size, from_size; local
2037 from_size = 2;
2039 from_size = 1;
2049 while (remaining >= (size_t)from_size) {
2092 itp += from_size;
2093 remaining -= from_size;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp435 uptr from_size = REAL(strlen)(from) + 1; local
436 CHECK_RANGES_OVERLAP("strcpy", to, from_size, from, from_size);
437 ASAN_READ_RANGE(ctx, from, from_size);
438 ASAN_WRITE_RANGE(ctx, to, from_size);
480 uptr from_size = Min(size, MaybeRealStrnlen(from, size) + 1); local
481 CHECK_RANGES_OVERLAP("strncpy", to, from_size, from, from_size);
482 ASAN_READ_RANGE(ctx, from, from_size);

Completed in 138 milliseconds