Home
last modified time | relevance | path

Searched refs:span (Results 1 – 25 of 330) sorted by relevance

12345678910>>...14

/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dspan2 //===------------------------------ span ---------------------------------===//
14 span synopsis
21 // [views.span], class template span
23 class span;
26 inline constexpr bool ranges::enable_borrowed_range<span<ElementType, Extent>> = true;
28 // [span.objectrep], views of object representation
30 span<const byte, ((Extent == dynamic_extent) ? dynamic_extent :
31 (sizeof(ElementType) * Extent))> as_bytes(span<ElementType, Extent> s) noexcept;
34 span< byte, ((Extent == dynamic_extent) ? dynamic_extent :
35 (sizeof(ElementType) * Extent))> as_writable_bytes(span<ElementType, Extent> s) noexcept;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DCoverageMappingFormat.rst90span>int main(int argc, const char *argv[]) </span><span style='background-color:#4A789C'>{ </s…
91 <span style='background-color:#4A789C'> </span>
92span style='background-color:#4A789C'> if (argc &gt; 1) </span><span style='background-color:#85C…
93 <span style='background-color:#85C1F5'> printf("%s\n", argv[1]); </span>
94span style='background-color:#85C1F5'> }</span><span style='background-color:#4A789C'> else </spa…
95 <span style='background-color:#F6D55D'> printf("\n"); </span>
96 …<span style='background-color:#F6D55D'> }</span><span style='background-color:#4A789C'> …
97 <span style='background-color:#4A789C'> return 0; </span>
98 <span style='background-color:#4A789C'>}</span>
107 …al;'><span>int main() </span><span style='background-color:#4A789C'>{ </span> <span
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dspan25 /** @file span
30 // P0122 span library
56 class span;
64 inline constexpr bool __is_span<span<_Tp, _Num>> = true;
104 class span
119 // 3255. span's array constructor is too strict
138 using iterator = __gnu_cxx::__normal_iterator<pointer, span>;
147 span() noexcept
155 span(_It __first, size_type __count)
170 span(_It __first, _End __last)
[all …]
H A Dspanstream1 // Streams based on std::span -*- C++ -*-
35 #include <span>
71 basic_spanbuf(std::span<_CharT> __s,
74 { span(__s); }
109 std::span<_CharT>
110 span() const noexcept
119 span(std::span<_CharT> __s) noexcept
138 this->span(std::span<_CharT>(__s, __n));
210 std::span<_CharT> _M_buf;
237 basic_ispanstream(std::span<_CharT> __s,
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dspan25 /** @file span
30 // P0122 span library
56 class span;
64 struct __is_std_span<span<_Tp, _Num>> : true_type { };
109 class span
124 // 3255. span's array constructor is too strict
143 using iterator = __gnu_cxx::__normal_iterator<pointer, span>;
152 span() noexcept
160 span(_It __first, size_type __count)
175 span(_It __first, _End __last)
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DData_window.cc88 Span span; in bind() local
89 span.length = fsize - file_offset; in bind()
90 span.offset = file_offset; in bind()
91 return bind (&span, minSize); in bind()
95 Data_window::bind (Span *span, int64_t minSize) in bind() argument
100 (int) __LINE__, (long long) span->offset, (long long) span->length, (long long) minSize); in bind()
101 if (minSize == 0 || span->length < minSize) in bind()
104 if (span->offset < woffset || span->offset + minSize > woffset + wsize) in bind()
107 if (span->offset + minSize > fsize) in bind()
125 woffset = span->offset & ~(page_size - 1); in bind()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DData_window.cc88 Span span; in bind() local
89 span.length = fsize - file_offset; in bind()
90 span.offset = file_offset; in bind()
91 return bind (&span, minSize); in bind()
95 Data_window::bind (Span *span, int64_t minSize) in bind() argument
100 (int) __LINE__, (long long) span->offset, (long long) span->length, (long long) minSize); in bind()
101 if (minSize == 0 || span->length < minSize) in bind()
104 if (span->offset < woffset || span->offset + minSize > woffset + wsize) in bind()
107 if (span->offset + minSize > fsize) in bind()
125 woffset = span->offset & ~(page_size - 1); in bind()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/res/
H A Ddefault_ddoc_theme.ddoc42 BIG = <span class="font_big">$0</span>
61 RED = <span class="color_red">$0</span>
62 BLUE = <span class="color_blue">$0</span>
63 GREEN = <span class="color_green">$0</span>
64 YELLOW = <span class="color_yellow">$0</span>
65 BLACK = <span class="color_black">$0</span>
66 WHITE = <span class="color_white">$0</span>
92 D_COMMENT = <span class="comment">$0</span>
93 D_STRING = <span class="string_literal">$0</span>
94 D_KEYWORD = <span class="keyword">$0</span>
[all …]
/netbsd-src/external/bsd/openldap/dist/libraries/liblmdb/
H A Dmdb_stat.c182 ssize_t i, j, span = 0; in main() local
189 pg += span; in main()
190 for (; i >= span && iptr[i-span] == pg; span++, pg++) ; in main()
193 *(size_t *)key.mv_data, j, span, bad); in main()
197 for (span=1; --j >= 0 && iptr[j] == pg+span; span++) ; in main()
198 printf(span>1 ? " %9"Z"u[%"Z"d]\n" : " %9"Z"u\n", in main()
199 pg, span); in main()
/netbsd-src/usr.sbin/mlxctl/
H A Dconfig.c160 print_span(struct mlx_sys_drv_span *span, int arms) in print_span() argument
164 printf("0x%08x-0x%08x %u blks on", span->sp_start_lba, in print_span()
165 span->sp_start_lba + span->sp_nblks, span->sp_nblks); in print_span()
168 printf(" disk%02d%02d", span->sp_arm[i] >> 4, in print_span()
169 span->sp_arm[i] & 0x0f); in print_span()
/netbsd-src/bin/ls/
H A Dutil.c132 size_t rv, span = endptr - src; in printescaped() local
142 if (span > MB_CUR_MAX) in printescaped()
143 span = MB_CUR_MAX; in printescaped()
145 rv = mbrtowc(&wc, src, span, &src_state); in printescaped()
157 if (span < MB_CUR_MAX) { /* incomplete char */ in printescaped()
161 src += span; /* a redundant shift sequence? */ in printescaped()
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/external/mit/libcbor/dist/docs/doxygen/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/
H A Dtabs.css1span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28…
/netbsd-src/external/mit/libcbor/dist/docs/
H A Dindex.html.erb31 …lass="anchor" href="#main-features" aria-hidden="true"><span class="octicon octicon-link"></span><…
48 …rib" class="anchor" href="#distrib" aria-hidden="true"><span class="octicon octicon-link"></span><…
75 …lass="anchor" href="#documentation" aria-hidden="true"><span class="octicon octicon-link"></span><…
90 …nse" class="anchor" href="#license" aria-hidden="true"><span class="octicon octicon-link"></span><…
97 …<span class="site-footer-owner"><a href="https://github.com/PJK/libcbor">libcbor</a> is maintained…
98span class="site-footer-credits">This page is based on the <a href="https://github.com/jasonlong/c…
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Dinterval.d1006 interval = The interval to create a span together with this interval.
1014 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
1018 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
1023 Interval span(scope const Interval interval) const pure
1041 interval = The interval to create a span together with this interval.
1049 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
1053 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
1058 PosInfInterval!TP span(scope const PosInfInterval!TP interval) const pure
1071 interval = The interval to create a span together with this interval.
1079 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
H A Dinterval.d978 interval = The interval to create a span together with this interval.
986 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
990 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
995 Interval span(in Interval interval) const pure
1013 interval = The interval to create a span together with this interval.
1021 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
1025 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
1030 PosInfInterval!TP span(in PosInfInterval!TP interval) const pure
1043 interval = The interval to create a span together with this interval.
1051 assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).span(
[all …]
/netbsd-src/external/bsd/mdocml/dist/
H A Dtbl.c156 struct tbl_span *span; in tbl_span() local
158 span = tbl->current_span ? tbl->current_span->next in tbl_span()
160 if (span != NULL) in tbl_span()
161 tbl->current_span = span; in tbl_span()
162 return span; in tbl_span()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Ddwarf2cfi.cc327 rtx span; in expand_builtin_init_dwarf_reg_sizes() local
337 span = targetm.dwarf_register_span (gen_rtx_REG (save_mode, i)); in expand_builtin_init_dwarf_reg_sizes()
339 if (!span) in expand_builtin_init_dwarf_reg_sizes()
343 for (int si = 0; si < XVECLEN (span, 0); si++) in expand_builtin_init_dwarf_reg_sizes()
345 rtx reg = XVECEXP (span, 0, si); in expand_builtin_init_dwarf_reg_sizes()
640 cfa->reg.span++; in get_cfa_from_loc_descr()
883 && new_cfa->reg.span == 1 in def_cfa_0()
901 && new_cfa->reg.span == 1 in def_cfa_0()
915 && new_cfa->reg.span == 1) in def_cfa_0()
1022 else if (sreg.span > 1) in reg_save()
[all …]

12345678910>>...14