Home
last modified time | relevance | path

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

/external/compiler-rt/lib/asan/
Dasan_interceptors.cc519 uptr to_length = REAL(strlen)(to); in DEFINE_REAL() local
520 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length); in DEFINE_REAL()
521 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1); in DEFINE_REAL()
526 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, in DEFINE_REAL()
541 uptr to_length = REAL(strlen)(to); in INTERCEPTOR() local
542 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length); in INTERCEPTOR()
543 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1); in INTERCEPTOR()
545 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1, in INTERCEPTOR()
/external/v8/src/
Delements.cc225 uint32_t to_length = to->length(); in CopyDictionaryToObjectElements() local
226 if (to_start + copy_size > to_length) { in CopyDictionaryToObjectElements()
227 copy_size = to_length - to_start; in CopyDictionaryToObjectElements()
455 uint32_t to_length = to->length(); in CopyDictionaryToDoubleElements() local
456 if (to_start + copy_size > to_length) { in CopyDictionaryToDoubleElements()
457 copy_size = to_length - to_start; in CopyDictionaryToDoubleElements()