Home
last modified time | relevance | path

Searched refs:strEnd (Results 1 - 1 of 1) sorted by relevance

/third_party/benchmark/src/
H A Dstring_util.cc181 char* strEnd = const_cast<char*>(strStart); in stoul() local
182 const unsigned long result = strtoul(strStart, &strEnd, base); in stoul()
192 } else if (strEnd == strStart || strtoulErrno != 0) { in stoul()
196 *pos = static_cast<size_t>(strEnd - strStart); in stoul()
207 char* strEnd = const_cast<char*>(strStart); in stoi() local
208 const long result = strtol(strStart, &strEnd, base); in stoi()
218 } else if (strEnd == strStart || strtolErrno != 0) { in stoi()
222 *pos = static_cast<size_t>(strEnd - strStart); in stoi()
233 char* strEnd = const_cast<char*>(strStart); in stod() local
234 const double result = strtod(strStart, &strEnd); in stod()
[all...]

Completed in 2 milliseconds