Home | History | Annotate | Download | only in src

Lines Matching refs:nextEntry

201     pANTLR3_HASH_ENTRY	nextEntry;
225 nextEntry = entry->nextEntry;
246 entry = nextEntry; /* Load next pointer to see if we shoud free it */
308 (*nextPointer) = entry->nextEntry;
319 nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */
320 entry = entry->nextEntry; /* Address of the next element in the bucket (if any) */
365 (*nextPointer) = entry->nextEntry;
384 nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */
385 entry = entry->nextEntry; /* Address of the next element in the bucket (if any) */
471 entry = entry->nextEntry;
511 entry = entry->nextEntry;
563 newPointer = &((*newPointer)->nextEntry);
580 entry->nextEntry = NULL; /* Ensure that the forward pointer ends the chain */
634 newPointer = &((*newPointer)->nextEntry);
658 entry->nextEntry = NULL; /* Ensure that the forward pointer ends the chain */
776 if (en->entry->nextEntry != NULL)
781 en->entry = en->entry->nextEntry;
2193 pANTLR3_TRIE_ENTRY nextEntry;
2222 nextEntry = thisEntry->next;
2234 thisEntry = nextEntry; /* See if there are any more to free */