w_idx             112 ext/standard/metaphone.c #define Next_Letter (toupper(word[w_idx+1]))
w_idx             114 ext/standard/metaphone.c #define Curr_Letter (toupper(word[w_idx]))
w_idx             116 ext/standard/metaphone.c #define Look_Back_Letter(n)	(w_idx >= n ? toupper(word[w_idx-n]) : '\0')
w_idx             120 ext/standard/metaphone.c #define After_Next_Letter	(Next_Letter != '\0' ? toupper(word[w_idx+2]) \
w_idx             122 ext/standard/metaphone.c #define Look_Ahead_Letter(n) (toupper(Lookahead(word+w_idx, n)))
w_idx             169 ext/standard/metaphone.c 	int w_idx = 0;				/* point in the phonization we're at. */
w_idx             198 ext/standard/metaphone.c 	for (; !isalpha(Curr_Letter); w_idx++) {
w_idx             211 ext/standard/metaphone.c 			w_idx += 2;
w_idx             216 ext/standard/metaphone.c 			w_idx++;
w_idx             225 ext/standard/metaphone.c 			w_idx += 2;
w_idx             234 ext/standard/metaphone.c 			w_idx += 2;
w_idx             237 ext/standard/metaphone.c 			w_idx += 2;
w_idx             244 ext/standard/metaphone.c 		w_idx++;
w_idx             256 ext/standard/metaphone.c 		w_idx++;
w_idx             268 ext/standard/metaphone.c 		 w_idx++) {
w_idx             464 ext/standard/metaphone.c 		w_idx += skip_letter;