Lines Matching defs:real_endptr
617 char *real_endptr;
618 long result = REAL(strtol)(nptr, &real_endptr, base); // NOLINT
619 StrtolFixAndCheck(ctx, nptr, endptr, real_endptr, base);
633 char *real_endptr;
638 int result = REAL(strtol)(nptr, &real_endptr, 10);
639 FixRealStrtolEndptr(nptr, &real_endptr);
640 ASAN_READ_STRING(ctx, nptr, (real_endptr - nptr) + 1);
654 char *real_endptr;
655 long result = REAL(strtol)(nptr, &real_endptr, 10); // NOLINT
656 FixRealStrtolEndptr(nptr, &real_endptr);
657 ASAN_READ_STRING(ctx, nptr, (real_endptr - nptr) + 1);
670 char *real_endptr;
671 long long result = REAL(strtoll)(nptr, &real_endptr, base); // NOLINT
672 StrtolFixAndCheck(ctx, nptr, endptr, real_endptr, base);
683 char *real_endptr;
684 long long result = REAL(strtoll)(nptr, &real_endptr, 10); // NOLINT
685 FixRealStrtolEndptr(nptr, &real_endptr);
686 ASAN_READ_STRING(ctx, nptr, (real_endptr - nptr) + 1);