Lines Matching refs:hash
86 register int hash; in control() local
98 hash = (token[1] == EOS) ? L_nogood : (token[0] + (token[2] << 1)); in control()
99 switch (hash) { in control()
117 default: hash = L_nogood; in control()
121 hash = L_nogood; in control()
129 switch (hash) { in control()
153 if (counter > 0 && (hash == L_line || hash == L_pragma)) { in control()
157 switch (hash) { in control()
238 doif(hash); in control()
298 if (hash != L_include) { in control()
317 void doif(int hash) in doif() argument
334 if (hash == L_if) { in doif()
337 hash = L_ifdef; /* #if is now like #ifdef */ in doif()
344 if (found == (hash == L_ifdef)) { in doif()