Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dstring_util.cc184 const char* strStart = str.c_str(); in stoul() local
185 char* strEnd = const_cast<char*>(strStart); in stoul()
201 *pos = static_cast<size_t>(strEnd - strStart); in stoul()
211 const char* strStart = str.c_str(); in stoi() local
212 char* strEnd = const_cast<char*>(strStart); in stoi()
213 const long result = strtol(strStart, &strEnd, base); in stoi()
228 *pos = static_cast<size_t>(strEnd - strStart); in stoi()
238 const char* strStart = str.c_str(); in stod() local
239 char* strEnd = const_cast<char*>(strStart); in stod()
240 const double result = strtod(strStart, &strEnd); in stod()
[all …]
/netbsd/sys/lib/libunwind/
H A DDwarfParser.hpp233 pint_t strStart = p; in parseCIE() local
244 if (addressSpace.get8(strStart) == 'z') { in parseCIE()
247 for (pint_t s = strStart; addressSpace.get8(s) != '\0'; ++s) { in parseCIE()