Lines Matching refs:len
106 size_t len; in _strptime() local
222 len = strlen(_ctloc(day[i])); in _strptime()
223 if (strncasecmp(_ctloc(day[i]), bp, len) == 0) in _strptime()
227 len = strlen(_ctloc(abday[i])); in _strptime()
228 if (strncasecmp(_ctloc(abday[i]), bp, len) == 0) in _strptime()
237 bp += len; in _strptime()
247 len = strlen(_ctloc(mon[i])); in _strptime()
248 if (strncasecmp(_ctloc(mon[i]), bp, len) == 0) in _strptime()
252 len = strlen(_ctloc(abmon[i])); in _strptime()
253 if (strncasecmp(_ctloc(abmon[i]), bp, len) == 0) in _strptime()
262 bp += len; in _strptime()
329 len = strlen(_ctloc(am_pm[0])); in _strptime()
330 if (strncasecmp(_ctloc(am_pm[0]), bp, len) == 0) { in _strptime()
336 bp += len; in _strptime()
340 len = strlen(_ctloc(am_pm[1])); in _strptime()
341 if (strncasecmp(_ctloc(am_pm[1]), bp, len) == 0) { in _strptime()
347 bp += len; in _strptime()
654 unsigned int len; in _find_string() local
659 len = strlen(*n1); in _find_string()
660 if (strncasecmp(*n1, (const char *)bp, len) == 0) { in _find_string()
662 return bp + len; in _find_string()