Home
last modified time | relevance | path

Searched full:elements (Results 1 – 25 of 3007) sorted by relevance

12345678910>>...121

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/
H A Dmeta_compiler.hpp49 template <typename Tag, typename Elements
72 template <typename This, typename Elements, typename Modifiers>
73 struct result<This(Elements, Modifiers)>
76 typename remove_const<typename Elements::car_type>::type,
81 template <typename Elements, typename Modifiers>
82 typename result<make_component(Elements, Modifiers)>::type
83 operator()(Elements const& elements, Modifiers const& modifiers) const in operator ()()
85 typedef typename remove_const<typename Elements::car_type>::type term; in operator ()()
86 return qi::make_primitive<term, Modifiers>()(elements.car, modifiers); in operator ()()
97 template <typename This, typename Elements, typename Modifiers>
[all …]
/OK3568_Linux_fs/kernel/kernel/sched/
H A Dcpudeadline.c30 int orig_cpu = cp->elements[idx].cpu; in cpudl_heapify_down()
31 u64 orig_dl = cp->elements[idx].dl; in cpudl_heapify_down()
46 cp->elements[l].dl)) { in cpudl_heapify_down()
48 largest_dl = cp->elements[l].dl; in cpudl_heapify_down()
51 cp->elements[r].dl)) in cpudl_heapify_down()
58 cp->elements[idx].cpu = cp->elements[largest].cpu; in cpudl_heapify_down()
59 cp->elements[idx].dl = cp->elements[largest].dl; in cpudl_heapify_down()
60 cp->elements[cp->elements[idx].cpu].idx = idx; in cpudl_heapify_down()
64 cp->elements[idx].cpu = orig_cpu; in cpudl_heapify_down()
65 cp->elements[idx].dl = orig_dl; in cpudl_heapify_down()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/octeon/
H A Dethernet-mem.c20 * @elements: Number of buffers to allocate
24 static int cvm_oct_fill_hw_skbuff(int pool, int size, int elements) in cvm_oct_fill_hw_skbuff() argument
26 int freed = elements; in cvm_oct_fill_hw_skbuff()
38 return elements - freed; in cvm_oct_fill_hw_skbuff()
45 * @elements: Number of buffers to allocate
47 static void cvm_oct_free_hw_skbuff(int pool, int size, int elements) in cvm_oct_free_hw_skbuff() argument
56 elements--; in cvm_oct_free_hw_skbuff()
61 if (elements < 0) in cvm_oct_free_hw_skbuff()
63 pool, elements); in cvm_oct_free_hw_skbuff()
64 else if (elements > 0) in cvm_oct_free_hw_skbuff()
[all …]
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Dnsprepkg.c22 union acpi_operand_object **elements, u32 count);
26 union acpi_operand_object **elements,
33 union acpi_operand_object **elements, u32 count);
56 union acpi_operand_object **elements; in acpi_ns_check_package() local
75 * and trailing NULL package elements in acpi_ns_check_package()
80 /* Extract package count and elements array */ in acpi_ns_check_package()
82 elements = return_object->package.elements; in acpi_ns_check_package()
96 "Return Package has no elements (empty)")); in acpi_ns_check_package()
110 status = acpi_ns_custom_package(info, elements, count); in acpi_ns_check_package()
132 /* Validate all elements of the returned package */ in acpi_ns_check_package()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/visitors/
H A Dremove.hpp68 children_type & children = rtree::elements(n); in operator ()()
91 elements_type & elements = rtree::elements(n); in operator ()() local
96 element_iterator underfl_el_it = elements.begin() + child_node_index; in operator ()()
100 // NOTE: if the min elements number is 1, then after an underflow in operator ()()
101 … // here the child elements count is 0, so it's not required to store this node, in operator ()()
103 …m_is_underflow = store_underflowed_node(elements, underfl_el_it, relative_level); … in operator ()()
110 // note that there may be less than min_elems elements in root in operator ()()
112 …BOOST_GEOMETRY_INDEX_ASSERT((elements.size() < m_parameters.get_min_elements()) == m_is_underflow,… in operator ()()
114 rtree::elements(*m_parent)[m_current_child_index].first in operator ()()
115 = rtree::elements_box<Box>(elements.begin(), elements.end(), m_translator); in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/linear/
H A Dredistribute_elements.hpp77 template <typename Elements, typename Parameters, typename Translator, typename Tag, size_t Dimensi…
80 typedef typename Elements::value_type element_type;
94 static inline void apply(Elements const& elements, in apply()
102 … BOOST_GEOMETRY_INDEX_ASSERT(elements.size() == elements_count, "unexpected number of elements"); in apply()
103 BOOST_GEOMETRY_INDEX_ASSERT(2 <= elements_count, "unexpected number of elements"); in apply()
106 bounded_view_type bounded_indexable_0(rtree::element_indexable(elements[0], translator)); in apply()
115 bounded_view_type bounded_indexable(rtree::element_indexable(elements[i], translator)); in apply()
134 …bounded_view_type bounded_indexable_hl(rtree::element_indexable(elements[highest_low_index], trans… in apply()
138 bounded_view_type bounded_indexable(rtree::element_indexable(elements[i], translator)); in apply()
165 template <typename Elements, typename Parameters, typename Translator, size_t DimensionIndex>
[all …]
/OK3568_Linux_fs/external/xserver/hw/dmx/glxProxy/
H A Dcompsize.c108 GLint elements, esize; in __glDrawPixels_size() local
114 elements = 1; in __glDrawPixels_size()
121 elements = 1; in __glDrawPixels_size()
124 elements = 2; in __glDrawPixels_size()
127 elements = 3; in __glDrawPixels_size()
131 elements = 4; in __glDrawPixels_size()
151 elements = 1; in __glDrawPixels_size()
164 elements = 1; in __glDrawPixels_size()
176 elements = 1; in __glDrawPixels_size()
181 return elements * esize * w * h; in __glDrawPixels_size()
[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/bits/
H A Dvalarray_array.tcc57 // Copy n elements of a into consecutive elements of b. When m is
59 // at least n true elements. a must contain at least n elements and
60 // enough elements to match up with m through the nth true element
61 // of m. I.e. if n is 10, m has 15 elements with 5 false followed
62 // by 10 true, a must have 15 elements.
82 // Copy n consecutive elements from a into elements of b. Elements
84 // must contain at least n true elements. b must have at least as
85 // many elements as the index of the nth true element of m. I.e. if
86 // m has 15 elements with 5 false followed by 10 true, b must have
87 // at least 15 elements.
[all …]
H A Dslice_array.h52 * of the subset. The size is the total number of elements in the subset. in _GLIBCXX_VISIBILITY()
57 * and stride 2, the subset consists of array elements 1, 3, and 5. in _GLIBCXX_VISIBILITY()
69 * @param __d Number of elements in slice. in _GLIBCXX_VISIBILITY()
70 * @param __s Stride between array elements. in _GLIBCXX_VISIBILITY()
117 * A slice_array is a reference to the actual elements of an array in _GLIBCXX_VISIBILITY()
120 * carrying operations out on the referenced subset of elements in the in _GLIBCXX_VISIBILITY()
122 * to the subset of elements in the underlying valarray this slice_array in _GLIBCXX_VISIBILITY()
139 /// Assignment operator. Assigns slice elements to corresponding in _GLIBCXX_VISIBILITY()
140 /// elements of @a a. in _GLIBCXX_VISIBILITY()
143 /// Assign slice elements to corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
[all …]
H A Dgslice_array.h49 * A gslice_array is a reference to the actual elements of an array in _GLIBCXX_VISIBILITY()
52 * permits carrying operations out on the referenced subset of elements in in _GLIBCXX_VISIBILITY()
54 * values to the subset of elements in the underlying valarray this in _GLIBCXX_VISIBILITY()
71 /// Assignment operator. Assigns slice elements to corresponding in _GLIBCXX_VISIBILITY()
72 /// elements of @a a. in _GLIBCXX_VISIBILITY()
75 /// Assign slice elements to corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
77 /// Multiply slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
79 /// Divide slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
81 /// Modulo slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
83 /// Add corresponding elements of @a v to slice elements. in _GLIBCXX_VISIBILITY()
[all …]
H A Dindirect_array.h49 * An indirect_array is a reference to the actual elements of an array in _GLIBCXX_VISIBILITY()
53 * referenced subset of elements in the original valarray. in _GLIBCXX_VISIBILITY()
73 /// Assignment operator. Assigns elements to corresponding elements in _GLIBCXX_VISIBILITY()
77 /// Assign slice elements to corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
79 /// Multiply slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
81 /// Divide slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
83 /// Modulo slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
85 /// Add corresponding elements of @a v to slice elements. in _GLIBCXX_VISIBILITY()
87 /// Subtract corresponding elements of @a v from slice elements. in _GLIBCXX_VISIBILITY()
89 /// Logical xor slice elements with corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
[all …]
H A Dmask_array.h49 * A mask_array is a reference to the actual elements of an array specified in _GLIBCXX_VISIBILITY()
53 * referenced subset of elements in the original valarray. in _GLIBCXX_VISIBILITY()
56 * false, true) as an argument, the mask array has two elements referring in _GLIBCXX_VISIBILITY()
73 /// Assignment operator. Assigns elements to corresponding elements in _GLIBCXX_VISIBILITY()
78 /// Multiply slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
80 /// Divide slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
82 /// Modulo slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
84 /// Add corresponding elements of @a v to slice elements. in _GLIBCXX_VISIBILITY()
86 /// Subtract corresponding elements of @a v from slice elements. in _GLIBCXX_VISIBILITY()
88 /// Logical xor slice elements with corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
[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/bits/
H A Dvalarray_array.tcc57 // Copy n elements of a into consecutive elements of b. When m is
59 // at least n true elements. a must contain at least n elements and
60 // enough elements to match up with m through the nth true element
61 // of m. I.e. if n is 10, m has 15 elements with 5 false followed
62 // by 10 true, a must have 15 elements.
82 // Copy n consecutive elements from a into elements of b. Elements
84 // must contain at least n true elements. b must have at least as
85 // many elements as the index of the nth true element of m. I.e. if
86 // m has 15 elements with 5 false followed by 10 true, b must have
87 // at least 15 elements.
[all …]
H A Dslice_array.h52 * of the subset. The size is the total number of elements in the subset. in _GLIBCXX_VISIBILITY()
57 * and stride 2, the subset consists of array elements 1, 3, and 5. in _GLIBCXX_VISIBILITY()
69 * @param __d Number of elements in slice. in _GLIBCXX_VISIBILITY()
70 * @param __s Stride between array elements. in _GLIBCXX_VISIBILITY()
117 * A slice_array is a reference to the actual elements of an array in _GLIBCXX_VISIBILITY()
120 * carrying operations out on the referenced subset of elements in the in _GLIBCXX_VISIBILITY()
122 * to the subset of elements in the underlying valarray this slice_array in _GLIBCXX_VISIBILITY()
139 /// Assignment operator. Assigns slice elements to corresponding in _GLIBCXX_VISIBILITY()
140 /// elements of @a a. in _GLIBCXX_VISIBILITY()
143 /// Assign slice elements to corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
[all …]
H A Dgslice_array.h49 * A gslice_array is a reference to the actual elements of an array in _GLIBCXX_VISIBILITY()
52 * permits carrying operations out on the referenced subset of elements in in _GLIBCXX_VISIBILITY()
54 * values to the subset of elements in the underlying valarray this in _GLIBCXX_VISIBILITY()
71 /// Assignment operator. Assigns slice elements to corresponding in _GLIBCXX_VISIBILITY()
72 /// elements of @a a. in _GLIBCXX_VISIBILITY()
75 /// Assign slice elements to corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
77 /// Multiply slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
79 /// Divide slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
81 /// Modulo slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
83 /// Add corresponding elements of @a v to slice elements. in _GLIBCXX_VISIBILITY()
[all …]
H A Dindirect_array.h49 * An indirect_array is a reference to the actual elements of an array in _GLIBCXX_VISIBILITY()
53 * referenced subset of elements in the original valarray. in _GLIBCXX_VISIBILITY()
73 /// Assignment operator. Assigns elements to corresponding elements in _GLIBCXX_VISIBILITY()
77 /// Assign slice elements to corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
79 /// Multiply slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
81 /// Divide slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
83 /// Modulo slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
85 /// Add corresponding elements of @a v to slice elements. in _GLIBCXX_VISIBILITY()
87 /// Subtract corresponding elements of @a v from slice elements. in _GLIBCXX_VISIBILITY()
89 /// Logical xor slice elements with corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
[all …]
H A Dmask_array.h49 * A mask_array is a reference to the actual elements of an array specified in _GLIBCXX_VISIBILITY()
53 * referenced subset of elements in the original valarray. in _GLIBCXX_VISIBILITY()
56 * false, true) as an argument, the mask array has two elements referring in _GLIBCXX_VISIBILITY()
73 /// Assignment operator. Assigns elements to corresponding elements in _GLIBCXX_VISIBILITY()
78 /// Multiply slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
80 /// Divide slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
82 /// Modulo slice elements by corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
84 /// Add corresponding elements of @a v to slice elements. in _GLIBCXX_VISIBILITY()
86 /// Subtract corresponding elements of @a v from slice elements. in _GLIBCXX_VISIBILITY()
88 /// Logical xor slice elements with corresponding elements of @a v. in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/rstar/
H A Dredistribute_elements.hpp99 template <typename Elements, typename Parameters, typename Translator>
100 static inline void apply(Elements const& elements, in apply()
108 typedef typename Elements::value_type element_type; in apply()
112 …BOOST_GEOMETRY_INDEX_ASSERT(elements.size() == parameters.get_max_elements() + 1, "wrong number of… in apply()
114 // copy elements in apply()
115Elements elements_copy(elements); … in apply()
120 // sort elements in apply()
124 // typename Elements::iterator f = elements_copy.begin() + index_first; in apply()
125 // typename Elements::iterator l = elements_copy.begin() + index_last; in apply()
142 … // box of min_elems number of elements and expanded for each iteration by another element in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/operator/
H A Dsequence.hpp35 template <typename Elements>
36 struct sequence : sequence_base<sequence<Elements>, Elements>
38 friend struct sequence_base<sequence<Elements>, Elements>;
40 sequence(Elements const& elements) in sequence()
41 : sequence_base<sequence<Elements>, Elements>(elements) {} in sequence()
61 template <typename Elements, typename Modifiers>
62 struct make_composite<proto::tag::shift_right, Elements, Modifiers>
63 : make_nary_composite<Elements, sequence>
68 // template <typename Attribute, typename Elements, typename Context, typename Iterator>
69 // struct is_attribute_compatible<Attribute, sequence<Elements>, Context, Iterator>
[all …]
H A Dsequential_or.hpp39 template <typename Elements>
40 struct sequential_or : nary_parser<sequential_or<Elements> >
48 Elements, Context, traits::sequential_or_attribute_transform
54 // and 2) may return unused_type if all elements have
61 sequential_or(Elements const& elements_) in sequential_or()
62 : elements(elements_) {} in sequential_or()
79 // to force all elements to be tested) in parse()
80 return spirit::any_if_ns(elements, attr_local, f, predicate()); in parse()
87 fusion::for_each(elements, in what()
92 Elements elements; member
[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/
H A Dvalarray111 * Classes and functions for representing and manipulating arrays of elements.
142 /// Construct an array with @a n elements.
145 /// Construct an array with @a n elements initialized to @a t.
148 /// Construct an array initialized to the first @a n elements of @a t.
183 * @brief Assign elements to an array.
185 * Assign elements of array to values in @a v.
193 * @brief Move assign elements to an array.
195 * Move assign elements of array to values in @a v.
203 * @brief Assign elements to a value.
205 * Assign all elements of array to @a t.
[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/
H A Dvalarray111 * Classes and functions for representing and manipulating arrays of elements.
142 /// Construct an array with @a n elements.
145 /// Construct an array with @a n elements initialized to @a t.
148 /// Construct an array initialized to the first @a n elements of @a t.
183 * @brief Assign elements to an array.
185 * Assign elements of array to values in @a v.
193 * @brief Move assign elements to an array.
195 * Move assign elements of array to values in @a v.
203 * @brief Assign elements to a value.
205 * Assign all elements of array to @a t.
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/can/
H A Dbosch,m_can.yaml64 the following elements start from. This is usually set to
66 are used to specify how many elements are used for each FIFO/Buffer.
68 M_CAN includes the following elements according to user manual:
69 11-bit Filter 0-128 elements / 0-128 words
70 29-bit Filter 0-64 elements / 0-128 words
71 Rx FIFO 0 0-64 elements / 0-1152 words
72 Rx FIFO 1 0-64 elements / 0-1152 words
73 Rx Buffers 0-64 elements / 0-1152 words
74 Tx Event FIFO 0-32 elements / 0-64 words
75 Tx Buffers 0-32 elements / 0-576 words
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dvec-perm-indices.h26 The elements do not need to be clamped to a particular range
27 of input elements. */
33 Permutation vectors select indices modulo the number of input elements,
35 number of input vectors and for a particular number of elements per
43 elements, the indices select elements modulo 8, which makes all three
45 in the range [0, number of input elements - 1], so the class treats the
49 different numbers of elements. */
65 /* Return the number of output elements. This is called length ()
72 /* Return the number of elements in each input vector. */
75 /* Return the total number of input elements. */
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dvec-perm-indices.h26 The elements do not need to be clamped to a particular range
27 of input elements. */
33 Permutation vectors select indices modulo the number of input elements,
35 number of input vectors and for a particular number of elements per
43 elements, the indices select elements modulo 8, which makes all three
45 in the range [0, number of input elements - 1], so the class treats the
49 different numbers of elements. */
65 /* Return the number of output elements. This is called length ()
72 /* Return the number of elements in each input vector. */
75 /* Return the total number of input elements. */
[all …]

12345678910>>...121