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(word+w_idx, n)))
169 int w_idx = 0; /* point in the phonization we're at. */ in metaphone() local
198 for (; !isalpha(Curr_Letter); w_idx++) { in metaphone()
211 w_idx += 2; in metaphone()
216 w_idx++; in metaphone()
225 w_idx += 2; in metaphone()
234 w_idx += 2; in metaphone()
237 w_idx += 2; in metaphone()
244 w_idx++; in metaphone()
256 w_idx++; in metaphone()
268 w_idx++) { in metaphone()
464 w_idx += skip_letter; in metaphone()