Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dsoundex.c26 size_t i, _small, str_len, code, last; in PHP_FUNCTION() local
63 for (i = 0, _small = 0; i < str_len && _small < 4; i++) { in PHP_FUNCTION()
70 if (_small == 0) { in PHP_FUNCTION()
72 soundex[_small++] = (char)code; in PHP_FUNCTION()
82 soundex[_small++] = (char)code; in PHP_FUNCTION()
90 while (_small < 4) { in PHP_FUNCTION()
91 soundex[_small++] = '0'; in PHP_FUNCTION()
93 soundex[_small] = '\0'; in PHP_FUNCTION()
95 RETURN_STRINGL(soundex, _small); in PHP_FUNCTION()

Completed in 4 milliseconds