Searched refs:begin (Results 1 - 25 of 2755) sorted by relevance

1234567891011>>

/freebsd-current/contrib/dialog/samples/
H A Dwheel27 --begin "`scaley 27`" "`scalex 98`" --infobox "pushd /var/log >/dev/null" 0 0 --and-widget \
28 --begin "`scaley 35`" "`scalex 95`" --infobox "mkdir -p news -m 755" 0 0 --and-widget \
29 --begin "`scaley 45`" "`scalex 86`" --infobox "chown news.news news" 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 \
32 --begin "`scaley 52`" "`scalex 47`" --infobox "chown news.news OLD" 0 0 --and-widget \
33 --begin "`scaley 51`" "`scalex 40`" --infobox "cd /var/spool" 0 0 --and-widget \
34 --begin "`scaley 48`" "`scalex 25`" --infobox "mkdir -p news -m 775" 0 0 --and-widget \
35 --begin "`scaley 42`" "`scalex 13`" --infobox "chown news.news news" 0 0 --and-widget \
36 --begin "`scale
[all...]
H A Dinfobox312 --begin 5 0 \
H A Dinfobox412 --begin 0 5 \
H A Dtailboxbg213 --begin 10 10 "$@" --tailboxbg listing.out 8 58 \
15 --begin 15 15 "$@" --tailboxbg listing.out 8 58 \
17 --begin 3 10 "$@" --msgbox "Press OK " 5 30 \
H A Dtailboxbg112 --begin 10 10 "$@" --tailboxbg listing.out 8 58 \
14 --begin 15 15 "$@" --tailboxbg listing.out 8 58 \
16 --begin 3 10 "$@" --msgbox "Press OK " 5 30 \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_leb128.h18 It EncodeSLEB128(T value, It begin, It end) { argument
28 if (UNLIKELY(begin == end))
30 *(begin++) = byte;
32 return begin;
36 It DecodeSLEB128(It begin, It end, T* v) { argument
41 if (UNLIKELY(begin == end))
42 return begin;
43 byte = *(begin++);
51 return begin;
55 It EncodeULEB128(T value, It begin, I argument
69 DecodeULEB128(It begin, It end, T* v) argument
[all...]
H A Dsanitizer_range.h22 uptr begin; member in struct:__sanitizer::Range
27 return lhs.begin == rhs.begin && lhs.end == rhs.end;
H A Dsanitizer_lzw.h23 ItOut LzwEncode(ItIn begin, ItIn end, ItOut out) { argument
36 for (auto it = begin; it != end; ++it)
57 if (begin == end)
61 LzwCodeType match = prefix_to_code.find({kNoPrefix, *begin})->second;
62 ++begin;
63 for (auto it = begin; it != end; ++it) {
86 ItOut LzwDecode(ItIn begin, ItIn end, ItOut out) { argument
87 if (begin == end)
91 InternalMmapVector<T> dict_len1(*begin);
92 ++begin;
[all...]
/freebsd-current/cddl/usr.sbin/dtrace/tests/common/begin/
H A DMakefile9 err.D_PDESC_ZERO.begin.d \
11 tst.begin.d \
12 tst.begin.d.out \
/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_event_queue.c69 uint8_t begin, end, gap, idx; local
77 begin = evq->begin[evb];
80 if (evq_max <= begin)
90 if (begin == gap)
101 uint8_t begin, end; local
109 begin = evq->begin[evb];
112 if (evq_max <= begin)
118 if (begin
142 uint8_t begin, end; local
177 uint8_t begin, end; local
[all...]
H A Dpt_sync.c70 const uint8_t *begin, *end; local
76 begin = config->begin;
106 if (pos < begin)
120 static int pt_sync_within_bounds(const uint8_t *pos, const uint8_t *begin, argument
127 return (begin <= pos) && (pos <= end);
133 const uint8_t *begin, *end; local
139 begin = config->begin;
142 if (!pt_sync_within_bounds(pos, begin, en
164 const uint8_t *begin, *end, *start; local
212 const uint8_t *begin, *end; local
[all...]
/freebsd-current/usr.bin/mkcsmapper/
H A Dldef.h34 u_int32_t begin; member in struct:__anon6476
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dinitializer_list.inc14 using std::begin;
/freebsd-current/contrib/llvm-project/libcxx/include/__iterator/
H A Daccess.h23 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _Tp* begin(_Tp (&__array)[_Np]) _NOEXCEPT {
35 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto begin(_Cp& __c) -> decltype(__c.begin()) {
36 return __c.begin();
40 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto begin(const _Cp& __c) -> decltype(__c.begin()) {
41 return __c.begin();
57 _LIBCPP_HIDE_FROM_ABI constexpr auto cbegin(const _Cp& __c) noexcept(noexcept(std::begin(__c)))
58 -> decltype(std::begin(__c)) { function
59 return std::begin(__
72 _LIBCPP_HIDE_FROM_ABI typename _Cp::iterator begin(_Cp& __c) { function
77 _LIBCPP_HIDE_FROM_ABI typename _Cp::const_iterator begin(const _Cp& __c) { function
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DMemoryBufferRef.h35 const char *getBufferStart() const { return Buffer.begin(); }
42 return LHS.Buffer.begin() == RHS.Buffer.begin() &&
44 LHS.Identifier.begin() == RHS.Identifier.begin() &&
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DICF.cpp46 void segregate(size_t begin, size_t end, bool constant);
55 size_t findBoundary(size_t begin, size_t end);
57 void forEachClassRange(size_t begin, size_t end,
108 void ICF::segregate(size_t begin, size_t end, bool constant) { argument
109 while (begin < end) {
113 chunks.begin() + begin + 1, chunks.begin() + end, [&](SectionChunk *s) {
115 return equalsConstant(chunks[begin], s);
116 return equalsVariable(chunks[begin],
203 findBoundary(size_t begin, size_t end) argument
210 forEachClassRange(size_t begin, size_t end, std::function<void(size_t, size_t)> fn) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dinterval_set_test.cpp23 EXPECT_TRUE(S.begin() == S.end());
34 EXPECT_EQ(std::next(S.begin()), S.end());
35 EXPECT_EQ(S.find(7), S.begin());
47 EXPECT_EQ(std::next(S.begin()), S.end()); // Should see just one range.
59 EXPECT_EQ(std::next(S.begin()), S.end()); // Should see just one range.
77 EXPECT_EQ(std::next(S.begin()), S.end()); // Should see just one range.
90 EXPECT_EQ(std::next(S.begin()), S.end());
91 EXPECT_EQ(S.begin()->first, 7U);
92 EXPECT_EQ(S.begin()->second, 9U);
103 EXPECT_EQ(std::next(S.begin()),
[all...]
H A Dinterval_map_test.cpp23 EXPECT_TRUE(M.begin() == M.end());
34 EXPECT_EQ(std::next(M.begin()), M.end());
35 EXPECT_EQ(M.find(7), M.begin());
52 EXPECT_EQ(std::next(M1.begin()), M1.end()); // Should see just one range.
64 EXPECT_EQ(std::next(std::next(M2.begin())), M2.end()); // Expect two ranges.
81 EXPECT_EQ(std::next(M1.begin()), M1.end()); // Should see just one range.
93 EXPECT_EQ(std::next(std::next(M2.begin())), M2.end()); // Expect two ranges.
116 EXPECT_EQ(std::next(M1.begin()), M1.end()); // Should see just one range.
131 EXPECT_EQ(std::next(std::next(std::next(M2.begin()))), M2.end());
157 EXPECT_EQ(std::next(M.begin()),
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFLocationExpression.cpp18 << formatv("{0}", make_range(Loc.Expr.begin(), Loc.Expr.end()));
/freebsd-current/sys/libkern/
H A Dmemcchr.c58 memcchr(const void *begin, int c, size_t n) argument
79 * `begin', we may execute this loop spuriously.
81 lp = (const unsigned long *)((uintptr_t)begin & ~LONGPTR_MASK);
82 end = (const unsigned char *)begin + n;
84 for (p = begin; p < (const unsigned char *)lp;)
/freebsd-current/contrib/bmake/unit-tests/
H A Ddepsrc-ignore.exp1 ignore-errors begin
5 all begin
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dtst.InvalidTraceName4.d.ksh46 $dtrace -n begin
/freebsd-current/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp82 uptr begin = reinterpret_cast<uptr>(chunk);
83 uptr end = begin + size;
84 ScanGlobalRange(begin, end, &params->argument->frontier);
90 uptr begin = reinterpret_cast<uptr>(chunk);
91 uptr end = begin + size;
92 ScanRangeForPointers(begin, end, &params->argument->frontier, "STACK",
99 uptr begin = reinterpret_cast<uptr>(chunk);
100 uptr end = begin + size;
101 ScanRangeForPointers(begin, end, &params->argument->frontier, "REGISTERS",
117 uptr begin
[all...]
/freebsd-current/contrib/byacc/test/
H A Dgrammar.y135 long begin; /* offset in temporary file */
152 long begin; /* offset in temporary file */
159 long begin_comment; /* begin offset of comment */
168 long begin; /* offset in temporary file */
169 long begin_comment; /* begin offset of comment */
535 new_decl_spec(&decl_spec, dft_decl_spec(), $1->begin, DS_NONE);
577 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
581 new_decl_spec(&$$, $1.text, $1.begin, DS_EXTERN);
585 new_decl_spec(&$$, $1.text, $1.begin, DS_NONE);
589 new_decl_spec(&$$, $1.text, $1.begin, DS_STATI
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DEnumeratedArray.h49 Underlying[IX] = *(Init.begin() + IX);
66 iterator begin() { return Underlying; } function in class:llvm::EnumeratedArray
67 const_iterator begin() const { return Underlying; } function in class:llvm::EnumeratedArray
69 iterator end() { return begin() + size(); }
70 const_iterator end() const { return begin() + size(); }
76 reverse_iterator rend() { return reverse_iterator(begin()); }
78 return const_reverse_iterator(begin());

Completed in 416 milliseconds

1234567891011>>