Lines Matching refs:len

60 	int	i, len, recurse = 0;  in __strptime()  local
106 len = 2; in __strptime()
107 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
110 len--; in __strptime()
182 len = 3; in __strptime()
183 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
186 len--; in __strptime()
202 len = 2; in __strptime()
203 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
206 len--; in __strptime()
236 len = 2; in __strptime()
237 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
240 len--; in __strptime()
257 len = strlen(tptr->am); in __strptime()
258 if (strncasecmp(buf, tptr->am, len) == 0) { in __strptime()
263 buf += len; in __strptime()
267 len = strlen(tptr->pm); in __strptime()
268 if (strncasecmp(buf, tptr->pm, len) == 0) { in __strptime()
273 buf += len; in __strptime()
282 len = strlen(tptr->weekday[i]); in __strptime()
283 if (strncasecmp(buf, tptr->weekday[i], len) == in __strptime()
286 len = strlen(tptr->wday[i]); in __strptime()
287 if (strncasecmp(buf, tptr->wday[i], len) == 0) in __strptime()
294 buf += len; in __strptime()
308 len = 2; in __strptime()
309 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
312 len--; in __strptime()
350 len = 2; in __strptime()
351 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
354 len--; in __strptime()
367 len = strlen(tptr->month[i]); in __strptime()
368 if (strncasecmp(buf, tptr->month[i], len) == 0) in __strptime()
377 len = strlen(tptr->mon[i]); in __strptime()
379 len) == 0) in __strptime()
387 buf += len; in __strptime()
394 len = 2; in __strptime()
395 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
398 len--; in __strptime()
435 len = (c == 'Y') ? 4 : 2; in __strptime()
436 for (i = 0; len && isdigit(*buf); buf++) { in __strptime()
439 len--; in __strptime()
490 for (len = 4; len > 0; len--) { in __strptime()