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.cc374 uptr to_length = REAL(strlen)(to); in INTERCEPTOR() local
375 ASAN_READ_RANGE(to, to_length); in INTERCEPTOR()
376 ASAN_WRITE_RANGE(to + to_length, from_length + 1); in INTERCEPTOR()
381 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, in INTERCEPTOR()
394 uptr to_length = REAL(strlen)(to); in INTERCEPTOR() local
395 ASAN_READ_RANGE(to, to_length); in INTERCEPTOR()
396 ASAN_WRITE_RANGE(to + to_length, from_length + 1); in INTERCEPTOR()
398 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1, in INTERCEPTOR()
/external/v8/src/
Delements.cc205 uint32_t to_length = to->length(); in CopyDictionaryToObjectElements() local
206 if (to_start + copy_size > to_length) { in CopyDictionaryToObjectElements()
207 copy_size = to_length - to_start; in CopyDictionaryToObjectElements()
363 uint32_t to_length = to->length(); in CopyDictionaryToDoubleElements() local
364 if (to_start + copy_size > to_length) { in CopyDictionaryToDoubleElements()
365 copy_size = to_length - to_start; in CopyDictionaryToDoubleElements()