Home
last modified time | relevance | path

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

/PHP-7.4/ext/intl/grapheme/
H A Dgrapheme_string.c383 zend_long lstart = 0, length = 0; in PHP_FUNCTION() local
393 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|l!", &str, &str_len, &lstart, &length, &no_length) … in PHP_FUNCTION()
399 if ( OUTSIDE_STRING(lstart, str_len)) { in PHP_FUNCTION()
405 start = (int32_t) lstart; in PHP_FUNCTION()
782 zend_long lstart = 0; /* starting position in str in bytes */ in PHP_FUNCTION() local
791 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|llz", &str, &str_len, &size, &extract_type, &lstart in PHP_FUNCTION()
797 if (lstart < 0) { in PHP_FUNCTION()
798 lstart += str_len; in PHP_FUNCTION()
810 ZVAL_LONG(next, lstart); in PHP_FUNCTION()
820 if ( lstart > INT32_MAX || lstart < 0 || (size_t)lstart >= str_len ) { in PHP_FUNCTION()
[all …]

Completed in 5 milliseconds