Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dstring_util.cc185 char* strEnd = const_cast<char*>(strStart); in stoul() local
196 } else if (strEnd == strStart || strtoulErrno != 0) { in stoul()
201 *pos = static_cast<size_t>(strEnd - strStart); in stoul()
212 char* strEnd = const_cast<char*>(strStart); in stoi() local
213 const long result = strtol(strStart, &strEnd, base); in stoi()
223 } else if (strEnd == strStart || strtolErrno != 0) { in stoi()
228 *pos = static_cast<size_t>(strEnd - strStart); in stoi()
239 char* strEnd = const_cast<char*>(strStart); in stod() local
240 const double result = strtod(strStart, &strEnd); in stod()
250 } else if (strEnd == strStart || strtodErrno != 0) { in stod()
[all …]
/netbsd/external/apache2/mDNSResponder/dist/Clients/
H A Ddnssdutil.c6111 const char * const strEnd = strPtr + strlen( strPtr ); in RecordDataFromArgString() local
6113 while( strPtr < strEnd ) in RecordDataFromArgString()
6118 err = ParseEscapedString( strPtr, strEnd, ',', (char *) &kvBuf[ 1 ], sizeof( kvBuf ) - 1, in RecordDataFromArgString()