Lines Matching refs:w_idx
112 #define Next_Letter (toupper(word[w_idx+1]))
114 #define Curr_Letter (toupper(word[w_idx]))
116 #define Look_Back_Letter(n) (w_idx >= n ? toupper(word[w_idx-n]) : '\0')
120 #define After_Next_Letter (Next_Letter != '\0' ? toupper(word[w_idx+2]) \
122 #define Look_Ahead_Letter(n) (toupper(Lookahead((char *) word+w_idx, n)))
172 int w_idx = 0; /* point in the phonization we're at. */ in metaphone() local
201 for (; !isalpha(Curr_Letter); w_idx++) { in metaphone()
214 w_idx += 2; in metaphone()
219 w_idx++; in metaphone()
228 w_idx += 2; in metaphone()
237 w_idx += 2; in metaphone()
240 w_idx += 2; in metaphone()
247 w_idx++; in metaphone()
259 w_idx++; in metaphone()
271 w_idx++) { in metaphone()
467 w_idx += skip_letter; in metaphone()