Home
last modified time | relevance | path

Searched refs:DictNode (Results 1 – 4 of 4) sorted by relevance

/reactos/dll/opengl/glu32/src/libtess/
H A Ddict.h42 #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 Ddict-list.h42 #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 Ddict.c44 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 Dsweep.h61 DictNode *nodeUp; /* dictionary node corresponding to eUp */