Home | History | Annotate | Download | only in OrderedCollectionTest

Lines Matching refs:Entry

144   ORDERED_COLLECTION_ENTRY *Entry;

146 Entry = OrderedCollectionMin (Collection);
147 while (Entry != NULL) {
152 Next = OrderedCollectionNext (Entry);
153 OrderedCollectionDelete (Collection, Entry, &Ptr);
159 Entry = Next;
177 ORDERED_COLLECTION_ENTRY *Entry;
179 Entry = OrderedCollectionMax (Collection);
180 while (Entry != NULL) {
185 Prev = OrderedCollectionPrev (Entry);
186 OrderedCollectionDelete (Collection, Entry, &Ptr);
192 Entry = Prev;
207 ORDERED_COLLECTION_ENTRY *Entry;
209 for (Entry = OrderedCollectionMin (Collection); Entry != NULL;
210 Entry = OrderedCollectionNext (Entry)) {
213 UserStruct = OrderedCollectionUserStruct (Entry);
229 ORDERED_COLLECTION_ENTRY *Entry;
231 for (Entry = OrderedCollectionMax (Collection); Entry != NULL;
232 Entry = OrderedCollectionPrev (Entry)) {
235 UserStruct = OrderedCollectionUserStruct (Entry);
257 ORDERED_COLLECTION_ENTRY *Entry;
266 Status = OrderedCollectionInsert (Collection, &Entry, UserStruct);
275 UserStruct2 = OrderedCollectionUserStruct (Entry);
287 assert (OrderedCollectionUserStruct (Entry) == UserStruct);
311 ORDERED_COLLECTION_ENTRY *Entry;
315 Entry = OrderedCollectionFind (Collection, &StandaloneKey);
317 if (Entry == NULL) {
322 UserStruct = OrderedCollectionUserStruct (Entry);
343 ORDERED_COLLECTION_ENTRY *Entry;
348 Entry = OrderedCollectionFind (Collection, &StandaloneKey);
350 if (Entry == NULL) {
355 OrderedCollectionDelete (Collection, Entry, &Ptr);