Home
last modified time | relevance | path

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

/external/webrtc/src/system_wrappers/test/list/
Dlist.cc29 int GetStoredIntegerValue(ListItem* list_item) in GetStoredIntegerValue() argument
31 void* list_item_pointer = list_item->GetItem(); in GetStoredIntegerValue()
36 return static_cast<int>(list_item->GetUnsignedItem()); in GetStoredIntegerValue()
41 ListItem* list_item = list.First(); in PrintList() local
43 while (list_item != NULL) in PrintList()
45 int item_value = GetStoredIntegerValue(list_item); in PrintList()
48 list_item = list.Next(list_item); in PrintList()
/external/webrtc/src/system_wrappers/source/
Dlist_unittest.cc100 ListItem* list_item = list_wrapper->First(); in ClearList() local
101 while (list_item != NULL) { in ClearList()
102 EXPECT_EQ(list_wrapper->Erase(list_item), 0); in ClearList()
103 list_item = list_wrapper->First(); in ClearList()
299 ListItem* list_item = list->First(); in PrintList() local
301 while (list_item != NULL) in PrintList()
303 printf("%3u", list->GetUnsignedItem(list_item)); in PrintList()
304 list_item = list->Next(list_item); in PrintList()
/external/pcre/dist/
Dpcre_jit_compile.c2035 jump_list *list_item = sljit_alloc_memory(compiler, sizeof(jump_list)); in add_jump() local
2036 if (list_item) in add_jump()
2038 list_item->next = *list; in add_jump()
2039 list_item->jump = jump; in add_jump()
2040 *list = list_item; in add_jump()
2047 stub_list* list_item = sljit_alloc_memory(compiler, sizeof(stub_list)); in add_stub() local
2049 if (list_item) in add_stub()
2051 list_item->start = start; in add_stub()
2052 list_item->quit = LABEL(); in add_stub()
2053 list_item->next = common->stubs; in add_stub()
[all …]