Home
last modified time | relevance | path

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

/php-src/ext/soap/
H A Dphp_encoding.c2857 size_t buf_len=64, real_len; in to_xml_datetime_ex() local
2876 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { in to_xml_datetime_ex()
2896 real_len++; in to_xml_datetime_ex()
2898 real_len += 6; in to_xml_datetime_ex()
2900 if (real_len >= buf_len) { in to_xml_datetime_ex()
2901 buf = (char *) erealloc(buf, real_len+1); in to_xml_datetime_ex()
/php-src/ext/date/
H A Dphp_date.c1262 size_t buf_len = 256, real_len; in php_strftime() local
1327 …while ((real_len = strftime(ZSTR_VAL(buf), buf_len, ZSTR_VAL(format), &ta)) == buf_len || real_len in php_strftime()
1337 if (real_len > 0) { in php_strftime()
1338 real_len = strlen(buf->val); in php_strftime()
1347 if (real_len && real_len != buf_len) { in php_strftime()
1348 buf = zend_string_truncate(buf, real_len, 0); in php_strftime()
/php-src/ext/mbstring/
H A Dmbstring.c2312 size_t real_from, real_len; in PHP_FUNCTION() local
2346 real_len = MBFL_SUBSTR_UNTIL_END; in PHP_FUNCTION()
2348 real_len = (size_t) len; in PHP_FUNCTION()
2350 real_len = (mblen - real_from) + len; in PHP_FUNCTION()
2352 real_len = 0; in PHP_FUNCTION()
2355 RETVAL_STR(mb_get_substr(str, real_from, real_len, enc)); in PHP_FUNCTION()

Completed in 72 milliseconds