Home
last modified time | relevance | path

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

/PHP-8.2/ext/standard/
H A Dsoundex.c28 size_t i, _small, str_len, code, last; in PHP_FUNCTION() local
65 for (i = 0, _small = 0; i < str_len && _small < 4; i++) { in PHP_FUNCTION()
72 if (_small == 0) { in PHP_FUNCTION()
74 soundex[_small++] = (char)code; in PHP_FUNCTION()
84 soundex[_small++] = (char)code; in PHP_FUNCTION()
92 while (_small < 4) { in PHP_FUNCTION()
93 soundex[_small++] = '0'; in PHP_FUNCTION()
95 soundex[_small] = '\0'; in PHP_FUNCTION()
97 RETURN_STRINGL(soundex, _small); in PHP_FUNCTION()

Completed in 3 milliseconds