Home
last modified time | relevance | path

Searched refs:m_size (Results 1 – 25 of 121) sorted by relevance

12345

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp48 for (size_type i = 0; i < m_size; ++i) in clear()
63 m_size = 0; in clear()
91 erase_at(m_a_entries, m_size - 1, s_no_throw_copies_ind); in pop()
93 _GLIBCXX_DEBUG_ASSERT(m_size > 0); in pop()
94 --m_size; in pop()
111 _GLIBCXX_DEBUG_ASSERT(m_size >= left); in erase_if()
112 const size_type ersd = m_size - left; in erase_if()
113 for (size_type i = left; i < m_size; ++i) in erase_if()
130 m_size = left; in erase_if()
145 std::swap(*it.m_p_e, m_a_entries[m_size - 1]); in erase()
[all …]
H A Dsplit_join_fn_imps.hpp56 _GLIBCXX_DEBUG_ASSERT(m_size >= left); in split()
58 const size_type ersd = m_size - left; in split()
59 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd); in split()
83 for (size_type i = 0; i < other.m_size; ++i) in split()
88 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries); in split()
96 m_size = left; in split()
97 other.m_size = ersd; in split()
120 const size_type len = m_size + other.m_size; in join()
142 std::copy(m_a_entries, m_a_entries + m_size, a_entries); in join()
143 std::copy(other.m_a_entries, other.m_a_entries + other.m_size, in join()
[all …]
H A Dinsert_fn_imps.hpp61 m_a_entries[m_size++] = val; in insert_value()
74 m_a_entries[m_size++] = p_new; in insert_value()
82 if (!resize_policy::resize_needed_for_grow(m_size)) in resize_for_insert_if_needed()
84 _GLIBCXX_DEBUG_ASSERT(m_size < m_actual_size); in resize_for_insert_if_needed()
92 std::copy(m_a_entries, m_a_entries + m_size, new_entries); in resize_for_insert_if_needed()
131 while (i < m_size) in fix()
137 const bool smaller_than_lchild = lchild_i < m_size && in fix()
140 const bool smaller_than_rchild = rchild_i < m_size && in fix()
158 i = m_size; in fix()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp48 for (size_type i = 0; i < m_size; ++i) in clear()
63 m_size = 0; in clear()
91 erase_at(m_a_entries, m_size - 1, s_no_throw_copies_ind); in pop()
93 _GLIBCXX_DEBUG_ASSERT(m_size > 0); in pop()
94 --m_size; in pop()
111 _GLIBCXX_DEBUG_ASSERT(m_size >= left); in erase_if()
112 const size_type ersd = m_size - left; in erase_if()
113 for (size_type i = left; i < m_size; ++i) in erase_if()
130 m_size = left; in erase_if()
145 std::swap(*it.m_p_e, m_a_entries[m_size - 1]); in erase()
[all …]
H A Dsplit_join_fn_imps.hpp56 _GLIBCXX_DEBUG_ASSERT(m_size >= left); in split()
58 const size_type ersd = m_size - left; in split()
59 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd); in split()
83 for (size_type i = 0; i < other.m_size; ++i) in split()
88 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries); in split()
96 m_size = left; in split()
97 other.m_size = ersd; in split()
120 const size_type len = m_size + other.m_size; in join()
142 std::copy(m_a_entries, m_a_entries + m_size, a_entries); in join()
143 std::copy(other.m_a_entries, other.m_a_entries + other.m_size, in join()
[all …]
H A Dinsert_fn_imps.hpp61 m_a_entries[m_size++] = val; in insert_value()
74 m_a_entries[m_size++] = p_new; in insert_value()
82 if (!resize_policy::resize_needed_for_grow(m_size)) in resize_for_insert_if_needed()
84 _GLIBCXX_DEBUG_ASSERT(m_size < m_actual_size); in resize_for_insert_if_needed()
92 std::copy(m_a_entries, m_a_entries + m_size, new_entries); in resize_for_insert_if_needed()
131 while (i < m_size) in fix()
137 const bool smaller_than_lchild = lchild_i < m_size && in fix()
140 const bool smaller_than_rchild = rchild_i < m_size && in fix()
158 i = m_size; in fix()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/
H A Dvarray.hpp223 : m_size(0) in varray()
241 : m_size(0) in varray()
262 : m_size(0) in varray()
286 : m_size(0) in varray()
303 : m_size(other.size()) in varray()
325 : m_size(other.size()) in varray()
412 : m_size(other.m_size) in varray()
563 if ( count < m_size ) in resize()
573 m_size = count; // update end in resize()
594 if ( count < m_size ) in resize()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/ov_tree_map_/
H A Derase_fn_imps.hpp49 if (m_size == 0) in clear()
56 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size); in clear()
61 m_size = 0; in clear()
75 typename _Alloc::group_adjustor adjust(m_size); in erase_if()
113 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size); in erase_if()
117 m_size = new_size; in erase_if()
137 typename _Alloc::group_adjustor adjust(m_size); in erase_imp()
140 _GLIBCXX_DEBUG_ASSERT(m_size > 0); in erase_imp()
141 value_vector a_values = s_value_alloc.allocate(m_size - 1); in erase_imp()
147 cond_dtor<size_type> cd(a_values, target_it, m_size - 1); in erase_imp()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/ov_tree_map_/
H A Derase_fn_imps.hpp49 if (m_size == 0) in clear()
56 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size); in clear()
61 m_size = 0; in clear()
75 typename _Alloc::group_adjustor adjust(m_size); in erase_if()
113 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size); in erase_if()
117 m_size = new_size; in erase_if()
137 typename _Alloc::group_adjustor adjust(m_size); in erase_imp()
140 _GLIBCXX_DEBUG_ASSERT(m_size > 0); in erase_imp()
141 value_vector a_values = s_value_alloc.allocate(m_size - 1); in erase_imp()
147 cond_dtor<size_type> cd(a_values, target_it, m_size - 1); in erase_imp()
[all …]
H A Dconstructors_destructor_fn_imps.hpp57 m_size(0) in PB_DS_OV_TREE_NAME()
67 m_size(0) in PB_DS_OV_TREE_NAME()
78 m_size(0) in PB_DS_OV_TREE_NAME()
92 m_size(0) in PB_DS_OV_TREE_NAME()
145 m_size = len; in copy_from_ordered_range()
146 m_end_it = m_a_values + m_size; in copy_from_ordered_range()
193 m_size = len; in copy_from_ordered_range()
194 m_end_it = m_a_values + m_size; in copy_from_ordered_range()
227 std::swap(m_size, other.m_size); in value_swap()
236 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size); in ~PB_DS_OV_TREE_NAME()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/iterators/
H A Dclosing_iterator.hpp52 , m_size(static_cast<difference_type>(boost::size(range))) in closing_iterator()
61 , m_size(static_cast<difference_type>(boost::size(range))) in closing_iterator()
62 , m_index((m_size == 0) ? 0 : m_size + 1) in closing_iterator()
68 , m_size(0) in closing_iterator()
93 if (++m_index < m_size) in increment()
105 if (m_index-- < m_size) in decrement()
117 if (m_index < m_size && m_index + n < m_size) in advance()
131 this->m_iterator = m_index <= m_size in update_iterator()
132 ? boost::begin(*m_range) + (m_index % m_size) in update_iterator()
140 difference_type m_size; member
H A Dever_circling_iterator.hpp111 , m_size(boost::size(range)) in ever_circling_range_iterator()
118 , m_size(0) in ever_circling_range_iterator()
146 if (m_index >= 0 && m_index < m_size) in increment()
159 if (m_index >= 0 && m_index < m_size) in decrement()
171 if (m_index >= 0 && m_index < m_size in advance()
172 && m_index + n >= 0 && m_index + n < m_size) in advance()
188 m_index += m_size; in update_iterator()
190 m_index = m_index % m_size; in update_iterator()
196 difference_type m_size; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/resize_policy/
H A Dhash_standard_resize_policy_imp.hpp46 : m_size(Size_Policy::get_nearest_larger_size(1)) in hash_standard_resize_policy()
47 { trigger_policy_base::notify_externally_resized(m_size); } in hash_standard_resize_policy()
52 : Size_Policy(r_size_policy), m_size(Size_Policy::get_nearest_larger_size(1)) in hash_standard_resize_policy()
53 { trigger_policy_base::notify_externally_resized(m_size); } in hash_standard_resize_policy()
60 m_size(Size_Policy::get_nearest_larger_size(1)) in hash_standard_resize_policy()
61 { trigger_policy_base::notify_externally_resized(m_size); } in hash_standard_resize_policy()
75 std::swap(m_size, other.m_size); in swap()
172 m_size = new_size; in notify_resized()
181 return m_size; in get_actual_size()
203 const size_type old_size = m_size; in resize()
[all …]
H A Dhash_load_check_resize_trigger_size_base.hpp59 hash_load_check_resize_trigger_size_base(): m_size(0) in hash_load_check_resize_trigger_size_base()
64 { std::swap(m_size, other.m_size); } in swap()
68 { m_size = size; } in set_size()
72 { return m_size; } in get_size()
75 size_type m_size; member in __gnu_pbds::detail::hash_load_check_resize_trigger_size_base
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/resize_policy/
H A Dhash_standard_resize_policy_imp.hpp46 : m_size(Size_Policy::get_nearest_larger_size(1)) in hash_standard_resize_policy()
47 { trigger_policy_base::notify_externally_resized(m_size); } in hash_standard_resize_policy()
52 : Size_Policy(r_size_policy), m_size(Size_Policy::get_nearest_larger_size(1)) in hash_standard_resize_policy()
53 { trigger_policy_base::notify_externally_resized(m_size); } in hash_standard_resize_policy()
60 m_size(Size_Policy::get_nearest_larger_size(1)) in hash_standard_resize_policy()
61 { trigger_policy_base::notify_externally_resized(m_size); } in hash_standard_resize_policy()
75 std::swap(m_size, other.m_size); in swap()
172 m_size = new_size; in notify_resized()
181 return m_size; in get_actual_size()
203 const size_type old_size = m_size; in resize()
[all …]
H A Dhash_load_check_resize_trigger_size_base.hpp59 hash_load_check_resize_trigger_size_base(): m_size(0) in hash_load_check_resize_trigger_size_base()
64 { std::swap(m_size, other.m_size); } in swap()
68 { m_size = size; } in set_size()
72 { return m_size; } in get_size()
75 size_type m_size; member in __gnu_pbds::detail::hash_load_check_resize_trigger_size_base
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/protozero/1.5.2/include/protozero/
H A Dtypes.hpp78 std::size_t m_size; member in protozero::data_view
87 m_size(0) { in data_view()
98 m_size(length) { in data_view()
108 m_size(str.size()) { in data_view()
118 m_size(std::strlen(ptr)) { in data_view()
129 swap(m_size, other.m_size); in swap()
139 return m_size; in size()
144 return m_size == 0; in empty()
154 return std::string{m_data, m_size}; in to_string()
164 return std::string{m_data, m_size}; in operator std::string()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Ddestruct_n.hpp35 : m_ptr(raw), m_size() in destruct_n()
40 ++m_size; in incr()
45 m_size += n; in incr()
50 m_size = 0u; in release()
55 while(m_size--){ in ~destruct_n()
56 m_ptr[m_size].~T(); in ~destruct_n()
61 std::size_t m_size; member in boost::movelib::destruct_n
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/bin_search_tree_/
H A Dconstructors_destructor_fn_imps.hpp49 PB_DS_BIN_TREE_NAME() : m_p_head(s_node_allocator.allocate(1)), m_size(0) in PB_DS_BIN_TREE_NAME()
58 Cmp_Fn(r_cmp_fn), m_p_head(s_node_allocator.allocate(1)), m_size(0) in PB_DS_BIN_TREE_NAME()
70 m_size(0) in PB_DS_BIN_TREE_NAME()
88 m_size(0) in PB_DS_BIN_TREE_NAME()
91 m_size = other.m_size; in PB_DS_BIN_TREE_NAME()
99 m_size = other.m_size; in PB_DS_BIN_TREE_NAME()
131 std::swap(m_size, other.m_size); in value_swap()
150 m_size = 0; in initialize()
H A Dsplit_join_fn_imps.hpp50 if (other.m_size == 0) in join_prep()
53 if (m_size == 0) in join_prep()
73 m_size += other.m_size; in join_prep()
96 if (m_size == 0) in split_prep()
118 if (m_size == 1) in split_prep()
136 other.m_size = std::distance(other.begin(), other.end()); in split_finish()
137 m_size -= other.m_size; in split_finish()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/bin_search_tree_/
H A Dconstructors_destructor_fn_imps.hpp49 PB_DS_BIN_TREE_NAME() : m_p_head(s_node_allocator.allocate(1)), m_size(0) in PB_DS_BIN_TREE_NAME()
58 Cmp_Fn(r_cmp_fn), m_p_head(s_node_allocator.allocate(1)), m_size(0) in PB_DS_BIN_TREE_NAME()
70 m_size(0) in PB_DS_BIN_TREE_NAME()
88 m_size(0) in PB_DS_BIN_TREE_NAME()
91 m_size = other.m_size; in PB_DS_BIN_TREE_NAME()
99 m_size = other.m_size; in PB_DS_BIN_TREE_NAME()
131 std::swap(m_size, other.m_size); in value_swap()
150 m_size = 0; in initialize()
H A Dsplit_join_fn_imps.hpp50 if (other.m_size == 0) in join_prep()
53 if (m_size == 0) in join_prep()
73 m_size += other.m_size; in join_prep()
96 if (m_size == 0) in split_prep()
118 if (m_size == 1) in split_prep()
136 other.m_size = std::distance(other.begin(), other.end()); in split_finish()
137 m_size -= other.m_size; in split_finish()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/
H A Dvector.hpp369 : Allocator(), m_start(), m_size(), m_capacity() in BOOST_NOEXCEPT_IF()
375 : Allocator(boost::forward<AllocConvertible>(a)), m_start(), m_size(), m_capacity() in vector_alloc_holder()
383 …, m_size(initial_size) //Size is initialized here so vector should only call uninitialized_xxx af… in vector_alloc_holder()
396 …, m_size(initial_size) //Size is initialized here so vector should only call uninitialized_xxx af… in vector_alloc_holder()
408 , m_size(holder.m_size) in vector_alloc_holder()
412 holder.m_size = holder.m_capacity = 0; in vector_alloc_holder()
418 , m_size(holder.m_size) in vector_alloc_holder()
430 holder.m_capacity = holder.m_size = 0; in vector_alloc_holder()
432 else if(this->m_capacity < holder.m_size){ in vector_alloc_holder()
433 size_type const n = holder.m_size; in vector_alloc_holder()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/pb_ds/detail/left_child_next_sibling_heap_/
H A Dconstructors_destructor_fn_imps.hpp55 m_size(0) in left_child_next_sibling_heap()
65 m_size(0) in left_child_next_sibling_heap()
73 : Cmp_Fn(other), m_p_root(0), m_size(0) in left_child_next_sibling_heap()
75 m_size = other.m_size; in left_child_next_sibling_heap()
78 m_size = other.m_size; in left_child_next_sibling_heap()
101 std::swap(m_size, other.m_size); in value_swap()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/pb_ds/detail/left_child_next_sibling_heap_/
H A Dconstructors_destructor_fn_imps.hpp55 m_size(0) in left_child_next_sibling_heap()
65 m_size(0) in left_child_next_sibling_heap()
73 : Cmp_Fn(other), m_p_root(0), m_size(0) in left_child_next_sibling_heap()
75 m_size = other.m_size; in left_child_next_sibling_heap()
78 m_size = other.m_size; in left_child_next_sibling_heap()
101 std::swap(m_size, other.m_size); in value_swap()

12345