Home
last modified time | relevance | path

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

/PHP-5.4/ext/soap/
H A Dphp_encoding.c2996 size_t buf_len=64, real_len; in to_xml_datetime_ex() local
3015 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { in to_xml_datetime_ex()
3033 real_len++; in to_xml_datetime_ex()
3035 real_len += 6; in to_xml_datetime_ex()
3037 if (real_len >= buf_len) { in to_xml_datetime_ex()
3038 buf = (char *) erealloc(buf, real_len+1); in to_xml_datetime_ex()
/PHP-5.4/ext/date/
H A Dphp_date.c1589 size_t buf_len = 64, real_len; in php_strftime() local
1643 while ((real_len=strftime(buf, buf_len, format, &ta))==buf_len || real_len==0) { in php_strftime()
1656 if (real_len && real_len != buf_len) { in php_strftime()
1657 buf = (char *) erealloc(buf, real_len + 1); in php_strftime()
1658 RETURN_STRINGL(buf, real_len, 0); in php_strftime()

Completed in 24 milliseconds