Home
last modified time | relevance | path

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

/external/compiler-rt/lib/asan/
Dasan_interceptors.cc499 uptr to_length = REAL(strlen)(to); in DEFINE_REAL() local
500 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length); in DEFINE_REAL()
501 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1); in DEFINE_REAL()
506 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, in DEFINE_REAL()
521 uptr to_length = REAL(strlen)(to); in INTERCEPTOR() local
522 ASAN_READ_STRING_OF_LEN(ctx, to, to_length, to_length); in INTERCEPTOR()
523 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1); in INTERCEPTOR()
525 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1, in INTERCEPTOR()
/external/v8/src/interpreter/
Dinterpreter-intrinsics.h39 V(ToLength, to_length, 1) \
/external/v8/src/
Delements.cc181 uint32_t to_length = to->length(); in CopyDictionaryToObjectElements() local
182 if (to_start + copy_size > to_length) { in CopyDictionaryToObjectElements()
183 copy_size = to_length - to_start; in CopyDictionaryToObjectElements()
416 uint32_t to_length = to->length(); in CopyDictionaryToDoubleElements() local
417 if (to_start + copy_size > to_length) { in CopyDictionaryToDoubleElements()
418 copy_size = to_length - to_start; in CopyDictionaryToDoubleElements()
/external/v8/src/builtins/
Dbuiltins-array.cc2603 Callable to_length = CodeFactory::ToLength(assembler.isolate()); in Generate_ArrayIteratorPrototypeNext() local
2604 var_length.Bind(assembler.CallStub(to_length, context, length)); in Generate_ArrayIteratorPrototypeNext()