_small             32 ext/standard/soundex.c 	size_t	i, _small, str_len, code, last;
_small             72 ext/standard/soundex.c 	for (i = 0, _small = 0; i < str_len && _small < 4; i++) {
_small             79 ext/standard/soundex.c 			if (_small == 0) {
_small             81 ext/standard/soundex.c 				soundex[_small++] = (char)code;
_small             91 ext/standard/soundex.c 						soundex[_small++] = (char)code;
_small             99 ext/standard/soundex.c 	while (_small < 4) {
_small            100 ext/standard/soundex.c 		soundex[_small++] = '0';
_small            102 ext/standard/soundex.c 	soundex[_small] = '\0';
_small            104 ext/standard/soundex.c 	RETURN_STRINGL(soundex, _small);