Home
last modified time | relevance | path

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

/PHP-7.4/ext/zip/
H A Dphp_zip.c1701 size_t real_len = strlen(remove_path); local
1702 …if ((real_len > 1) && ((remove_path[real_len - 1] == '/') || (remove_path[real_len - 1] == '\\')))…
1703 remove_path = estrndup(remove_path, real_len - 1);
/PHP-7.4/ext/date/
H A Dphp_date.c1670 size_t buf_len = 256, real_len; in php_strftime() local
1730 …while ((real_len = strftime(ZSTR_VAL(buf), buf_len, ZSTR_VAL(format), &ta)) == buf_len || real_len in php_strftime()
1740 if (real_len > 0) { in php_strftime()
1741 real_len = strlen(buf->val); in php_strftime()
1750 if (real_len && real_len != buf_len) { in php_strftime()
1751 buf = zend_string_truncate(buf, real_len, 0); in php_strftime()
/PHP-7.4/ext/soap/
H A Dphp_encoding.c2840 size_t buf_len=64, real_len; in to_xml_datetime_ex() local
2859 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { in to_xml_datetime_ex()
2879 real_len++; in to_xml_datetime_ex()
2881 real_len += 6; in to_xml_datetime_ex()
2883 if (real_len >= buf_len) { in to_xml_datetime_ex()
2884 buf = (char *) erealloc(buf, real_len+1); in to_xml_datetime_ex()
/PHP-7.4/ext/mbstring/
H A Dmbstring.c2936 size_t mblen, real_from, real_len; in PHP_FUNCTION() local
2975 real_len = MBFL_SUBSTR_UNTIL_END; in PHP_FUNCTION()
2977 real_len = (size_t) len; in PHP_FUNCTION()
2979 real_len = (mblen - real_from) + len; in PHP_FUNCTION()
2981 real_len = 0; in PHP_FUNCTION()
2989 ret = mbfl_substr(&string, &result, real_from, real_len); in PHP_FUNCTION()

Completed in 47 milliseconds