HomeSort by: relevance | last modified time | path
    Searched refs:strStart (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
string_util.cc 184 const char* strStart = str.c_str();
185 char* strEnd = const_cast<char*>(strStart);
186 const unsigned long result = strtoul(strStart, &strEnd, base);
196 } else if (strEnd == strStart || strtoulErrno != 0) {
201 *pos = static_cast<size_t>(strEnd - strStart);
211 const char* strStart = str.c_str();
212 char* strEnd = const_cast<char*>(strStart);
213 const long result = strtol(strStart, &strEnd, base);
223 } else if (strEnd == strStart || strtolErrno != 0) {
228 *pos = static_cast<size_t>(strEnd - strStart);
    [all...]
  /src/sys/lib/libunwind/
DwarfParser.hpp 233 pint_t strStart = p;
244 if (addressSpace.get8(strStart) == 'z') {
247 for (pint_t s = strStart; addressSpace.get8(s) != '\0'; ++s) {

Completed in 19 milliseconds