w_idx 110 ext/standard/metaphone.c #define Next_Letter (toupper(word[w_idx+1])) w_idx 112 ext/standard/metaphone.c #define Curr_Letter (toupper(word[w_idx])) w_idx 114 ext/standard/metaphone.c #define Look_Back_Letter(n) (w_idx >= n ? toupper(word[w_idx-n]) : '\0') w_idx 118 ext/standard/metaphone.c #define After_Next_Letter (Next_Letter != '\0' ? toupper(word[w_idx+2]) \ w_idx 120 ext/standard/metaphone.c #define Look_Ahead_Letter(n) (toupper(Lookahead((char *) word+w_idx, n))) w_idx 170 ext/standard/metaphone.c int w_idx = 0; /* point in the phonization we're at. */ w_idx 199 ext/standard/metaphone.c for (; !isalpha(Curr_Letter); w_idx++) { w_idx 212 ext/standard/metaphone.c w_idx += 2; w_idx 217 ext/standard/metaphone.c w_idx++; w_idx 226 ext/standard/metaphone.c w_idx += 2; w_idx 235 ext/standard/metaphone.c w_idx += 2; w_idx 238 ext/standard/metaphone.c w_idx += 2; w_idx 245 ext/standard/metaphone.c w_idx++; w_idx 257 ext/standard/metaphone.c w_idx++; w_idx 269 ext/standard/metaphone.c w_idx++) { w_idx 465 ext/standard/metaphone.c w_idx += skip_letter;