Home
last modified time | relevance | path

Searched refs:last_item (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/src/system_wrappers/test/map/
Dmap.cc85 MapItem* last_item = test_map.Last(); in main() local
86 FailTest(last_item == NULL); in main()
87 FailTest(GetStoredIntegerValue(last_item) != 9); in main()
92 FailTest(test_map.Next(last_item) != NULL); in main()
94 MapItem* second_to_last_item = test_map.Previous(last_item); in main()
107 last_item->SetItem(reinterpret_cast<void*>(&swapped_item)); in main()
108 FailTest(GetStoredIntegerValue(last_item) != in main()
/external/webrtc/src/system_wrappers/test/list/
Dlist.cc108 ListItem* last_item = test_list.Last(); in main() local
109 FailTest(last_item == NULL); in main()
113 FailTest(test_list.Next(last_item) != NULL); in main()
116 ListItem* second_to_last_item = test_list.Previous(last_item); in main()
121 FailTest(last_item->GetUnsignedItem() != in main()
123 FailTest(last_item->GetItem() != in main()
/external/mesa3d/src/gallium/drivers/r600/
Dcompute_memory_pool.c402 struct compute_memory_item *last_item; in compute_memory_alloc() local
405 for (last_item = pool->item_list; last_item->next; in compute_memory_alloc()
406 last_item = last_item->next); in compute_memory_alloc()
408 last_item->next = new_item; in compute_memory_alloc()
409 new_item->prev = last_item; in compute_memory_alloc()