Lines Matching refs:w_idx
105 #define Next_Letter (toupper(word[w_idx+1]))
107 #define Curr_Letter (toupper(word[w_idx]))
109 #define Look_Back_Letter(n) (w_idx >= n ? toupper(word[w_idx-n]) : '\0')
113 #define After_Next_Letter (Next_Letter != '\0' ? toupper(word[w_idx+2]) \
115 #define Look_Ahead_Letter(n) (toupper(Lookahead((char *) word+w_idx, n)))
164 int w_idx = 0; /* point in the phonization we're at. */ in metaphone() local
182 for (; !isalpha(Curr_Letter); w_idx++) { in metaphone()
195 w_idx += 2; in metaphone()
200 w_idx++; in metaphone()
209 w_idx += 2; in metaphone()
218 w_idx += 2; in metaphone()
221 w_idx += 2; in metaphone()
228 w_idx++; in metaphone()
240 w_idx++; in metaphone()
252 w_idx++) { in metaphone()
448 w_idx += skip_letter; in metaphone()