Home
last modified time | relevance | path

Searched refs:pop_front (Results 1 – 7 of 7) sorted by relevance

/bionic/linker/tests/
Dlinker_sleb128_test.cpp96 EXPECT_EQ(624485U, decoder.pop_front()); in TEST()
98 EXPECT_EQ(0U, decoder.pop_front()); in TEST()
99 EXPECT_EQ(1U, decoder.pop_front()); in TEST()
100 EXPECT_EQ(63U, decoder.pop_front()); in TEST()
101 EXPECT_EQ(64U, decoder.pop_front()); in TEST()
102 EXPECT_EQ(static_cast<size_t>(-1), decoder.pop_front()); in TEST()
103 EXPECT_EQ(static_cast<size_t>(-624485), decoder.pop_front()); in TEST()
104 EXPECT_EQ(2147483647U, decoder.pop_front()); in TEST()
105 EXPECT_EQ(static_cast<size_t>(-2147483648), decoder.pop_front()); in TEST()
107 EXPECT_EQ(9223372036854775807ULL, decoder.pop_front()); in TEST()
[all …]
Dlinked_list_test.cpp118 ASSERT_STREQ("a", list.pop_front()); in TEST()
120 ASSERT_STREQ("b", list.pop_front()); in TEST()
122 ASSERT_STREQ("c", list.pop_front()); in TEST()
124 ASSERT_TRUE(list.pop_front() == nullptr); in TEST()
127 ASSERT_STREQ("r", list.pop_front()); in TEST()
128 ASSERT_TRUE(list.pop_front() == nullptr); in TEST()
142 ASSERT_STREQ("a", list.pop_front()); in TEST()
144 ASSERT_STREQ("d", list.pop_front()); in TEST()
145 ASSERT_TRUE(list.pop_front() == nullptr); in TEST()
/bionic/linker/
Dlinker_reloc_iterators.h78 relocation_count_ = decoder_.pop_front(); in packed_reloc_iterator()
79 reloc_.r_offset = decoder_.pop_front(); in packed_reloc_iterator()
102 reloc_.r_offset += decoder_.pop_front(); in next()
106 reloc_.r_info = decoder_.pop_front(); in next()
112 reloc_.r_addend += decoder_.pop_front(); in next()
123 group_size_ = decoder_.pop_front(); in read_group_fields()
124 group_flags_ = decoder_.pop_front(); in read_group_fields()
127 group_r_offset_delta_ = decoder_.pop_front(); in read_group_fields()
131 reloc_.r_info = decoder_.pop_front(); in read_group_fields()
141 reloc_.r_addend += decoder_.pop_front(); in read_group_fields()
Dlinker_sleb128.h46 size_t pop_front() { in pop_front() function
Dlinked_list.h116 T* pop_front() { in pop_front() function
Dlinker.cpp721 while ((si = visit_list.pop_front()) != nullptr) { in walk_dependencies_tree()
1798 while ((si = unload_list.pop_front()) != nullptr) { in soinfo_unload()
1807 while ((child = si->get_children().pop_front()) != nullptr) { in soinfo_unload()
1858 while ((si = local_unload_list.pop_front()) != nullptr) { in soinfo_unload()
1864 while ((si = external_unload_list.pop_front()) != nullptr) { in soinfo_unload()
/bionic/libc/malloc_debug/tests/
Dbacktrace_fake.cpp51 g_fake_backtrace.pop_front(); in backtrace_get()