HomeSort by relevance Sort by last modified time
    Searched refs:m_size (Results 151 - 175 of 855) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 59 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
61 const size_type ersd = m_size - left;
63 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd);
91 for (size_type i = 0; i < other.m_size; ++i)
96 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
104 m_size = left;
105 other.m_size = ersd;
110 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this));
111 std::make_heap(other.m_a_entries, other.m_a_entries + other.m_size, static_cast<entry_cmp& >(other));
128 const size_type len = m_size + other.m_size
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 59 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
61 const size_type ersd = m_size - left;
63 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd);
91 for (size_type i = 0; i < other.m_size; ++i)
96 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
104 m_size = left;
105 other.m_size = ersd;
110 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this));
111 std::make_heap(other.m_a_entries, other.m_a_entries + other.m_size, static_cast<entry_cmp& >(other));
128 const size_type len = m_size + other.m_size
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 59 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
61 const size_type ersd = m_size - left;
63 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd);
91 for (size_type i = 0; i < other.m_size; ++i)
96 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
104 m_size = left;
105 other.m_size = ersd;
110 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this));
111 std::make_heap(other.m_a_entries, other.m_a_entries + other.m_size, static_cast<entry_cmp& >(other));
128 const size_type len = m_size + other.m_size
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 59 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
61 const size_type ersd = m_size - left;
63 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd);
91 for (size_type i = 0; i < other.m_size; ++i)
96 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
104 m_size = left;
105 other.m_size = ersd;
110 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this));
111 std::make_heap(other.m_a_entries, other.m_a_entries + other.m_size, static_cast<entry_cmp& >(other));
128 const size_type len = m_size + other.m_size
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 60 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
62 const size_type ersd = m_size - left;
64 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd);
92 for (size_type i = 0; i < other.m_size; ++i)
97 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
105 m_size = left;
106 other.m_size = ersd;
111 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this));
112 std::make_heap(other.m_a_entries, other.m_a_entries + other.m_size, static_cast<entry_cmp& >(other));
129 const size_type len = m_size + other.m_size
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 60 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
62 const size_type ersd = m_size - left;
64 _GLIBCXX_DEBUG_ASSERT(m_size >= ersd);
92 for (size_type i = 0; i < other.m_size; ++i)
97 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
105 m_size = left;
106 other.m_size = ersd;
111 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this));
112 std::make_heap(other.m_a_entries, other.m_a_entries + other.m_size, static_cast<entry_cmp& >(other));
129 const size_type len = m_size + other.m_size
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRect.h 57 : m_location(location), m_size(size) { }
59 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
67 FloatSize size() const { return m_size; }
70 void setSize(const FloatSize& size) { m_size = size; }
76 float width() const { return m_size.width(); }
77 float height() const { return m_size.height(); }
81 void setWidth(float width) { m_size.setWidth(width); }
82 void setHeight(float height) { m_size.setHeight(height); }
84 bool isEmpty() const { return m_size.isEmpty(); }
85 bool isZero() const { return m_size.isZero();
178 FloatSize m_size; member in class:WebCore::FloatRect
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageData.h 50 IntSize size() const { return m_size; }
51 int width() const { return m_size.width(); }
52 int height() const { return m_size.height(); }
61 IntSize m_size; member in class:WebCore::FINAL
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 47 if (m_size == 0)
55 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
60 m_size = 0;
74 typename Allocator::group_adjustor adjust(m_size);
112 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size);
116 m_size = new_size;
136 typename Allocator::group_adjustor adjust(m_size);
139 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
140 value_vector a_values = s_value_alloc.allocate(m_size - 1);
146 cond_dtor<size_type> cd(a_values, target_it, m_size - 1)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
r_erase_fn_imps.hpp 46 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
47 --m_size;
58 if (m_size == 1)
85 m_size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binary_heap_/
debug_fn_imps.hpp 53 PB_DS_DEBUG_VERIFY(m_size <= m_actual_size);
54 for (size_type i = 0; i < m_size; ++i)
60 if (left_child(i) < m_size)
65 if (right_child(i) < m_size)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
info_fn_imps.hpp 47 return m_size;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/bin_search_tree_/
r_erase_fn_imps.hpp 46 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
47 --m_size;
58 if (m_size == 1)
85 m_size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binary_heap_/
debug_fn_imps.hpp 53 PB_DS_DEBUG_VERIFY(m_size <= m_actual_size);
54 for (size_type i = 0; i < m_size; ++i)
60 if (left_child(i) < m_size)
65 if (right_child(i) < m_size)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ov_tree_map_/
info_fn_imps.hpp 47 return m_size;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 47 if (m_size == 0)
55 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
60 m_size = 0;
74 typename Allocator::group_throw_prob_adjustor adjust(m_size);
112 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size);
116 m_size = new_size;
136 typename Allocator::group_throw_prob_adjustor adjust(m_size);
139 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
140 value_vector a_values = s_value_alloc.allocate(m_size - 1);
146 cond_dtor<size_type> cd(a_values, target_it, m_size - 1)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 47 if (m_size == 0)
55 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
60 m_size = 0;
74 typename Allocator::group_throw_prob_adjustor adjust(m_size);
112 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size);
116 m_size = new_size;
136 typename Allocator::group_throw_prob_adjustor adjust(m_size);
139 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
140 value_vector a_values = s_value_alloc.allocate(m_size - 1);
146 cond_dtor<size_type> cd(a_values, target_it, m_size - 1)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 47 if (m_size == 0)
55 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
60 m_size = 0;
74 typename Allocator::group_throw_prob_adjustor adjust(m_size);
112 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size);
116 m_size = new_size;
136 typename Allocator::group_throw_prob_adjustor adjust(m_size);
139 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
140 value_vector a_values = s_value_alloc.allocate(m_size - 1);
146 cond_dtor<size_type> cd(a_values, target_it, m_size - 1)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 47 if (m_size == 0)
55 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
60 m_size = 0;
74 typename Allocator::group_throw_prob_adjustor adjust(m_size);
112 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size);
116 m_size = new_size;
136 typename Allocator::group_throw_prob_adjustor adjust(m_size);
139 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
140 value_vector a_values = s_value_alloc.allocate(m_size - 1);
146 cond_dtor<size_type> cd(a_values, target_it, m_size - 1)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 47 if (m_size == 0)
55 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
60 m_size = 0;
74 typename Allocator::group_adjustor adjust(m_size);
112 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size);
116 m_size = new_size;
136 typename Allocator::group_adjustor adjust(m_size);
139 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
140 value_vector a_values = s_value_alloc.allocate(m_size - 1);
146 cond_dtor<size_type> cd(a_values, target_it, m_size - 1)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/bin_search_tree_/
r_erase_fn_imps.hpp 46 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
47 --m_size;
58 if (m_size == 1)
85 m_size = 0;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/binary_heap_/
debug_fn_imps.hpp 53 PB_DS_DEBUG_VERIFY(m_size <= m_actual_size);
54 for (size_type i = 0; i < m_size; ++i)
60 if (left_child(i) < m_size)
65 if (right_child(i) < m_size)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ov_tree_map_/
info_fn_imps.hpp 47 return m_size;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 47 if (m_size == 0)
55 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
60 m_size = 0;
74 typename Allocator::group_adjustor adjust(m_size);
112 cond_dtor<size_type> cd1(m_a_values, m_end_it, m_size);
116 m_size = new_size;
136 typename Allocator::group_adjustor adjust(m_size);
139 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
140 value_vector a_values = s_value_alloc.allocate(m_size - 1);
146 cond_dtor<size_type> cd(a_values, target_it, m_size - 1)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/bin_search_tree_/
r_erase_fn_imps.hpp 46 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
47 --m_size;
58 if (m_size == 1)
85 m_size = 0;

Completed in 854 milliseconds

1 2 3 4 5 67 8 91011>>