Home
last modified time | relevance | path

Searched refs:internal_simple_strtoll (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_s390.cpp136 major = internal_simple_strtoll(ptr, &ptr, 10); in FixedCVE_2016_2143()
140 minor = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
143 patch = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
148 int r1 = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
152 int r2 = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
169 int r1 = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
173 int r2 = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
190 int r1 = internal_simple_strtoll(ptr+1, &ptr, 10); in FixedCVE_2016_2143()
H A Dsanitizer_flag_parser.h118 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
133 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
148 *t_ = internal_simple_strtoll(value, &value_end, 10); in Parse()
H A Dsanitizer_libc.cpp20 return internal_simple_strtoll(nptr, nullptr, 10); in internal_atoll()
230 s64 internal_simple_strtoll(const char *nptr, const char **endptr, int base) { in internal_simple_strtoll() function
H A Dsanitizer_libc.h51 s64 internal_simple_strtoll(const char *nptr, const char **endptr, int base);
H A Dsanitizer_linux_libcdep.cpp184 *major = internal_simple_strtoll(p, &p, 10); in GetLibcVersion()
185 *minor = (*p == '.') ? internal_simple_strtoll(p + 1, &p, 10) : 0; in GetLibcVersion()
186 *patch = (*p == '.') ? internal_simple_strtoll(p + 1, &p, 10) : 0; in GetLibcVersion()
H A Dsanitizer_mac.cpp690 *major = internal_simple_strtoll(p, &p, /*base=*/10); in ParseVersion()
693 *minor = internal_simple_strtoll(p, &p, /*base=*/10); in ParseVersion()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_report.cpp93 uptr n_objects = (uptr)internal_simple_strtoll(frame_descr, &p, 10); in ParseFrameDescription()
98 uptr beg = (uptr)internal_simple_strtoll(p, &p, 10); in ParseFrameDescription()
99 uptr size = (uptr)internal_simple_strtoll(p, &p, 10); in ParseFrameDescription()
100 uptr len = (uptr)internal_simple_strtoll(p, &p, 10); in ParseFrameDescription()
110 line = (uptr)internal_simple_strtoll(colon_pos + 1, nullptr, 10); in ParseFrameDescription()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_x86_64.cpp62 long long Tmp = internal_simple_strtoll(Line, &End, 10); in readValueFromFile()