newtable          106 src/hashtable.c     struct entry **newtable;
newtable          114 src/hashtable.c     newtable = (struct entry **)ftdm_malloc(sizeof(struct entry*) * newsize);
newtable          115 src/hashtable.c     if (NULL != newtable)
newtable          117 src/hashtable.c 			memset(newtable, 0, newsize * sizeof(struct entry *));
newtable          124 src/hashtable.c 					e->next = newtable[index];
newtable          125 src/hashtable.c 					newtable[index] = e;
newtable          129 src/hashtable.c 			h->table = newtable;
newtable          134 src/hashtable.c 			newtable = (struct entry **)
newtable          136 src/hashtable.c 			if (NULL == newtable) { (h->primeindex)--; return 0; }
newtable          137 src/hashtable.c 			h->table = newtable;
newtable          138 src/hashtable.c 			memset(newtable[h->tablelength], 0, newsize - h->tablelength);
newtable          140 src/hashtable.c 				for (pE = &(newtable[i]), e = *pE; e != NULL; e = *pE) {
newtable          149 src/hashtable.c 							e->next = newtable[index];
newtable          150 src/hashtable.c 							newtable[index] = e;