Searched refs:lstart (Results 1 – 1 of 1) sorted by relevance
/PHP-8.3/ext/intl/grapheme/ |
H A D | grapheme_string.c | 320 zend_long lstart = 0, length = 0; in PHP_FUNCTION() local 330 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|l!", &str, &str_len, &lstart, &length, &no_length) … in PHP_FUNCTION() 334 if (lstart < INT32_MIN || lstart > INT32_MAX) { in PHP_FUNCTION() 339 start = (int32_t) lstart; in PHP_FUNCTION() 696 zend_long lstart = 0; /* starting position in str in bytes */ in PHP_FUNCTION() local 705 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|llz", &str, &str_len, &size, &extract_type, &lstart… in PHP_FUNCTION() 709 if (lstart < 0) { in PHP_FUNCTION() 710 lstart += str_len; in PHP_FUNCTION() 722 ZVAL_LONG(next, lstart); in PHP_FUNCTION() 731 if ( lstart > INT32_MAX || lstart < 0 || (size_t)lstart >= str_len ) { in PHP_FUNCTION() [all …]
|
Completed in 6 milliseconds