Home
last modified time | relevance | path

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

12345

/freebsd/contrib/llvm-project/libcxx/include/
H A Dspan21 // [views.span], class template span
77 // [span.sub], span subviews
89 // [span.obs], span observers
94 // [span.elem], span element access
101 // [span.iterators], span iterator support
116 span(T (&)[N]) -> span<T, N>;
119 span(array<T, N>&) -> span<T, N>;
356 // [span.iter], span iterator support
518 // [span.iter], span iterator support
573 span(_Tp (&)[_Sz]) -> span<_Tp, _Sz>;
[all …]
/freebsd/sys/dev/mrsas/
H A Dmrsas_fp.c228 return &map->raidMap.ldSpanMap[ld].spanBlock[span].span; in MR_LdSpanPtrGet()
599 for (span = 0; span < raid->spanDepth; span++) in getSpanInfo()
624 for (span = 0; span < raid->spanDepth; span++) { in getSpanInfo()
677 for (span = 0; span < raid->spanDepth; span++) in mr_spanset_get_span_block()
743 for (span = 0, span_offset = 0; span < raid->spanDepth; span++) in get_row_from_strip()
796 for (span = 0; span < raid->spanDepth; span++) in get_strip_from_row()
856 for (span = 0, span_offset = 0; span < raid->spanDepth; span++) in get_arm_from_strip()
1236 for (span = 0; span < raid->spanDepth; span++) { in mr_update_span_set()
1684 span = 0; in MR_GetPhyParams()
1758 for (span = 0; span < raid->spanDepth; span++, pSpanBlock++) { in MR_GetSpanBlock()
[all …]
/freebsd/usr.sbin/mlxcontrol/
H A Dconfig.c42 static void print_span(struct mlx_sys_drv_span *span, int arms);
90 print_span(struct mlx_sys_drv_span *span, int arms) in print_span() argument
94 …printf("0x%08x-0x%08x %uMB on", span->sp_start_lba, span->sp_start_lba + span->sp_nblks, span->sp_… in print_span()
96 printf(" disk%02d%02d", span->sp_arm[i] >> 4, span->sp_arm[i] & 0x0f); in print_span()
/freebsd/usr.sbin/bsdinstall/distextract/
H A Ddistextract.c181 size_t span; in count_files() local
197 span = strcspn(p, "\t") ; in count_files()
198 if (span < 1 || strncmp(p, file, span) != 0) in count_files()
205 span = strcspn(p += span + (*p != '\0' ? 1 : 0), "\t"); in count_files()
206 span = strcspn(p += span + (*p != '\0' ? 1 : 0), "\t"); in count_files()
207 if (span > 0) { in count_files()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dspan.inc14 // [views.span], class template span
15 using std::span;
22 // [span.objectrep], views of object representation
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dadt.h27 template <typename T, std::size_t Extent = dynamic_extent> class span {
42 constexpr span() noexcept = default;
43 constexpr span(T *first, size_type count) noexcept in span() function
47 constexpr span(T (&arr)[N]) noexcept : Data(&arr[0]), Size(N) {} in span() function
H A Dmacho_platform.cpp253 std::vector<span<RecordElement>> Processed;
254 std::vector<span<RecordElement>> New;
262 span<char> DwarfSection;
263 span<char> CompactUnwindSection;
548 span<const char> ThreadDataSection) { in registerThreadDataSection()
562 span<const char> ThreadDataSection) { in deregisterThreadDataSection()
927 span<std::pair<std::string_view, bool>> Symbols) { in lookupSymbols()
997 void walkEHFrameSection(span<const char> EHFrameSection, in walkEHFrameSection()
1050 span<const char> EHFrameSection) { in registerEHFrames()
1056 span<const char> EHFrameSection) { in deregisterEHFrames()
[all …]
H A Dsimple_packed_serialization.h286 class TrivialSPSSequenceSerialization<SPSElementTagT, span<T>> {
375 template <> class SPSSerializationTraits<SPSSequence<char>, span<const char>> {
377 static size_t size(const span<const char> &S) { in size()
381 static bool serialize(SPSOutputBuffer &OB, const span<const char> &S) { in serialize()
386 static bool deserialize(SPSInputBuffer &IB, span<const char> &S) { in deserialize()
390 S = span<const char>(IB.data(), Size); in deserialize()
/freebsd/sys/contrib/dev/rtw89/
H A Dsar.c51 #define RTW89_SAR_SPAN_VALID(span) ((span)->subband_high) argument
87 const struct rtw89_sar_span *span = NULL; in rtw89_query_sar_config_common() local
99 span = &rtw89_sar_overlapping_6ghz[idx]; in rtw89_query_sar_config_common()
102 if (span && RTW89_SAR_SPAN_VALID(span)) { in rtw89_query_sar_config_common()
103 subband_l = span->subband_low; in rtw89_query_sar_config_common()
104 subband_h = span->subband_high; in rtw89_query_sar_config_common()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_sched.cpp359 ST span; in __kmp_for_static_init() local
366 span = chunk * incr; in __kmp_for_static_init()
376 *pstride = span * nth; in __kmp_for_static_init()
392 span = chunk * incr; in __kmp_for_static_init()
680 ST span; in __kmp_dist_for_static_init() local
683 span = chunk * incr; in __kmp_dist_for_static_init()
684 *pstride = span * nth; in __kmp_dist_for_static_init()
755 ST span; in __kmp_team_static_init() local
816 span = chunk * incr; in __kmp_team_static_init()
817 *p_st = span * nteams; in __kmp_team_static_init()
[all …]
/freebsd/contrib/mandoc/
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()
H A Dtree.c177 if (n->span) { in print_mdoc()
179 print_span(n->span, indent); in print_mdoc()
271 if (n->span) { in print_man()
273 print_span(n->span, indent); in print_man()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dadt_test.cpp22 span<int> S; in TEST()
30 span<int> S(A); in TEST()
42 span<int> S(&A[0], 5); in TEST()
/freebsd/contrib/libfido2/man/
H A Ddyc.css7 span.Pa, span.Ad { font-style: italic; }
8 span.Ms { font-weight: bold; }
H A Dstyle.css20 span.Pa, span.Ad { font-style: italic; }
21 span.Ms { font-weight: bold; }
/freebsd/share/examples/
H A DMakefile237 ppp.conf.span-isp \
238 ppp.conf.span-isp.working \
240 ppp.linkdown.span-isp \
241 ppp.linkdown.span-isp.working \
243 ppp.linkup.span-isp \
244 ppp.linkup.span-isp.working \
246 ppp.secret.span-isp \
247 ppp.secret.span-isp.working
/freebsd/contrib/libxo/doc/_static/
H A Dbasic.css_t137 span.linkdescr {
344 table caption span.caption-number {
348 table caption span.caption-text {
397 div.figure p.caption span.caption-number {
401 div.figure p.caption span.caption-text {
533 span.pre {
568 div.code-block-caption span.caption-number {
573 div.code-block-caption span.caption-text {
627 span.eqno {
631 span.eqno a.headerlink {
/freebsd/usr.sbin/mfiutil/
H A Dmfi_foreign.c170 humanize_number(size, sizeof(size), ld->span[0].num_blocks * 512, in foreign_show_cfg()
183 printf(" array %u @ ", ld->span[j].array_ref); in foreign_show_cfg()
184 humanize_number(size, sizeof(size), ld->span[j].num_blocks * 512, in foreign_show_cfg()
188 ar_list = (char *)config->array + (ld->span[j].array_ref * config->array_size); in foreign_show_cfg()
/freebsd/share/examples/ppp/
H A Dppp.conf.span-isp31 # There is a working example in ppp.*.span-isp.working that can be tested
76 # resulting in the vpn* profiles being called from ppp.linkup.span-isp.
92 # from ppp.linkup (see ppp.linkup.span-isp) for each link. We also remove
93 # the link from ppp.linkdown (see ppp.linkdown.span-isp). This is necessary
136 # ppp.linkup.span-isp).
180 # requires the contents of ppp.secret.span-isp.
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddmu_diff.c127 uint64_t span = DBP_SPAN(dnp, zb->zb_level); in diff_cb() local
128 uint64_t dnobj = (zb->zb_blkid * span) >> DNODE_SHIFT; in diff_cb()
131 dnobj + (span >> DNODE_SHIFT) - 1); in diff_cb()
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dcounted.h47 …iter_difference_t<_It> __count) noexcept(noexcept(span(std::to_address(__it), static_cast<size_t>(… in __go()
50 return span(std::to_address(__it), static_cast<size_t>(__count)); in __go()
/freebsd/contrib/ntp/libparse/
H A Dclk_rawdcf.c408 unsigned int i, lowmax, highmax, cutoff, span; in cvt_rawdcf() local
510 span = cutoff = lowmax; in cvt_rawdcf()
516 span = i; in cvt_rawdcf()
521 span = i; in cvt_rawdcf()
525 cutoff = (cutoff + span) / 2; in cvt_rawdcf()
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dmsi-controller.yaml37 A list of <phandle intspec span> tuples, where "phandle" is the
39 interrupt specifier and "span" is the size of the
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/
H A Dextents.h157 …_LIBCPP_HIDE_FROM_ABI constexpr __maybe_static_array([[maybe_unused]] const span<_Tp, _Size>& __va…
187 _LIBCPP_HIDE_FROM_ABI constexpr __maybe_static_array(const span<_Tp, _Size>& __vals) {
260 _LIBCPP_HIDE_FROM_ABI constexpr bool __are_representable_as(span<_From, _Size> __values) {
331 : __vals_(span(__exts)) {
334 …_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__mdspan_detail::__are_representable_as<index_type>(span(__ext…
343 _LIBCPP_HIDE_FROM_ABI constexpr extents(const span<_OtherIndexType, _Size>& __exts) noexcept
/freebsd/usr.bin/ministat/
H A Dministat.c285 double span; member
324 pl->span = pl->max - pl->min; in AdjPlot()
325 pl->dx = pl->span / (pl->width - 1.0); in AdjPlot()
349 if (pl->span == 0) in PlotSet()
427 if (pl->span == 0) { in DumpPlot()

12345