Lines Matching defs:wdp
140 struct wordent *wdp;
155 wdp = hp;
163 new = xmalloc(sizeof(*wdp));
165 new->prev = wdp;
167 wdp->next = new;
168 wdp = new;
169 wdp->word = word();
170 } while (wdp->word[0] != '\n');
171 hp->prev = wdp;
224 struct wordent *wdp;
226 wdp = hp;
231 new = xmalloc(sizeof(*wdp));
232 new->prev = wdp;
234 wdp->next = new;
235 wdp = new;
236 wdp->word = Strsave(fp->word);
238 } while (wdp->word[0] != '\n');
239 hp->prev = wdp;
869 struct wordent lexi, *hp, *wdp;
878 wdp = hp;
883 new->prev = wdp;
885 wdp->next = new;
886 wdp = new;
910 wdp->word = tword;
915 hp->prev = wdp;