Lines Matching refs:nodeTable
73 static NodePtr *nodeTable;
133 table = realloc(nodeTable, tableLength * (2 * sizeof(NodePtr)));
143 nodeTable = table;
149 nodeTable[lastAtom] = nd;
167 if ((node = nodeTable[atom]) == NULL) return 0;
201 free(nodeTable);
202 nodeTable = NULL;
211 nodeTable = malloc(InitialTableSize * sizeof(NodePtr));
212 if (!nodeTable)
214 nodeTable[None] = NULL;