Lines Matching refs:Vchtree_t
38 } Vchtree_t;
51 Vchtree_t *o = *((Vchtree_t**)one);
52 Vchtree_t *t = *((Vchtree_t**)two);
70 Vchtree_t *tree, **sort;
71 Vchtree_t *f, *s, *p, *list, *tail, *head;
73 if(!(tree = (Vchtree_t*)malloc(nsym*sizeof(Vchtree_t))) ||
74 !(sort = (Vchtree_t**)malloc(nsym*sizeof(Vchtree_t*))) )
83 f->next = f->link = NIL(Vchtree_t*);
111 vcqsort(sort, notz, sizeof(Vchtree_t*), huffcmp, 0);
112 for(f = sort[k = 0]; f != NIL(Vchtree_t*); f = f->next)
114 f->next = (k += 1) < notz ? sort[k] : NIL(Vchtree_t*);
118 for(head = tail = NIL(Vchtree_t*), list = sort[0];; )
141 tail->next = NIL(Vchtree_t*);
148 for(p = NIL(Vchtree_t*), f = head; f; p = f, f = f->next)
167 tail = NIL(Vchtree_t*);
170 { if((list = head)->next == NIL(Vchtree_t*) )
172 head = tail = NIL(Vchtree_t*);
177 for(s = NIL(Vchtree_t*), f = list->link; f != list; f = p)