Home
last modified time | relevance | path

Searched refs:strStart (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/third-party/benchmark/src/
H A Dstring_util.cc191 const char* strStart = str.c_str(); in stoul() local
192 char* strEnd = const_cast<char*>(strStart); in stoul()
207 *pos = static_cast<size_t>(strEnd - strStart); in stoul()
217 const char* strStart = str.c_str(); in stoi() local
218 char* strEnd = const_cast<char*>(strStart); in stoi()
219 const long result = strtol(strStart, &strEnd, base); in stoi()
233 *pos = static_cast<size_t>(strEnd - strStart); in stoi()
243 const char* strStart = str.c_str(); in stod() local
244 char* strEnd = const_cast<char*>(strStart); in stod()
245 const double result = strtod(strStart, &strEnd); in stod()
[all …]
/llvm-project-15.0.7/libunwind/src/
H A DDwarfParser.hpp352 pint_t strStart = p; in parseCIE() local
367 if (addressSpace.get8(strStart) == 'z') { in parseCIE()
370 for (pint_t s = strStart; addressSpace.get8(s) != '\0'; ++s) { in parseCIE()