Home
last modified time | relevance | path

Searched full:pair (Results 1 – 25 of 2478) sorted by relevance

12345678910>>...100

/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/
H A Dgtype.state237 (!pair "m_start"
249 (!pair "m_finish"
259 (!pair "start_location"
277 (!pair "reason"
281 (!pair "sysp"
293 (!pair "m_column_and_range_bits"
297 (!pair "m_range_bits"
301 (!pair "to_file"
305 (!pair "to_line"
309 (!pair "included_from"
[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/
H A Dgtype.state239 (!pair "m_start"
251 (!pair "m_finish"
261 (!pair "start_location"
279 (!pair "reason"
283 (!pair "sysp"
295 (!pair "m_column_and_range_bits"
299 (!pair "m_range_bits"
303 (!pair "to_file"
307 (!pair "to_line"
311 (!pair "included_from"
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/functional/std/
H A Dutility.hpp35 std::pair<
43 std::pair<First, Second> operator()(First const &first, Second const &second) const in operator ()()
50 /// the first element of a std::pair.
53 /// the first element of a std::pair..
61 template<typename This, typename Pair>
62 struct result<This(Pair)>
64 typedef typename Pair::first_type type;
67 template<typename This, typename Pair>
68 struct result<This(Pair &)>
70 typedef typename Pair::first_type &type;
[all …]
/OK3568_Linux_fs/kernel/sound/soc/fsl/
H A Dfsl_asrc_dma.c46 struct fsl_asrc_pair *pair = runtime->private_data; in fsl_asrc_dma_complete() local
48 pair->pos += snd_pcm_lib_period_bytes(substream); in fsl_asrc_dma_complete()
49 if (pair->pos >= snd_pcm_lib_buffer_bytes(substream)) in fsl_asrc_dma_complete()
50 pair->pos = 0; in fsl_asrc_dma_complete()
60 struct fsl_asrc_pair *pair = runtime->private_data; in fsl_asrc_dma_prepare_and_submit() local
68 pair->pos = 0; in fsl_asrc_dma_prepare_and_submit()
69 pair->desc[!dir] = dmaengine_prep_dma_cyclic( in fsl_asrc_dma_prepare_and_submit()
70 pair->dma_chan[!dir], runtime->dma_addr, in fsl_asrc_dma_prepare_and_submit()
74 if (!pair->desc[!dir]) { in fsl_asrc_dma_prepare_and_submit()
79 pair->desc[!dir]->callback = fsl_asrc_dma_complete; in fsl_asrc_dma_prepare_and_submit()
[all …]
H A Dfsl_asrc.c25 dev_err(&asrc->pdev->dev, "Pair %c: " fmt, 'A' + index, ##__VA_ARGS__)
28 dev_dbg(&asrc->pdev->dev, "Pair %c: " fmt, 'A' + index, ##__VA_ARGS__)
202 * fsl_asrc_request_pair - Request ASRC pair
204 * @pair: pointer to pair
206 * It assigns pair by the order of A->C->B because allocation of pair B,
207 * within range [ANCA, ANCA+ANCB-1], depends on the channels of pair A
208 * while pair A and pair C are comparatively independent.
210 static int fsl_asrc_request_pair(int channels, struct fsl_asrc_pair *pair) in fsl_asrc_request_pair() argument
213 struct fsl_asrc *asrc = pair->asrc; in fsl_asrc_request_pair()
221 if (asrc->pair[i] != NULL) in fsl_asrc_request_pair()
[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 Dstl_pair.h1 // Pair implementation -*- C++ -*-
79 /// Tag type for piecewise construction of std::pair objects. in _GLIBCXX_VISIBILITY()
82 /// Tag for piecewise construction of std::pair objects. in _GLIBCXX_VISIBILITY()
192 template<typename _T1, typename _T2> friend struct pair; in _GLIBCXX_VISIBILITY()
211 struct pair in _GLIBCXX_VISIBILITY()
221 // 265. std::pair::pair() effects overly restrictive in _GLIBCXX_VISIBILITY()
232 _GLIBCXX_CONSTEXPR pair() in _GLIBCXX_VISIBILITY()
245 explicit constexpr pair() in _GLIBCXX_VISIBILITY()
250 /// Two objects may be passed to a @c pair constructor to be copied. in _GLIBCXX_VISIBILITY()
251 pair(const _T1& __a, const _T2& __b) in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_map.h84 * allocator<pair<const _Key, _Tp>. in _GLIBCXX_VISIBILITY()
90 * value_type is std::pair<const Key,T>. in _GLIBCXX_VISIBILITY()
99 typename _Alloc = std::allocator<std::pair<const _Key, _Tp> > > in _GLIBCXX_VISIBILITY()
105 typedef std::pair<const _Key, _Tp> value_type; in _GLIBCXX_VISIBILITY()
351 * Returns a read/write iterator that points to the first pair in the in _GLIBCXX_VISIBILITY()
360 * Returns a read-only (constant) iterator that points to the first pair in _GLIBCXX_VISIBILITY()
370 * pair in the %map. Iteration is done in ascending order in _GLIBCXX_VISIBILITY()
379 * pair in the %map. Iteration is done in ascending order according to in _GLIBCXX_VISIBILITY()
387 * Returns a read/write reverse iterator that points to the last pair in in _GLIBCXX_VISIBILITY()
397 * last pair in the %map. Iteration is done in descending order in _GLIBCXX_VISIBILITY()
[all …]
H A Dunordered_map.h46 typename _Alloc = std::allocator<std::pair<const _Key, _Tp> >, in _GLIBCXX_VISIBILITY()
48 using __umap_hashtable = _Hashtable<_Key, std::pair<const _Key, _Tp>, in _GLIBCXX_VISIBILITY()
63 typename _Alloc = std::allocator<std::pair<const _Key, _Tp> >, in _GLIBCXX_VISIBILITY()
65 using __ummap_hashtable = _Hashtable<_Key, std::pair<const _Key, _Tp>, in _GLIBCXX_VISIBILITY()
88 * std::allocator<std::pair<const _Key, _Tp>>. in _GLIBCXX_VISIBILITY()
93 * The resulting value type of the container is std::pair<const _Key, _Tp>. in _GLIBCXX_VISIBILITY()
101 typename _Alloc = allocator<std::pair<const _Key, _Tp>>> in _GLIBCXX_VISIBILITY()
367 * @brief Attempts to build and insert a std::pair into the in _GLIBCXX_VISIBILITY()
370 * @param __args Arguments used to generate a new pair instance (see in _GLIBCXX_VISIBILITY()
372 * part of the pair constructor). in _GLIBCXX_VISIBILITY()
[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 Dstl_pair.h1 // Pair implementation -*- C++ -*-
79 /// Tag type for piecewise construction of std::pair objects. in _GLIBCXX_VISIBILITY()
82 /// Tag for piecewise construction of std::pair objects. in _GLIBCXX_VISIBILITY()
192 template<typename _T1, typename _T2> friend struct pair; in _GLIBCXX_VISIBILITY()
211 struct pair in _GLIBCXX_VISIBILITY()
221 // 265. std::pair::pair() effects overly restrictive in _GLIBCXX_VISIBILITY()
232 _GLIBCXX_CONSTEXPR pair() in _GLIBCXX_VISIBILITY()
245 explicit constexpr pair() in _GLIBCXX_VISIBILITY()
250 /// Two objects may be passed to a @c pair constructor to be copied. in _GLIBCXX_VISIBILITY()
251 pair(const _T1& __a, const _T2& __b) in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_map.h84 * allocator<pair<const _Key, _Tp>. in _GLIBCXX_VISIBILITY()
90 * value_type is std::pair<const Key,T>. in _GLIBCXX_VISIBILITY()
99 typename _Alloc = std::allocator<std::pair<const _Key, _Tp> > > in _GLIBCXX_VISIBILITY()
105 typedef std::pair<const _Key, _Tp> value_type; in _GLIBCXX_VISIBILITY()
351 * Returns a read/write iterator that points to the first pair in the in _GLIBCXX_VISIBILITY()
360 * Returns a read-only (constant) iterator that points to the first pair in _GLIBCXX_VISIBILITY()
370 * pair in the %map. Iteration is done in ascending order in _GLIBCXX_VISIBILITY()
379 * pair in the %map. Iteration is done in ascending order according to in _GLIBCXX_VISIBILITY()
387 * Returns a read/write reverse iterator that points to the last pair in in _GLIBCXX_VISIBILITY()
397 * last pair in the %map. Iteration is done in descending order in _GLIBCXX_VISIBILITY()
[all …]
H A Dunordered_map.h46 typename _Alloc = std::allocator<std::pair<const _Key, _Tp> >, in _GLIBCXX_VISIBILITY()
48 using __umap_hashtable = _Hashtable<_Key, std::pair<const _Key, _Tp>, in _GLIBCXX_VISIBILITY()
63 typename _Alloc = std::allocator<std::pair<const _Key, _Tp> >, in _GLIBCXX_VISIBILITY()
65 using __ummap_hashtable = _Hashtable<_Key, std::pair<const _Key, _Tp>, in _GLIBCXX_VISIBILITY()
88 * std::allocator<std::pair<const _Key, _Tp>>. in _GLIBCXX_VISIBILITY()
93 * The resulting value type of the container is std::pair<const _Key, _Tp>. in _GLIBCXX_VISIBILITY()
101 typename _Alloc = allocator<std::pair<const _Key, _Tp>>> in _GLIBCXX_VISIBILITY()
367 * @brief Attempts to build and insert a std::pair into the in _GLIBCXX_VISIBILITY()
370 * @param __args Arguments used to generate a new pair instance (see in _GLIBCXX_VISIBILITY()
372 * part of the pair constructor). in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/rkbin/tools/
HDfirmwareMerger ... > > m_uiNextKeyIndex positive_sign _ZNSt6vectorISsSaISsEE14_M_fill_assignEjRKSs new_allocator<std::pair<const std::basic_string<char, std ...
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dutility63 struct pair
71 pair(const pair&) = default;
72 pair(pair&&) = default;
73 constexpr pair();
74 pair(const T1& x, const T2& y); // constexpr in C++14
75 template <class U, class V> pair(U&& x, V&& y); // constexpr in C++14
76 template <class U, class V> pair(const pair<U, V>& p); // constexpr in C++14
77 template <class U, class V> pair(pair<U, V>&& p); // constexpr in C++14
79 pair(piecewise_construct_t, tuple<Args1...> first_args,
82 template <class U, class V> pair& operator=(const pair<U, V>& p);
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dutility63 struct pair
71 pair(const pair&) = default;
72 pair(pair&&) = default;
73 constexpr pair();
74 pair(const T1& x, const T2& y); // constexpr in C++14
75 template <class U, class V> pair(U&& x, V&& y); // constexpr in C++14
76 template <class U, class V> pair(const pair<U, V>& p); // constexpr in C++14
77 template <class U, class V> pair(pair<U, V>&& p); // constexpr in C++14
79 pair(piecewise_construct_t, tuple<Args1...> first_args,
82 template <class U, class V> pair& operator=(const pair<U, V>& p);
[all …]
/OK3568_Linux_fs/kernel/tools/perf/tests/
H A Dvmlinux-kallsyms.c113 struct symbol *pair, *first_pair; in test__vmlinux_matches_kallsyms() local
124 pair = first_pair; in test__vmlinux_matches_kallsyms()
126 if (pair && UM(pair->start) == mem_start) { in test__vmlinux_matches_kallsyms()
128 if (arch__compare_symbol_names(sym->name, pair->name) == 0) { in test__vmlinux_matches_kallsyms()
138 s64 skew = mem_end - UM(pair->end); in test__vmlinux_matches_kallsyms()
142 UM(pair->end)); in test__vmlinux_matches_kallsyms()
152 pair = machine__find_kernel_symbol_by_name(&kallsyms, sym->name, NULL); in test__vmlinux_matches_kallsyms()
153 if (pair) { in test__vmlinux_matches_kallsyms()
154 if (UM(pair->start) == mem_start) in test__vmlinux_matches_kallsyms()
158 mem_start, sym->name, pair->name); in test__vmlinux_matches_kallsyms()
[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 Dutility63 * Components deemed generally useful. Includes pair, tuple,
141 // of tuple_element<pair<T,U>> and tuple_element<array<T,N>> are defined.
148 // Various functions which give std::pair a tuple-like interface.
150 /// Partial specialization for std::pair
152 struct __is_tuple_like_impl<std::pair<_T1, _T2>> : true_type
155 /// Partial specialization for std::pair
157 struct tuple_size<std::pair<_Tp1, _Tp2>>
160 /// Partial specialization for std::pair
162 struct tuple_element<0, std::pair<_Tp1, _Tp2>>
165 /// Partial specialization for std::pair
[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 Dutility63 * Components deemed generally useful. Includes pair, tuple,
141 // of tuple_element<pair<T,U>> and tuple_element<array<T,N>> are defined.
148 // Various functions which give std::pair a tuple-like interface.
150 /// Partial specialization for std::pair
152 struct __is_tuple_like_impl<std::pair<_T1, _T2>> : true_type
155 /// Partial specialization for std::pair
157 struct tuple_size<std::pair<_Tp1, _Tp2>>
160 /// Partial specialization for std::pair
162 struct tuple_element<0, std::pair<_Tp1, _Tp2>>
165 /// Partial specialization for std::pair
[all …]
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/cascadelakex/
H A Dother.json11 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
24 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
37 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
50 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
63 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
76 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
89 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
102 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
115 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
128 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
[all …]
H A Dmemory.json11 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
24 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
37 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
51 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
65 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
79 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
92 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
106 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
120 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
134 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
[all …]
H A Dcache.json12 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
26 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
40 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
54 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
78 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
92 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
118 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
132 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
166 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
180 …"PublicDescription": "Offcore response can be programmed only with a specific pair of event select…
[all …]
/OK3568_Linux_fs/kernel/tools/perf/
H A Dbuiltin-diff.c279 static double compute_delta(struct hist_entry *he, struct hist_entry *pair) in compute_delta() argument
282 double new_percent = period_percent(pair, pair->stat.period); in compute_delta()
284 pair->diff.period_ratio_delta = new_percent - old_percent; in compute_delta()
285 pair->diff.computed = true; in compute_delta()
286 return pair->diff.period_ratio_delta; in compute_delta()
289 static double compute_ratio(struct hist_entry *he, struct hist_entry *pair) in compute_ratio() argument
292 double new_period = pair->stat.period; in compute_ratio()
294 pair->diff.computed = true; in compute_ratio()
295 pair->diff.period_ratio = new_period / old_period; in compute_ratio()
296 return pair->diff.period_ratio; in compute_ratio()
[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/tr1/
H A Dutility50 // Various functions which give std::pair a tuple-like interface.
52 struct tuple_size<std::pair<_Tp1, _Tp2> >
57 tuple_size<std::pair<_Tp1, _Tp2> >::value;
60 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
64 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
95 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
[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/tr1/
H A Dutility50 // Various functions which give std::pair a tuple-like interface.
52 struct tuple_size<std::pair<_Tp1, _Tp2> >
57 tuple_size<std::pair<_Tp1, _Tp2> >::value;
60 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
64 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
95 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
[all …]
/OK3568_Linux_fs/kernel/drivers/misc/vmw_vmci/
H A Dvmci_queue_pair.c62 * In more detail. When a VMCI queue pair is first created, it will be in the
71 * vmci_qp_broker_set_page_store to specify the UVAs of the queue pair at
76 * - VMCIQPB_CREATED_MEM: this state is the result when the queue pair
77 * is created by a VMX using the queue pair device backend that
78 * sets the UVAs of the queue pair immediately and stores the
82 * Once the queue pair is in one of the created states (with the exception of
84 * queue pair. Again we have two new states possible:
90 * pair, and attaches to a queue pair previously created by the host side.
92 * - from VMCIQPB_CREATED_MEM when the host side attaches to a queue pair
98 * - VMCIQPB_ATTACHED_NO_MEM: If the queue pair already was in the
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeocameratiles.cpp550 QPair<PolygonVector, PolygonVector> pair = splitPolygonAtAxisValue(results, 0, 0.0); in clipFootprintToMap() local
551 if (pair.first.isEmpty()) { in clipFootprintToMap()
553 for (int i = 0; i < pair.second.size(); ++i) { in clipFootprintToMap()
554 if (qFuzzyIsNull(pair.second.at(i).x())) in clipFootprintToMap()
555 pair.first.append(pair.second.at(i)); in clipFootprintToMap()
557 if (pair.first.size() == 2) { in clipFootprintToMap()
558 double y0 = pair.first[0].y(); in clipFootprintToMap()
559 double y1 = pair.first[1].y(); in clipFootprintToMap()
560 pair.first.clear(); in clipFootprintToMap()
561 pair.first.append(QDoubleVector3D(side, y0, 0.0)); in clipFootprintToMap()
[all …]

12345678910>>...100