Lines Matching refs:tfoo
169 coord foo[15], *tfoo; in enexto() local
172 tfoo = foo; in enexto()
177 tfoo->x = x; in enexto()
178 tfoo++->y = yy-range; in enexto()
179 if(tfoo == &foo[15]) goto foofull; in enexto()
183 tfoo->x = x; in enexto()
184 tfoo++->y = yy+range; in enexto()
185 if(tfoo == &foo[15]) goto foofull; in enexto()
189 tfoo->x = xx-range; in enexto()
190 tfoo++->y = y; in enexto()
191 if(tfoo == &foo[15]) goto foofull; in enexto()
195 tfoo->x = xx+range; in enexto()
196 tfoo++->y = y; in enexto()
197 if(tfoo == &foo[15]) goto foofull; in enexto()
200 } while(tfoo == foo); in enexto()
202 return( foo[rn2(tfoo-foo)] ); in enexto()