Lines Matching refs:len
117 size_t len = 0; in _strptime() local
225 len = strlen(_ctloc(day[i])); in _strptime()
226 if (strncasecmp(_ctloc(day[i]), (const char*)bp, len) == 0) in _strptime()
230 len = strlen(_ctloc(abday[i])); in _strptime()
231 if (strncasecmp(_ctloc(abday[i]), (const char*)bp, len) == 0) in _strptime()
240 bp += len; in _strptime()
249 len = strlen(_ctloc(mon[i])); in _strptime()
250 if (strncasecmp(_ctloc(mon[i]), (const char*)bp, len) == 0) in _strptime()
254 len = strlen(_ctloc(abmon[i])); in _strptime()
255 if (strncasecmp(_ctloc(abmon[i]), (const char*)bp, len) == 0) in _strptime()
264 bp += len; in _strptime()
324 len = strlen(_ctloc(am_pm[0])); in _strptime()
325 if (strncasecmp(_ctloc(am_pm[0]), (const char*)bp, len) == 0) { in _strptime()
331 bp += len; in _strptime()
335 len = strlen(_ctloc(am_pm[1])); in _strptime()
336 if (strncasecmp(_ctloc(am_pm[1]), (const char*)bp, len) == 0) { in _strptime()
342 bp += len; in _strptime()