Searched refs:real_len (Results 1 – 3 of 3) sorted by relevance
/php-src/ext/soap/ |
H A D | php_encoding.c | 2922 size_t buf_len=64, real_len; in to_xml_datetime_ex() local 2941 while ((real_len = strftime(buf, buf_len, format, ta)) == buf_len || real_len == 0) { in to_xml_datetime_ex() 2961 real_len++; in to_xml_datetime_ex() 2963 real_len += 6; in to_xml_datetime_ex() 2965 if (real_len >= buf_len) { in to_xml_datetime_ex() 2966 buf = (char *) erealloc(buf, real_len+1); in to_xml_datetime_ex()
|
/php-src/ext/date/ |
H A D | php_date.c | 1266 size_t buf_len = 256, real_len; in php_strftime() local 1331 …while ((real_len = strftime(ZSTR_VAL(buf), buf_len, ZSTR_VAL(format), &ta)) == buf_len || real_len… in php_strftime() 1341 if (real_len > 0) { in php_strftime() 1342 real_len = strlen(buf->val); in php_strftime() 1351 if (real_len && real_len != buf_len) { in php_strftime() 1352 buf = zend_string_truncate(buf, real_len, 0); in php_strftime()
|
/php-src/ext/mbstring/ |
H A D | mbstring.c | 2318 size_t real_from, real_len; in PHP_FUNCTION() local 2362 real_len = MBFL_SUBSTR_UNTIL_END; in PHP_FUNCTION() 2364 real_len = (size_t) len; in PHP_FUNCTION() 2366 real_len = (mblen - real_from) + len; in PHP_FUNCTION() 2368 real_len = 0; in PHP_FUNCTION() 2371 RETVAL_STR(mb_get_substr(str, real_from, real_len, enc)); in PHP_FUNCTION()
|
Completed in 42 milliseconds