Searched refs:DictNode (Results 1 – 4 of 4) sorted by relevance
/reactos/dll/opengl/glu32/src/libtess/ |
H A D | dict.h | 42 #define DictNode DictListNode macro 62 typedef struct DictNode DictNode; typedef 74 DictNode *dictSearch( Dict *dict, DictKey key ); 75 DictNode *dictInsertBefore( Dict *dict, DictNode *node, DictKey key ); 76 void dictDelete( Dict *dict, DictNode *node ); 88 struct DictNode { struct 90 DictNode *next; argument 91 DictNode *prev; argument 95 DictNode head;
|
H A D | dict-list.h | 42 #define DictNode DictListNode macro 62 typedef struct DictNode DictNode; typedef 74 DictNode *dictSearch( Dict *dict, DictKey key ); 75 DictNode *dictInsertBefore( Dict *dict, DictNode *node, DictKey key ); 76 void dictDelete( Dict *dict, DictNode *node ); 88 struct DictNode { struct 90 DictNode *next; argument 91 DictNode *prev; argument 95 DictNode head;
|
H A D | dict.c | 44 DictNode *head; in dictNewDict() 63 DictNode *node, *next; in dictDeleteDict() 73 DictNode *dictInsertBefore( Dict *dict, DictNode *node, DictKey key ) in dictInsertBefore() 75 DictNode *newNode; in dictInsertBefore() 81 newNode = (DictNode *) memAlloc( sizeof( DictNode )); in dictInsertBefore() 94 void dictDelete( Dict *dict, DictNode *node ) /*ARGSUSED*/ in dictDelete() 102 DictNode *dictSearch( Dict *dict, DictKey key ) in dictSearch() 104 DictNode *node = &dict->head; in dictSearch()
|
H A D | sweep.h | 61 DictNode *nodeUp; /* dictionary node corresponding to eUp */
|