HomeSort by relevance Sort by last modified time
    Searched refs:to_length (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/asan/
asan_interceptors.cc 498 uptr to_length = REAL(strlen)(to); local
499 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
500 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
503 // to_length + from_length + 1.
505 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1,
520 uptr to_length = REAL(strlen)(to); local
521 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length);
522 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1)
    [all...]
  /external/v8/src/interpreter/
interpreter-intrinsics.h 44 V(ToLength, to_length, 1) \
  /external/v8/src/
elements.cc 181 uint32_t to_length = to->length(); local
182 if (to_start + copy_size > to_length) {
183 copy_size = to_length - to_start;
415 uint32_t to_length = to->length(); local
416 if (to_start + copy_size > to_length) {
417 copy_size = to_length - to_start;
    [all...]

Completed in 54 milliseconds