Home
last modified time | relevance | path

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

/PHP-8.3/ext/mbstring/
H A Dmbstring.c1631 zend_long split_len = 1; in PHP_FUNCTION() local
1636 Z_PARAM_LONG(split_len) in PHP_FUNCTION()
1640 if (split_len <= 0) { in PHP_FUNCTION()
1643 } else if (split_len > UINT_MAX / 4) { in PHP_FUNCTION()
1662 unsigned int chunks = ((ZSTR_LEN(str) / chunk_len) + split_len - 1) / split_len; /* round up */ in PHP_FUNCTION()
1672 array_init_size(return_value, (ZSTR_LEN(str) + split_len - 1) / split_len); in PHP_FUNCTION()
1687 array_init_size(return_value, (ZSTR_LEN(str) + split_len - 1) / split_len); in PHP_FUNCTION()
1702 if (out_len >= split_len - char_count) { in PHP_FUNCTION()
1706 i += split_len - char_count; in PHP_FUNCTION()
1722 if (out_len - i >= split_len) { in PHP_FUNCTION()
[all …]

Completed in 17 milliseconds