Searched refs:lstart (Results 1 – 1 of 1) sorted by relevance
/PHP-8.1/ext/intl/grapheme/ |
H A D | grapheme_string.c | 338 zend_long lstart = 0, length = 0; in PHP_FUNCTION() local 348 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|l!", &str, &str_len, &lstart, &length, &no_length) … in PHP_FUNCTION() 352 if (lstart < INT32_MIN || lstart > INT32_MAX) { in PHP_FUNCTION() 357 start = (int32_t) lstart; in PHP_FUNCTION() 714 zend_long lstart = 0; /* starting position in str in bytes */ in PHP_FUNCTION() local 723 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|llz", &str, &str_len, &size, &extract_type, &lstart… in PHP_FUNCTION() 727 if (lstart < 0) { in PHP_FUNCTION() 728 lstart += str_len; in PHP_FUNCTION() 740 ZVAL_LONG(next, lstart); in PHP_FUNCTION() 749 if ( lstart > INT32_MAX || lstart < 0 || (size_t)lstart >= str_len ) { in PHP_FUNCTION() [all …]
|
Completed in 7 milliseconds