Home
last modified time | relevance | path

Searched refs:begin (Results 1 – 25 of 2165) sorted by relevance

12345678910>>...87

/freebsd/contrib/dialog/samples/
H A Dwheel28 --begin "`scaley 35`" "`scalex 95`" --infobox "mkdir -p news -m 755" 0 0 --and-widget \
30 --begin "`scaley 48`" "`scalex 78`" --infobox "cd /var/log/news" 0 0 --and-widget \
31 --begin "`scaley 51`" "`scalex 61`" --infobox "mkdir -p OLD -m 755" 0 0 --and-widget \
33 --begin "`scaley 51`" "`scalex 40`" --infobox "cd /var/spool" 0 0 --and-widget \
37 --begin "`scaley 27`" "`scalex 2`" --infobox "CURMASK=`umask`" 0 0 --and-widget \
38 --begin "`scaley 19`" "`scalex 4`" --infobox "umask 02" 0 0 --and-widget \
41 --begin "`scaley 2`" "`scalex 37`" --infobox "cd in.coming" 0 0 --and-widget \
42 --begin "`scaley 1`" "`scalex 46`" --infobox "mkdir -p bad tmp" 0 0 --and-widget \
44 --begin "`scaley 5`" "`scalex 76`" --infobox "umask $CURMASK" 0 0 --and-widget \
48 --begin "`scaley 34`" "`scalex 95`" --infobox "cd ~news" 0 0 --and-widget \
[all …]
/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_event_queue.c77 begin = evq->begin[evb]; in pt_evq_enqueue()
90 if (begin == gap) in pt_evq_enqueue()
101 uint8_t begin, end; in pt_evq_dequeue() local
109 begin = evq->begin[evb]; in pt_evq_dequeue()
118 if (begin == end) in pt_evq_dequeue()
121 evq->begin[evb] = pt_evq_inc(begin); in pt_evq_dequeue()
142 uint8_t begin, end; in pt_evq_empty() local
150 begin = evq->begin[evb]; in pt_evq_empty()
177 uint8_t begin, end; in pt_evq_find() local
185 begin = evq->begin[evb]; in pt_evq_find()
[all …]
H A Dpt_sync.c70 const uint8_t *begin, *end; in pt_find_psb() local
76 begin = config->begin; in pt_find_psb()
106 if (pos < begin) in pt_find_psb()
127 return (begin <= pos) && (pos <= end); in pt_sync_within_bounds()
133 const uint8_t *begin, *end; in pt_sync_set() local
139 begin = config->begin; in pt_sync_set()
164 const uint8_t *begin, *end, *start; in pt_sync_forward() local
170 begin = config->begin; in pt_sync_forward()
212 const uint8_t *begin, *end; in pt_sync_backward() local
217 begin = config->begin; in pt_sync_backward()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_leb128.h28 if (UNLIKELY(begin == end)) in EncodeSLEB128()
30 *(begin++) = byte; in EncodeSLEB128()
32 return begin; in EncodeSLEB128()
42 return begin; in DecodeSLEB128()
43 byte = *(begin++); in DecodeSLEB128()
51 return begin; in DecodeSLEB128()
63 *(begin++) = byte; in EncodeULEB128()
65 return begin; in EncodeULEB128()
75 return begin; in DecodeULEB128()
76 byte = *(begin++); in DecodeULEB128()
[all …]
H A Dsanitizer_lzw.h36 for (auto it = begin; it != end; ++it) in LzwEncode()
57 if (begin == end) in LzwEncode()
62 ++begin; in LzwEncode()
63 for (auto it = begin; it != end; ++it) { in LzwEncode()
87 if (begin == end) in LzwDecode()
92 ++begin; in LzwDecode()
94 if (begin == end) in LzwDecode()
98 v = *begin; in LzwDecode()
99 ++begin; in LzwDecode()
130 LzwCodeType prev_code = *begin; in LzwDecode()
[all …]
/freebsd/contrib/byacc/test/
H A Dgrammar.y785 $$->begin = $1.begin;
802 $$->begin = $1.begin;
833 $$.begin = $1.begin;
838 $$.begin = $1.begin;
846 $$.begin = 0L;
855 $$.begin = $1.begin;
861 $$.begin = $1.begin;
936 $$.begin = $1.begin;
951 $$->begin = $1.begin;
963 $$->begin = $1.begin;
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DICF.cpp109 while (begin < end) { in segregate()
113 chunks.begin() + begin + 1, chunks.begin() + end, [&](SectionChunk *s) { in segregate()
118 size_t mid = bound - chunks.begin(); in segregate()
129 begin = mid; in segregate()
144 return std::equal(ra.begin(), ra.end(), rb.begin(), rb.end(), in assocEquals()
212 while (begin < end) { in forEachClassRange()
214 fn(begin, mid); in forEachClassRange()
215 begin = mid; in forEachClassRange()
299 forEachClass([&](size_t begin, size_t end) { segregate(begin, end, true); }); in run() argument
305 [&](size_t begin, size_t end) { segregate(begin, end, false); }); in run() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp90 addTypedData(eltLLVMType, begin, begin + eltSize); in addTypedData()
91 addTypedData(eltLLVMType, begin + eltSize, begin + 2 * eltSize); in addTypedData()
96 addOpaqueData(begin, begin + CGM.getContext().getTypeSizeInChars(type)); in addTypedData()
109 addOpaqueData(begin + valueSize, begin + atomicSize); in addTypedData()
210 addTypedData(type, begin, begin + getTypeStoreSize(CGM, type)); in addTypedData()
229 addLegalTypedData(componentTy, begin, begin + componentSize); in addTypedData()
260 addLegalTypedData(eltTy, begin, begin + eltSize); in addLegalTypedData()
300 Entries.insert(Entries.begin() + index, {begin, end, type}); in addEntry()
344 addEntry(eltTy, begin, begin + eltSize); in addEntry()
345 begin += eltSize; in addEntry()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dinterval_set_test.cpp23 EXPECT_TRUE(S.begin() == S.end()); in TEST()
34 EXPECT_EQ(std::next(S.begin()), S.end()); in TEST()
35 EXPECT_EQ(S.find(7), S.begin()); in TEST()
90 EXPECT_EQ(std::next(S.begin()), S.end()); in TEST()
91 EXPECT_EQ(S.begin()->first, 7U); in TEST()
92 EXPECT_EQ(S.begin()->second, 9U); in TEST()
103 EXPECT_EQ(std::next(S.begin()), S.end()); in TEST()
104 EXPECT_EQ(S.begin()->first, 8U); in TEST()
105 EXPECT_EQ(S.begin()->second, 10U); in TEST()
117 EXPECT_EQ(S.begin()->first, 7U); in TEST()
[all …]
H A Dinterval_map_test.cpp23 EXPECT_TRUE(M.begin() == M.end()); in TEST()
34 EXPECT_EQ(std::next(M.begin()), M.end()); in TEST()
35 EXPECT_EQ(M.find(7), M.begin()); in TEST()
157 EXPECT_EQ(std::next(M.begin()), M.end()); in TEST()
158 EXPECT_EQ(M.begin()->first.first, 7U); in TEST()
159 EXPECT_EQ(M.begin()->first.second, 9U); in TEST()
171 EXPECT_EQ(M.begin()->first.first, 8U); in TEST()
172 EXPECT_EQ(M.begin()->first.second, 10U); in TEST()
184 EXPECT_EQ(M.begin()->first.first, 7U); in TEST()
185 EXPECT_EQ(M.begin()->first.second, 8U); in TEST()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Daccess.h23 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _Tp* begin(_Tp (&__array)[_Np]) _NOEXCEPT { in begin() function
35 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto begin(_Cp& __c) -> decltype(__c.begin()) {
36 return __c.begin();
40 …IBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto begin(const _Cp& __c) -> decltype(__c.begin
41 return __c.begin();
58 -> decltype(std::begin(__c)) {
59 return std::begin(__c);
72 _LIBCPP_HIDE_FROM_ABI typename _Cp::iterator begin(_Cp& __c) { in begin() function
73 return __c.begin(); in begin()
77 _LIBCPP_HIDE_FROM_ABI typename _Cp::const_iterator begin(const _Cp& __c) { in begin() function
[all …]
/freebsd/contrib/processor-trace/libipt/test/src/
H A Dptunit-sync.c56 sfix->config.begin = sfix->buffer; in sfix_init()
115 sfix->config.end = sfix->config.begin; in sync_fwd_empty()
128 sfix->config.end = sfix->config.begin; in sync_bwd_empty()
163 sfix_encode_psb(sfix->config.begin); in sync_fwd_here()
167 ptu_ptr_eq(sync, sfix->config.begin); in sync_fwd_here()
191 sfix_encode_psb(sfix->config.begin + 0x23); in sync_fwd()
219 sfix_encode_psb(sfix->config.begin); in sync_fwd_past()
247 sfix_encode_psb(sfix->config.begin); in sync_fwd_cutoff()
249 sfix->config.begin += 1; in sync_fwd_cutoff()
263 sfix_encode_psb(sfix->config.begin); in sync_bwd_cutoff()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp82 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
83 uptr end = begin + size; in LockStuffAndStopTheWorld()
84 ScanGlobalRange(begin, end, &params->argument->frontier); in LockStuffAndStopTheWorld()
90 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
91 uptr end = begin + size; in LockStuffAndStopTheWorld()
99 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
100 uptr end = begin + size; in LockStuffAndStopTheWorld()
117 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
118 uptr end = begin + size; in LockStuffAndStopTheWorld()
121 params->allocator_caches[i] >= begin && in LockStuffAndStopTheWorld()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h190 auto begin = m_entries.begin(); in Insert() local
322 typename Collection::const_iterator begin = m_entries.begin(); in FindEntryIndexThatContains() local
344 typename Collection::const_iterator begin = m_entries.begin(); in FindEntryThatContains() local
366 typename Collection::const_iterator begin = m_entries.begin(); in FindEntryThatContains() local
384 const_iterator begin() const { return m_entries.begin(); } in begin() function
456 m_entries.erase(begin() + start, begin() + end); in Erase()
578 typename Collection::const_iterator begin = m_entries.begin(); in FindEntryThatContains() local
597 auto begin = m_entries.begin(), end = m_entries.end(); in FindEntryStartsAt() local
619 typename Collection::const_iterator begin = m_entries.begin(); in FindEntryThatContainsOrFollows() local
653 const_iterator begin() const { return m_entries.begin(); } in begin() function
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DICF.cpp170 return std::equal(ia->relocs.begin(), ia->relocs.end(), ib->relocs.begin(), in equalsConstant()
208 if (!std::equal(ia->relocs.begin(), ia->relocs.end(), ib->relocs.begin(), f)) in equalsVariable()
238 for (size_t i = begin + 1; i < end; ++i) in findBoundary()
247 while (begin < end) { in forEachClassRange()
249 func(begin, mid); in forEachClassRange()
250 begin = mid; in forEachClassRange()
336 if (end - begin < 2) in run()
346 while (begin < end) { in segregate()
350 icfInputs.begin() + begin + 1, icfInputs.begin() + end, in segregate()
358 for (size_t i = begin; i < mid; ++i) in segregate()
[all …]
/freebsd/contrib/kyua/utils/format/
H A Dformatter.cpp67 std::string::size_type begin) in find_next_placeholder() argument
69 begin = expansion.find('%', begin); in find_next_placeholder()
70 while (begin != std::string::npos && expansion[begin + 1] == '%') in find_next_placeholder()
71 begin = expansion.find('%', begin + 2); in find_next_placeholder()
72 if (begin == std::string::npos) in find_next_placeholder()
74 if (begin == expansion.length() - 1) in find_next_placeholder()
77 std::string::size_type end = begin + 1; in find_next_placeholder()
80 const std::string placeholder = expansion.substr(begin, end - begin + 1); in find_next_placeholder()
85 return std::make_pair(begin, placeholder); in find_next_placeholder()
161 strip_double_percent(const std::string& in, const std::string::size_type begin, in strip_double_percent() argument
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DICF.cpp208 while (begin < end) { in segregate()
212 std::stable_partition(sections.begin() + begin + 1, in segregate()
218 size_t mid = bound - sections.begin(); in segregate()
224 for (size_t i = begin; i < mid; ++i) in segregate()
231 begin = mid; in segregate()
382 for (size_t i = begin + 1; i < end; ++i) in findBoundary()
396 while (begin < end) { in forEachClassRange()
397 size_t mid = findBoundary(begin, end); in forEachClassRange()
398 fn(begin, mid); in forEachClassRange()
399 begin = mid; in forEachClassRange()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DVariableList.cpp58 m_variables.erase(m_variables.begin() + idx); in RemoveVariableAtIndex()
65 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariableIndex()
67 return std::distance(m_variables.begin(), pos); in FindVariableIndex()
76 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariable()
92 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariable()
106 for (pos = m_variables.begin(); pos != end; ++pos) in AppendVariablesIfUnique()
116 for (pos = m_variables.begin(); pos != end; ++pos) { in AppendVariablesIfUnique()
133 for (pos = m_variables.begin(); pos != end; ++pos) { in AppendVariablesWithScope()
148 const iterator begin = m_variables.begin(); in FindIndexForVariable() local
152 return std::distance(begin, pos); in FindIndexForVariable()
[all …]
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp97 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories()
104 sorted_categories.begin(), sorted_categories.end(), in EnableAllCategories()
106 pos = std::distance(sorted_categories.begin(), iter); in EnableAllCategories()
150 for (pos = m_map.begin(); pos != end; pos++) { in AnyMatches()
162 ActiveCategoriesIterator begin, end = m_active_categories.end(); in Get() local
179 for (begin = m_active_categories.begin(); begin != end; begin++) { in Get()
180 lldb::TypeCategoryImplSP category_sp = *begin; in Get()
214 for (begin = m_active_categories.begin(); begin != end; begin++) { in ForEach()
215 lldb::TypeCategoryImplSP category = *begin; in ForEach()
224 for (pos = m_map.begin(); pos != end; pos++) { in ForEach()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h305 return begin()[idx];
309 return begin()[idx];
314 return begin()[0]; in front()
318 return begin()[0]; in front()
478 free(this->begin()); in takeAllocationForGrow()
606 free(this->begin()); in assignRemote()
617 free(this->begin()); in ~SmallVectorImpl()
965 return std::equal(this->begin(), this->end(), RHS.begin());
1030 NewEnd = std::copy(RHS.begin(), RHS.begin()+RHSSize, this->begin());
1052 std::copy(RHS.begin(), RHS.begin()+CurSize, this->begin());
[all …]
H A DTinyPtrVector.h184 iterator begin() { in begin() function
188 return cast<VecTy *>(Val)->begin(); in begin()
193 return begin() + (Val.isNull() ? 0 : 1); in end()
198 const_iterator begin() const { in begin() function
214 return const_reverse_iterator(begin()); in rend()
286 if (I == begin()) in erase()
302 if (S == begin() && S != E) in erase()
320 assert(I == begin()); in insert()
323 return begin(); in insert()
337 ptrdiff_t Offset = I - begin(); in insert()
[all …]
/freebsd/contrib/bearssl/test/
H A Dtest_speed.c56 begin = clock(); \
108 begin = clock(); \
157 begin = clock(); \
203 begin = clock(); \
301 begin = clock(); in SPEED_HASH()
400 begin = clock(); in test_speed_poly1305_inner()
484 begin = clock(); in test_speed_eax_inner()
554 begin = clock(); in test_speed_shake_inner()
582 begin = clock(); in test_speed_shake_inner()
786 begin = clock(); in test_speed_rsa_inner()
[all …]
/freebsd/usr.sbin/newsyslog/tests/
H A Dlegacy_test.sh20 begin() function
279 begin "noaction ${name_postfix}"
349 begin "noaction ${name_postfix}"
380 begin "rotate time 1 ${name_postfix}"
388 begin "rotate time 2 ${name_postfix}"
410 begin "noaction ${name_postfix}"
468 begin "create file"
475 begin "rotate p flag 1 ${ext}"
503 begin "create file recompress"
509 begin "rotate normal 1"
[all …]
/freebsd/bin/mv/tests/
H A Dlegacy_test.sh8 begin() function
140 begin 'Rename file'
148 begin 'Move files into directory'
160 begin 'Move file from directory to file'
201 begin 'Rename directory'
209 begin 'Move directory to directory name'
218 begin 'Move directory to directory'
245 begin 'Move directory to existing file'
257 begin 'Rename fifo'
265 begin 'Move fifos into directory'
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Daccess.h45 { _LIBCPP_AUTO_CAST(__t.begin()) } -> input_or_output_iterator; in requires()
48 void begin(auto&) = delete;
49 void begin(const auto&) = delete;
54 { _LIBCPP_AUTO_CAST(begin(__t)) } -> input_or_output_iterator;
75 noexcept(noexcept(_LIBCPP_AUTO_CAST(__t.begin()))) { in operator()
76 return _LIBCPP_AUTO_CAST(__t.begin()); in operator()
82 noexcept(noexcept(_LIBCPP_AUTO_CAST(begin(__t)))) { in operator()
83 return _LIBCPP_AUTO_CAST(begin(__t)); in operator()
91 inline constexpr auto begin = __begin::__fn{};
99 using iterator_t = decltype(ranges::begin(std::declval<_Tp&>()));
[all …]

12345678910>>...87