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