Home
last modified time | relevance | path

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

/PHP-5.3/ext/soap/
H A Dphp_encoding.c3011 size_t buf_len=64, real_len; in to_xml_datetime_ex() local
3030 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { in to_xml_datetime_ex()
3048 real_len++; in to_xml_datetime_ex()
3050 real_len += 6; in to_xml_datetime_ex()
3052 if (real_len >= buf_len) { in to_xml_datetime_ex()
3053 buf = (char *) erealloc(buf, real_len+1); in to_xml_datetime_ex()
/PHP-5.3/ext/date/
H A Dphp_date.c1610 size_t buf_len = 64, real_len; in php_strftime() local
1664 while ((real_len=strftime(buf, buf_len, format, &ta))==buf_len || real_len==0) { in php_strftime()
1677 if (real_len && real_len != buf_len) { in php_strftime()
1678 buf = (char *) erealloc(buf, real_len + 1); in php_strftime()
1679 RETURN_STRINGL(buf, real_len, 0); in php_strftime()

Completed in 24 milliseconds