Home
last modified time | relevance | path

Searched full:second (Results 1 – 25 of 6367) sorted by relevance

12345678910>>...255

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/
H A Dminmax_element.hpp65 ForwardIter second = first; ++second; in basic_minmax_element() local
66 if (second == last) in basic_minmax_element()
71 if (comp(first, second)) in basic_minmax_element()
72 max_result = second; in basic_minmax_element()
74 min_result = second; in basic_minmax_element()
79 first = ++second; if (first != last) ++second; in basic_minmax_element()
80 while (second != last) { in basic_minmax_element()
81 if (comp(first, second)) { in basic_minmax_element()
86 if (comp(max_result, second)) in basic_minmax_element()
87 max_result = second; in basic_minmax_element()
[all …]
/OK3568_Linux_fs/kernel/ipc/
H A Dsyscall.c20 int ksys_ipc(unsigned int call, int first, unsigned long second, in ksys_ipc() argument
31 second, NULL); in ksys_ipc()
34 return ksys_semtimedop(first, ptr, second, in ksys_ipc()
37 return compat_ksys_semtimedop(first, ptr, second, in ksys_ipc()
43 return ksys_semget(first, second, third); in ksys_ipc()
50 return ksys_old_semctl(first, second, third, arg); in ksys_ipc()
55 second, third); in ksys_ipc()
67 return ksys_msgrcv(first, tmp.msgp, second, in ksys_ipc()
73 second, fifth, third); in ksys_ipc()
76 return ksys_msgget((key_t) first, second); in ksys_ipc()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/
H A Dside_info.hpp43 sides[0].second = side_a2; in side_info()
45 sides[1].second = side_b2; in side_info()
49 inline void set(int first, int second) in set() argument
52 sides[Which].second = second; in set()
64 sides[Which].second = 0; in correct_to_zero()
71 return Index == 0 ? sides[Which].first : sides[Which].second; in get()
80 return sides[Which].first * sides[Which].second == 1; in same()
86 && sides[0].second == 0 in collinear()
88 && sides[1].second == 0; in collinear()
93 return sides[0].first * sides[0].second == -1 in crossing()
[all …]
/OK3568_Linux_fs/kernel/lib/
H A Dsiphash.c131 * @second: second u64
134 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument
141 v3 ^= second; in siphash_2u64()
144 v0 ^= second; in siphash_2u64()
152 * @second: second u64
156 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument
164 v3 ^= second; in siphash_3u64()
167 v0 ^= second; in siphash_3u64()
179 * @second: second u64
184 u64 siphash_4u64(const u64 first, const u64 second, const u64 third, in siphash_4u64() argument
[all …]
/OK3568_Linux_fs/kernel/Documentation/admin-guide/
H A Ddevices.txt22 1 = /dev/ram1 Second RAM disk
33 1 = /dev/ptyp1 Second PTY master
108 1 = /dev/ttyp1 Second PTY slave
122 2 = /dev/hd?2 Second partition
193 1 = /dev/loop1 Second loop device
202 16 = /dev/sdb Second SCSI disk whole disk
213 1 = /dev/st1 Second SCSI tape, mode 0
216 33 = /dev/st1l Second SCSI tape, mode 1
219 65 = /dev/st1m Second SCSI tape, mode 2
222 97 = /dev/st1a Second SCSI tape, mode 3
[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.h206 * @tparam _T2 Type of second object. in _GLIBCXX_VISIBILITY()
215 typedef _T2 second_type; ///< The type of the `second` member in _GLIBCXX_VISIBILITY()
218 _T2 second; ///< The second member in _GLIBCXX_VISIBILITY()
222 /** The default constructor creates @c first and @c second using their in _GLIBCXX_VISIBILITY()
233 : first(), second() { } in _GLIBCXX_VISIBILITY()
246 : first(), second() { } in _GLIBCXX_VISIBILITY()
252 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
267 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
277 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
284 : first(__p.first), second(__p.second) { } 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.h206 * @tparam _T2 Type of second object. in _GLIBCXX_VISIBILITY()
215 typedef _T2 second_type; ///< The type of the `second` member in _GLIBCXX_VISIBILITY()
218 _T2 second; ///< The second member in _GLIBCXX_VISIBILITY()
222 /** The default constructor creates @c first and @c second using their in _GLIBCXX_VISIBILITY()
233 : first(), second() { } in _GLIBCXX_VISIBILITY()
246 : first(), second() { } in _GLIBCXX_VISIBILITY()
252 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
267 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
277 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
284 : first(__p.first), second(__p.second) { } 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/node/
H A Dpairs.hpp26 ptr_pair(First const& f, Pointer s) : first(f), second(s) {} in ptr_pair()
27 //ptr_pair(ptr_pair const& p) : first(p.first), second(p.second) {}
28 //ptr_pair & operator=(ptr_pair const& p) { first = p.first; second = p.second; return *this; }
31 second_type second; member in boost::geometry::index::detail::rtree::ptr_pair
50 exclusive_ptr_pair(First const& f, Pointer s) : first(f), second(s) {} in exclusive_ptr_pair()
53 …e_ptr_pair(BOOST_RV_REF(exclusive_ptr_pair) p) : first(p.first), second(p.second) { p.second = 0; } in exclusive_ptr_pair()
54 …erator=(BOOST_RV_REF(exclusive_ptr_pair) p) { first = p.first; second = p.second; p.second = 0; re… in operator =()
57 second_type second; member in boost::geometry::index::detail::rtree::exclusive_ptr_pair
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/utils/
H A Dqlocationtestutils_p.h52 bool compareEquality(const A &first, const B &second) { in compareEquality() argument
53 if (first != second) { in compareEquality()
54 qWarning() << "compareEquality() failed: first != second"; in compareEquality()
58 if (second != first) { in compareEquality()
59 qWarning() << "compareEquality() failed: second != first"; in compareEquality()
63 if (!(first == second)) { in compareEquality()
64 qWarning() << "compareEquality() failed: !(first == second)"; in compareEquality()
68 if (!(second == first)) { in compareEquality()
69 qWarning() << "compareEquality() failed: !(second == first)"; in compareEquality()
81 bool compareInequality(const A &first, const B &second) { in compareInequality() argument
[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/debug/
H A Dsafe_iterator.tcc54 if (__res.second == __dp_equality) in _M_get_distance_from_begin()
78 if (__res.second == __dp_equality) in _M_get_distance_to_end()
102 return __dist.second > __dp_sign in _M_can_advance()
114 return __dist.second == __dp_exact in _M_can_advance()
130 if (__base_dist.second == __dp_exact) in _M_get_distance_to()
139 return __seq_dist.second == __dp_exact in _M_get_distance_to()
153 __seq_dist.second == __dp_exact in _M_get_distance_to()
154 ? __dp_sign_max_size : __seq_dist.second); in _M_get_distance_to()
160 return __seq_dist.second == __dp_exact in _M_get_distance_to()
165 return std::make_pair(-__seq_dist.first, __seq_dist.second); in _M_get_distance_to()
[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/debug/
H A Dsafe_iterator.tcc54 if (__res.second == __dp_equality) in _M_get_distance_from_begin()
78 if (__res.second == __dp_equality) in _M_get_distance_to_end()
102 return __dist.second > __dp_sign in _M_can_advance()
114 return __dist.second == __dp_exact in _M_can_advance()
130 if (__base_dist.second == __dp_exact) in _M_get_distance_to()
139 return __seq_dist.second == __dp_exact in _M_get_distance_to()
153 __seq_dist.second == __dp_exact in _M_get_distance_to()
154 ? __dp_sign_max_size : __seq_dist.second); in _M_get_distance_to()
160 return __seq_dist.second == __dp_exact in _M_get_distance_to()
165 return std::make_pair(-__seq_dist.first, __seq_dist.second); in _M_get_distance_to()
[all …]
/OK3568_Linux_fs/u-boot/scripts/
H A Drepack-bootimg8 …oot_img BOOT_IMG [--out OUT] [--kernel KERNEL] [--ramdisk RAMDISK] [--second SECOND] [--dtb DTB ] …
17 --second SECOND path to the new 2nd bootloader (default: resource.img)
45 --second)
46 second=$2
103 if [ "$second" == "" ]; then
104 second=${second-$out/second}
140 SECOND="--second $second"
145 $SECOND \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dcustom_tile_loader.cpp16 tileRef.invoke(&CustomGeometryTile::setTileData, *(cachedTileData->second)); in fetchTile()
23 … for (auto iter = tileCallbacks->second.begin(); iter != tileCallbacks->second.end(); iter++) { in fetchTile()
29 … tileCallbacks->second.emplace_back(std::make_tuple(tileID.overscaledZ, tileID.wrap, tileRef)); in fetchTile()
45 for (auto iter = tileCallbacks->second.begin(); iter != tileCallbacks->second.end(); iter++) { in removeTile()
47 tileCallbacks->second.erase(iter); in removeTile()
52 if (tileCallbacks->second.size() == 0) { in removeTile()
63 for (auto tuple : iter->second) { in setTileData()
73 for (auto iter = tileCallbacks->second.begin(); iter != tileCallbacks->second.end(); iter++) { in invalidateTile()
91 if (tileRange->second.contains(idtuple->first)) { in invalidateRegion()
92 for (auto iter = idtuple->second.begin(); iter != idtuple->second.end(); iter++) { in invalidateRegion()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dcross_tile_symbol_index.cpp44 for (IndexedSymbolInstance& thisTileSymbol: it->second) { in findMatches()
76 for (auto& index : zoomIndex.second) { in handleWrapJump()
78 … index.second.coord = index.second.coord.unwrapTo(index.second.coord.wrap + wrapDelta); in handleWrapJump()
79 newZoomIndex.emplace(index.second.coord, std::move(index.second)); in handleWrapJump()
94 if (previousIndex->second.bucketInstanceId == bucket.bucketInstanceId) { in addBucket()
101 removeBucketCrossTileIDs(tileID.overscaledZ, previousIndex->second); in addBucket()
111 auto zoomIndexes = it.second; in addBucket()
114 if (childIndex.second.coord.isChildOf(tileID)) { in addBucket()
115 …childIndex.second.findMatches(bucket.symbolInstances, tileID, usedCrossTileIDs[tileID.overscaledZ]… in addBucket()
122 …parentIndex->second.findMatches(bucket.symbolInstances, tileID, usedCrossTileIDs[tileID.overscaled… in addBucket()
[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.hpp31 template<typename This, typename First, typename Second>
32 struct result<This(First, Second)>
37 , typename remove_const<typename remove_reference<Second>::type>::type
42 template<typename First, typename Second>
43 std::pair<First, Second> operator()(First const &first, Second const &second) const in operator ()()
45 return std::make_pair(first, second); in operator ()()
93 /// the second element of a std::pair.
96 /// the second element of a std::pair..
97 struct second struct
125 return pair.second; in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Durl.cpp85 auto domainPos = scheme.first + scheme.second; in __anon14e840fe0402()
89 const bool isData = str.compare(scheme.first, scheme.second, "data") == 0; in __anon14e840fe0402()
94 auto pathPos = domain.first + domain.second; in __anon14e840fe0502()
95 const bool isData = str.compare(scheme.first, scheme.second, "data") == 0; in __anon14e840fe0502()
121 if (dotPos == std::string::npos || dotPos < directory.first + directory.second) { in __anon14e840fe0702()
127 const auto filePos = directory.first + directory.second; in __anon14e840fe0802()
135 return str.substr(url.path.first, url.path.second); in transformURL()
137 return str.substr(url.domain.first, url.domain.second); in transformURL()
139 return str.substr(url.scheme.first, url.scheme.second); in transformURL()
141 const Path path(str, url.path.first, url.path.second); in transformURL()
[all …]
H A Dgrid_index.cpp129 if (resultFn(element.first, element.second)) { in query()
134 if (resultFn(element.first, convertToBox(element.second))) { in query()
156 auto& bbox = pair.second; in query()
171 auto& bcircle = pair.second; in query()
193 if (resultFn(element.first, element.second)) { in query()
198 if (resultFn(element.first, convertToBox(element.second))) { in query()
219 auto& bbox = pair.second; in query()
234 auto& bcircle = pair.second; in query()
257 bool GridIndex<T>::boxesCollide(const BBox& first, const BBox& second) const { in boxesCollide()
258 return first.min.x <= second.max.x && in boxesCollide()
[all …]
/OK3568_Linux_fs/kernel/scripts/
H A Drepack-bootimg8 …oot_img BOOT_IMG [--out OUT] [--kernel KERNEL] [--ramdisk RAMDISK] [--second SECOND] [--dtb DTB ] …
17 --second SECOND path to the new 2nd bootloader (default: resource.img)
45 --second)
46 second=$2
112 second=${second-$objtree/resource.img}
140 SECOND="--second $second"
145 $SECOND \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/map/aux_/preprocessed/typeof_based/
H A Dmap10.hpp21 , typename P0::second
34 , typename P1::second
47 , typename P2::second
60 , typename P3::second
73 , typename P4::second
87 , typename P5::second
101 , typename P6::second
115 , typename P7::second
129 , typename P8::second
143 , typename P9::second
/OK3568_Linux_fs/kernel/arch/alpha/lib/
H A Dcsum_partial_copy.c137 unsigned long second; in csum_partial_cfu_dest_aligned() local
139 if (__get_word(ldq_u, second, src+1)) in csum_partial_cfu_dest_aligned()
144 extqh(second, soff, first); in csum_partial_cfu_dest_aligned()
147 first = second; in csum_partial_cfu_dest_aligned()
157 unsigned long second; in csum_partial_cfu_dest_aligned() local
158 if (__get_word(ldq_u, second, lastsrc)) in csum_partial_cfu_dest_aligned()
162 extqh(second, soff, first); in csum_partial_cfu_dest_aligned()
251 unsigned long second, word; in csum_partial_cfu_unaligned() local
254 if (__get_word(ldq_u, second, src+1)) in csum_partial_cfu_unaligned()
259 extqh(second, soff, first); in csum_partial_cfu_unaligned()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeocameratiles.cpp509 results = splitPolygonAtAxisValue(results, 1, 0.0).second; in clipFootprintToMap()
533 PolygonVector rightPart = splitPolygonAtAxisValue(results, 0, side).second; in clipFootprintToMap()
539 leftPart = splitPolygonAtAxisValue(leftPart, 0, 0).second; // same here in clipFootprintToMap()
541 results = splitPolygonAtAxisValue(results, 0, 0.0).second; in clipFootprintToMap()
545 results = splitPolygonAtAxisValue(results, 0, 0.0).second; 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()
580 pair.first = splitPolygonAtAxisValue(pair.first, 0, 0).second; in clipFootprintToMap()
582 return ClippedFootprint(pair.first, pair.second, PolygonVector()); in clipFootprintToMap()
[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 Dmem-stats.h158 /* Sum the usage with SECOND usage. */
160 operator+ (const mem_usage &second)
162 return mem_usage (m_allocated + second.m_allocated,
163 m_times + second.m_times,
164 m_peak + second.m_peak,
165 m_instances + second.m_instances);
170 operator== (const mem_usage &second) const
172 return (m_allocated == second.m_allocated
173 && m_peak == second.m_peak
174 && m_times == second.m_times);
[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 Dmem-stats.h158 /* Sum the usage with SECOND usage. */
160 operator+ (const mem_usage &second)
162 return mem_usage (m_allocated + second.m_allocated,
163 m_times + second.m_times,
164 m_peak + second.m_peak,
165 m_instances + second.m_instances);
170 operator== (const mem_usage &second) const
172 return (m_allocated == second.m_allocated
173 && m_peak == second.m_peak
174 && m_times == second.m_times);
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/arithmetic/
H A Darithmetic.hpp155 \details The coordinates of the second point will be added to those of the first point.
156 The second point is not modified.
160 \param p2 second point
195 \details The coordinates of the second point will be subtracted to those of the first point.
196 The second point is not modified.
200 \param p2 second point
235 \details The coordinates of the first point will be multiplied by those of the second point.
236 The second point is not modified.
240 \param p2 second point
276 \details The coordinates of the first point will be divided by those of the second point.
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dtopology_correction.hpp56 if (r.second.op1->ring) { in operator <<()
57 out << r.second.op1->ring->ring_index; in operator <<()
62 if (r.second.op2->ring) { in operator <<()
63 out << r.second.op2->ring->ring_index; in operator <<()
67 out << " ( at " << r.second.op1->x << ", " << r.second.op1->y << " )"; in operator <<()
69 if (r.second.op1->ring) { in operator <<()
70 out << "area: " << r.second.op1->ring->area << " parent: "; in operator <<()
71 if (r.second.op1->ring->parent) { in operator <<()
72 out << r.second.op1->ring->parent->ring_index; in operator <<()
81 if (r.second.op2->ring) { in operator <<()
[all …]

12345678910>>...255