Lines Matching refs:ret
53 char *ret = const_cast<char *> (s); in strptime() local
58 ret = ::strptime(ret, f, ptm); in strptime()
71 ret = ::strptime(ret, f, ptm); in strptime()
72 if (!ret) { in strptime()
77 while (isdigit(*ret)) { in strptime()
78 tv_sec = tv_sec * 10 + *ret - '0'; in strptime()
79 ++ret; in strptime()
100 ret = ::strptime(ret, f, ptm); in strptime()
101 if (!ret) { in strptime()
110 while (isdigit(*ret) && num && (mul > 1)) { in strptime()
113 tv_nsec = tv_nsec + (*ret - '0') * mul; in strptime()
114 ++ret; in strptime()
121 if (ret) { in strptime()
123 return ret; in strptime()
134 return ret; in strptime()