Lines Matching defs:data

66 static int	    antlr3EnumNext	    (pANTLR3_HASH_ENUM en, pANTLR3_HASH_KEY * key, void ** data);
110 static ANTLR3_BOOLEAN intTrieAdd (pANTLR3_INT_TRIE trie, ANTLR3_INTKEY key, ANTLR3_UINT32 type, ANTLR3_INTKEY intType, void * data, void (ANTLR3_CDECL *freeptr)(void *));
204 * keys and data (if the table exists)
227 /* Free any data pointer, this only happens if the user supplied
233 entry->free(entry->data);
392 /** Takes the element with the supplied key out of the list, and deletes the data
406 /* Call programmer supplied function to release this entry data
408 entry->free(entry->data);
409 entry->data = NULL;
416 /** Takes the element with the supplied key out of the list, and deletes the data
430 /* Call programmer supplied function to release this entry data
432 entry->free(entry->data);
433 entry->data = NULL;
467 /* Match was found, return the data pointer for this entry
469 return entry->data;
507 /* Match was found, return the data pointer for this entry
509 return entry->data;
576 entry->data = element; /* Install the data element supplied */
647 entry->data = element; /* Install the data element supplied */
720 * \param data Pointer to void pointer where the data pointer is returned.
729 antlr3EnumNext (pANTLR3_HASH_ENUM en, pANTLR3_HASH_KEY * key, void ** data)
744 *data = en->entry->data;
949 return entry->data;
1693 * that is set in an n byte value (n>0). Assuming the values will all hit the data cache,
1739 * we need to mask off singly. The data values will stay in
1905 * we add the supplied data in a new chained bucket to that data node. If it does
1910 * node pointing to itself or the data node we are inserting 'before'.
1913 intTrieAdd (pANTLR3_INT_TRIE trie, ANTLR3_INTKEY key, ANTLR3_UINT32 type, ANTLR3_INTKEY intVal, void * data, void (ANTLR3_CDECL *freeptr)(void *))
1981 newEnt->data.ptr = data;
1985 newEnt->data.intVal = intVal;
2138 newEnt->data.ptr = data;
2142 newEnt->data.intVal = intVal;
2228 thisEntry->freeptr(thisEntry->data.ptr);
2231 /* Now free the data for this bucket entry