Home
last modified time | relevance | path

Searched full:begin (Results 1 – 25 of 3524) sorted by relevance

12345678910>>...141

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/lexical_cast/detail/
H A Dinf_nan.hpp53 inline bool parse_inf_nan_impl(const CharT* begin, const CharT* end, T& value in parse_inf_nan_impl() argument
59 if (begin == end) return false; in parse_inf_nan_impl()
65 bool const has_minus = (*begin == minus); in parse_inf_nan_impl()
66 if (has_minus || *begin == plus) { in parse_inf_nan_impl()
67 ++ begin; in parse_inf_nan_impl()
70 if (end - begin < 3) return false; in parse_inf_nan_impl()
71 if (lc_iequal(begin, lc_nan, lc_NAN, 3)) { in parse_inf_nan_impl()
72 begin += 3; in parse_inf_nan_impl()
73 if (end != begin) { in parse_inf_nan_impl()
76 if (end - begin < 2) return false; // bad input in parse_inf_nan_impl()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/detail/
H A Dfinder.hpp19 #include <boost/range/begin.hpp>
33 Returns a pair <begin,end> marking the subsequence in the sequence.
44 m_Search(::boost::begin(Search), ::boost::end(Search)), m_Comp(Comp) {} in first_finderF()
55 ForwardIteratorT Begin, in operator ()()
62 for(input_iterator_type OuterIt=Begin; in operator ()()
71 search_iterator_type SubstrIt=m_Search.begin(); in operator ()()
97 Returns a pair <begin,end> marking the subsequence in the sequence.
111 m_Search(::boost::begin(Search), ::boost::end(Search)), m_Comp(Comp) {} in last_finderF()
122 ForwardIteratorT Begin, in operator ()()
133 return findit( Begin, End, category() ); in operator ()()
[all …]
H A Dsequence.hpp17 #include <boost/range/begin.hpp>
32 ForwardIteratorT Begin, in insert() argument
35 Input.insert( At, Begin, End ); in insert()
44 … ::boost::algorithm::detail::insert( Input, At, ::boost::begin(Insert), ::boost::end(Insert) ); in insert()
74 ForwardIteratorT Begin, in operator ()()
78 ForwardIteratorT InsertIt=Begin; in operator ()()
110 ForwardIteratorT Begin, in operator ()()
114 if ( Begin!=End ) in operator ()()
118 Input.insert( At, Begin, End ); in operator ()()
122 Input.insert( Input.begin(), Begin, End ); in operator ()()
[all …]
/OK3568_Linux_fs/kernel/fs/ufs/
H A Dutil.h323 #define ubh_get_addr8(ubh,begin) \ argument
324 ((u8*)(ubh)->bh[(begin) >> uspi->s_fshift]->b_data + \
325 ((begin) & ~uspi->s_fmask))
327 #define ubh_get_addr16(ubh,begin) \ argument
328 (((__fs16*)((ubh)->bh[(begin) >> (uspi->s_fshift-1)]->b_data)) + \
329 ((begin) & ((uspi->fsize>>1) - 1)))
331 #define ubh_get_addr32(ubh,begin) \ argument
332 (((__fs32*)((ubh)->bh[(begin) >> (uspi->s_fshift-2)]->b_data)) + \
333 ((begin) & ((uspi->s_fsize>>2) - 1)))
335 #define ubh_get_addr64(ubh,begin) \ argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/device/
H A Darray.hpp39 array_adapter(char_type* begin, char_type* end);
40 array_adapter(char_type* begin, std::size_t length);
41 array_adapter(const char_type* begin, const char_type* end);
42 array_adapter(const char_type* begin, std::size_t length);
64 BOOST_PP_CAT(basic_, name)(char_type* begin, char_type* end) \
65 : base_type(begin, end) { } \
66 BOOST_PP_CAT(basic_, name)(char_type* begin, std::size_t length) \
67 : base_type(begin, length) { } \
68 BOOST_PP_CAT(basic_, name)(const char_type* begin, const char_type* end) \
69 : base_type(begin, end) { } \
[all …]
/OK3568_Linux_fs/kernel/arch/x86/kernel/
H A Ddumpstack_32.c40 unsigned long *begin = (unsigned long *)this_cpu_read(hardirq_stack_ptr); in in_hardirq_stack() local
41 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_hardirq_stack()
47 if (stack < begin || stack > end) in in_hardirq_stack()
51 info->begin = begin; in in_hardirq_stack()
58 info->next_sp = (unsigned long *)*begin; in in_hardirq_stack()
65 unsigned long *begin = (unsigned long *)this_cpu_read(softirq_stack_ptr); in in_softirq_stack() local
66 unsigned long *end = begin + (THREAD_SIZE / sizeof(long)); in in_softirq_stack()
72 if (stack < begin || stack > end) in in_softirq_stack()
76 info->begin = begin; in in_softirq_stack()
83 info->next_sp = (unsigned long *)*begin; in in_softirq_stack()
[all …]
H A Ddumpstack_64.c90 unsigned long begin, end, stk = (unsigned long)stack; in in_exception_stack() local
97 begin = (unsigned long)__this_cpu_read(cea_exception_stacks); in in_exception_stack()
102 if (!begin) in in_exception_stack()
105 end = begin + sizeof(struct cea_exception_stacks); in in_exception_stack()
107 if (stk < begin || stk >= end) in in_exception_stack()
111 k = (stk - begin) >> PAGE_SHIFT; in in_exception_stack()
118 begin += (unsigned long)ep->offs; in in_exception_stack()
119 end = begin + (unsigned long)ep->size; in in_exception_stack()
123 info->begin = (unsigned long *)begin; in in_exception_stack()
132 unsigned long *begin = end - (IRQ_STACK_SIZE / sizeof(long)); in in_irq_stack() local
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/support/detail/
H A Dsegmented_fold_until_impl.hpp82 typename Begin
92 typename Begin
97 , bool IsDone = result_of::equal_to<Begin, End>::type::value
204 // auto cur = begin(segs), end = end(segs);
222 …template <typename Begin, typename End, typename State, typename Context, typename Fun, bool IsEmp…
225 // begin != end and !empty(*begin)
227 push_context<Begin, End, Context>
238 typename result_of::deref<Begin>::type
253 typename result_of::next<Begin>::type
278 static type call(Begin const& beg, End const& end, State const& state in call()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/iterator_range/detail/
H A Dsegmented_iterator_range.hpp16 #include <boost/fusion/sequence/intrinsic/begin.hpp>
81 // return iterator_range(begin(car(cdr(stack_begin))), end(front(car(stack_begin))));
91 …// iterator_range(next(begin(car(cdr(stack_begin)))), end(segments(front(car(stack_begin)))…
161 … // iterator_range(next(begin(car(cdr(stack_begin)))), end(segments(front(car(stack_begin))))), in call()
206 // return iterator_range(begin(car(cdr(stack_begin))), end(front(car(stack_begin)))); in call()
232 // return iterator_range(begin(front(car(stack_end))), begin(car(cdr(stack_end))));
239 // iterator_range(begin(segments(front(car(stack_end)))), begin(car(cdr(stack_end)))),
270 typename result_of::begin<
307 … // iterator_range(begin(segments(front(car(stack_end)))), begin(car(cdr(stack_end)))), in call()
311 … rest_type(fusion::begin(fusion::segments(*stack.car.first)), stack.cdr.car.first) in call()
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dfifo.h31 size_t begin; /* Offset of the first byte to read. */ member
39 f->end = f->begin = 0; in fifo_clear()
46 if (f->begin == f->end) in fifo_reserve()
56 if (f->begin > FIFO_MIN) { in fifo_reserve()
57 memmove(f->data, f->data + f->begin, f->end - f->begin); in fifo_reserve()
58 f->end -= f->begin; in fifo_reserve()
59 f->begin = 0; in fifo_reserve()
78 f->end = f->begin + n; in fifo_trim_to()
89 return (f->end - f->begin) / f->item_size; in fifo_occupancy()
94 char * ret = f->data + f->begin; in fifo_read()
[all …]
/OK3568_Linux_fs/external/recovery/mtdutils/
H A Drk29.c186 long begin, end; in rk29_fread() local
202 begin = ftell(stream); in rk29_fread()
203 if (begin < 0) in rk29_fread()
204 begin = 0; in rk29_fread()
210 end = begin + total; in rk29_fread()
211 offset = begin & ~READ_MASK; in rk29_fread()
213 if (begin & READ_MASK) { in rk29_fread()
217 count = min(end, offset + READ_SIZE) - begin; in rk29_fread()
218 memcpy(p, buf + (begin & READ_MASK), count); in rk29_fread()
242 fseek(stream, begin + count * size, SEEK_SET); in rk29_fread()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dlocal_minimum_util.hpp35 auto edge = edges.begin(); in start_list_on_local_maximum()
58 std::rotate(edges.begin(), edge, edges.end()); in start_list_on_local_maximum()
71 auto next_edge = edges.begin(); in create_bound_towards_minimum()
107 bnd.edges.reserve(static_cast<std::size_t>(std::distance(edges.begin(), next_edge))); in create_bound_towards_minimum()
108 std::move(edges.begin(), next_edge, std::back_inserter(bnd.edges)); in create_bound_towards_minimum()
109 edges.erase(edges.begin(), next_edge); in create_bound_towards_minimum()
111 std::reverse(bnd.edges.begin(), bnd.edges.end()); in create_bound_towards_minimum()
122 auto next_edge = edges.begin(); in create_bound_towards_maximum()
152 bnd.edges.reserve(static_cast<std::size_t>(std::distance(edges.begin(), next_edge))); in create_bound_towards_maximum()
153 std::move(edges.begin(), next_edge, std::back_inserter(bnd.edges)); in create_bound_towards_maximum()
[all …]
/OK3568_Linux_fs/kernel/arch/sh/mm/
H A Dcache-sh2a.c53 unsigned long begin, end; in sh2a__flush_wback_region() local
57 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_wback_region()
66 if (((end - begin) >> PAGE_SHIFT) >= MAX_OCACHE_PAGES) { in sh2a__flush_wback_region()
67 begin = CACHE_OC_ADDRESS_ARRAY; in sh2a__flush_wback_region()
68 end = begin + (nr_ways * current_cpu_data.dcache.way_size); in sh2a__flush_wback_region()
70 for (v = begin; v < end; v += L1_CACHE_BYTES) { in sh2a__flush_wback_region()
78 for (v = begin; v < end; v += L1_CACHE_BYTES) in sh2a__flush_wback_region()
94 unsigned long begin, end; in sh2a__flush_purge_region() local
97 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2a__flush_purge_region()
104 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2a__flush_purge_region()
[all …]
H A Dcache-sh2.c21 unsigned long begin, end; in sh2__flush_wback_region() local
23 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_wback_region()
26 for (v = begin; v < end; v+=L1_CACHE_BYTES) { in sh2__flush_wback_region()
42 unsigned long begin, end; in sh2__flush_purge_region() local
44 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_purge_region()
48 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_purge_region()
73 unsigned long begin, end; in sh2__flush_invalidate_region()
75 begin = (unsigned long)start & ~(L1_CACHE_BYTES-1); in sh2__flush_invalidate_region()
79 for (v = begin; v < end; v+=L1_CACHE_BYTES) in sh2__flush_invalidate_region()
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/mtdutils/
H A Drk29.c211 long begin, end; in rk29_fread() local
227 begin = ftell(stream); in rk29_fread()
228 if (begin < 0) in rk29_fread()
229 begin = 0; in rk29_fread()
235 end = begin + total; in rk29_fread()
236 offset = begin & ~READ_MASK; in rk29_fread()
238 if (begin & READ_MASK) { in rk29_fread()
242 count = min(end, offset + READ_SIZE) - begin; in rk29_fread()
243 memcpy(p, buf + (begin & READ_MASK), count); in rk29_fread()
267 fseek(stream, begin + count * size, SEEK_SET); in rk29_fread()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/
H A D0006-replace-sym_iterator-0-with-sym_iterator.patch10 | { lo = hi = 0; name = ""; begin = end = (sym_iterator)0;}
63 - { lo = hi = 0; name = ""; begin = end = (sym_iterator)0;}
64 + { lo = hi = 0; name = ""; begin = end = sym_iterator();}
72 - if (begin == (sym_iterator)0)
73 + if (begin == sym_iterator())
74 begin = b;
97 - if (begin == (sym_iterator)0)
98 + if (begin == sym_iterator())
101 for (sym_iterator it = begin; it != end; ++it)
106 - if (begin != (sym_iterator)0)
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/glm/glm/
H A D0001-Silence-clang-warnings.patch61 const float begin = -glm::pi<float>();
66 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
71 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
79 const float begin = -glm::pi<float>();
84 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
89 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
97 const float begin = -glm::pi<float>();
102 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
107 for (float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
115 const float begin = -glm::pi<float>();
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/
H A Dfind_iterator.hpp19 #include <boost/range/begin.hpp>
95 IteratorT Begin, in find_iterator() argument
99 m_Match(Begin,Begin), in find_iterator()
117 … m_Match=::boost::make_iterator_range(::boost::begin(lit_col), ::boost::begin(lit_col)); in find_iterator()
165 m_Match.begin() == m_End && in eof()
258 IteratorT Begin, in split_iterator() argument
262 m_Match(Begin,Begin), in split_iterator()
263 m_Next(Begin), in split_iterator()
268 if(Begin!=End) in split_iterator()
286 m_Match=make_iterator_range(::boost::begin(lit_col), ::boost::begin(lit_col)); in split_iterator()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/detail/
H A Drange_return.hpp12 #include <boost/range/begin.hpp>
24 return_begin_found, // [begin, found) range (*)
25 return_begin_next, // [begin, next(found)) range
26 return_begin_prior, // [begin, prior(found)) range
30 return_begin_end // [begin, end) range
77 return found == boost::begin(rng) in pack()
92 return type(boost::begin(rng), found); in pack()
105 return type( boost::begin(rng), in pack()
119 return type( boost::begin(rng), in pack()
120 found == boost::begin(rng) ? found : boost::prior(found) ); in pack()
[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/parallel/
H A Dmerge.h45 * @param __begin1 Begin iterator of first sequence.
47 * @param __begin2 Begin iterator of second sequence.
49 * @param __target Target begin iterator.
93 * @param __begin1 Begin iterator of first sequence.
95 * @param __begin2 Begin iterator of second sequence.
97 * @param __target Target begin iterator.
159 * @param __begin1 Begin iterator of first sequence.
161 * @param __begin2 Begin iterator of second sequence.
163 * @param __target Target begin iterator.
184 * @param __begin1 Begin iterator of first sequence.
[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/parallel/
H A Dmerge.h45 * @param __begin1 Begin iterator of first sequence.
47 * @param __begin2 Begin iterator of second sequence.
49 * @param __target Target begin iterator.
93 * @param __begin1 Begin iterator of first sequence.
95 * @param __begin2 Begin iterator of second sequence.
97 * @param __target Target begin iterator.
159 * @param __begin1 Begin iterator of first sequence.
161 * @param __begin2 Begin iterator of second sequence.
163 * @param __target Target begin iterator.
184 * @param __begin1 Begin iterator of first sequence.
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/binutils/binutils/
H A D0017-CVE-2022-38127-2.patch99 READ_ULEB (begin, start, finish);
101 - begin = fetch_indexed_addr (begin, pointer_size);
102 - end = fetch_indexed_addr (begin, pointer_size);
103 + begin = fetch_indexed_addr ((begin * pointer_size)
105 + end = fetch_indexed_addr ((begin * pointer_size)
109 READ_ULEB (begin, start, finish);
111 - begin = fetch_indexed_addr (begin, pointer_size);
112 + begin = fetch_indexed_addr ((begin * pointer_size)
114 end = begin + length;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/
H A Dbegin_end_impl.hpp34 typedef typename Sequence::begin type;
46 // 'begin/end' templates
81 // a sequence with nested 'begin/end' typedefs; just query them
82 AUX778076_IMPL_SPEC(begin, nested_begin_end_tag, typename Sequence::begin)
85 // if a type 'T' does not contain 'begin/end' or 'tag' members
86 // and doesn't specialize either 'begin/end' or 'begin_impl/end_impl'
88 AUX778076_IMPL_SPEC(begin, non_sequence_tag, void_)
90 AUX778076_IMPL_SPEC(begin, na, void_)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover_impl.cpp23 auto pt = points.begin(); in start_list_on_local_minimum()
33 if (next_pt == points.end()) { next_pt = std::next(points.begin()); } in start_list_on_local_minimum()
41 std::rotate(points.begin(), pt, points.end()); in start_list_on_local_minimum()
42 points.push_back(*points.begin()); in start_list_on_local_minimum()
51 const auto begin = pt; in create_bound_towards_maximum() local
52 auto next_pt = std::next(begin); in create_bound_towards_maximum()
59 const auto pt_distance = std::distance(begin, next_pt); in create_bound_towards_maximum()
65 bnd.points.reserve(static_cast<std::size_t>(std::distance(begin, next_pt))); in create_bound_towards_maximum()
66 std::copy(begin, next_pt, std::back_inserter(bnd.points)); in create_bound_towards_maximum()
77 auto begin = pt; in create_bound_towards_minimum() local
[all …]
/OK3568_Linux_fs/kernel/drivers/md/persistent-data/
H A Ddm-space-map-metadata.c96 unsigned begin; member
103 brb->begin = 0; in brb_init()
109 return brb->begin == brb->end; in brb_empty()
128 if (next == brb->begin) in brb_push()
147 bop = brb->bops + brb->begin; in brb_peek()
159 brb->begin = brb_next(brb, brb->begin); in brb_pop()
172 dm_block_t begin; member
312 for (i = smm->uncommitted.begin; in sm_metadata_get_count()
352 for (i = smm->uncommitted.begin; in sm_metadata_count_is_more_than_one()
454 r = sm_ll_find_common_free_block(&smm->old_ll, &smm->ll, smm->begin, smm->ll.nr_blocks, b); in sm_metadata_new_block_()
[all …]

12345678910>>...141