Home
last modified time | relevance | path

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

1234

/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dspan2 //===------------------------------ span ---------------------------------===//
14 span synopsis
21 // [views.span], class template span
23 class span;
26 inline constexpr bool ranges::enable_view<span<ElementType, Extent>> = true;
29 inline constexpr bool ranges::enable_borrowed_range<span<ElementType, Extent>> = true;
31 // [span.objectrep], views of object representation
33 span<const byte, ((Extent == dynamic_extent) ? dynamic_extent :
34 (sizeof(ElementType) * Extent))> as_bytes(span<ElementType, Extent> s) noexcept;
37 span< byte, ((Extent == dynamic_extent) ? dynamic_extent :
[all …]
/freebsd-12-stable/sys/dev/mrsas/
Dmrsas_fp.c90 MR_LdSpanArrayGet(u_int32_t ld, u_int32_t span,
97 MR_LdSpanPtrGet(u_int32_t ld, u_int32_t span,
126 get_arm(struct mrsas_softc *sc, u_int32_t ld, u_int8_t span,
205 MR_LdSpanArrayGet(u_int32_t ld, u_int32_t span, MR_DRV_RAID_MAP_ALL * map) in MR_LdSpanArrayGet() argument
207 return map->raidMap.ldSpanMap[ld].spanBlock[span].span.arrayRef; in MR_LdSpanArrayGet()
235 MR_LdSpanPtrGet(u_int32_t ld, u_int32_t span, MR_DRV_RAID_MAP_ALL * map) in MR_LdSpanPtrGet() argument
237 return &map->raidMap.ldSpanMap[ld].spanBlock[span].span; in MR_LdSpanPtrGet()
590 u_int8_t span; in getSpanInfo() local
605 for (span = 0; span < raid->spanDepth; span++) in getSpanInfo()
606 printf("Span=%x, number of quads=%x\n", span, in getSpanInfo()
[all …]
/freebsd-12-stable/usr.sbin/bsdinstall/distextract/
Ddistextract.c71 size_t span; in main() local
98 span = strcspn(distributions, "\t\n\v\f\r "); in main()
99 if (span < 1) { /* currently on whitespace */ in main()
117 if ((dist->path = malloc(span + 1)) == NULL) in main()
119 snprintf(dist->path, span + 1, "%s", distributions); in main()
120 dist->path[span] = '\0'; in main()
134 distributions += span; in main()
199 size_t span; in count_files() local
214 span = strcspn(p, "\t") ; in count_files()
215 if (span < 1 || strncmp(p, file, span) != 0) in count_files()
[all …]
/freebsd-12-stable/usr.sbin/mlxcontrol/
Dconfig.c44 static void print_span(struct mlx_sys_drv_span *span, int arms);
92 print_span(struct mlx_sys_drv_span *span, int arms) in print_span() argument
96 …printf("0x%08x-0x%08x %uMB on", span->sp_start_lba, span->sp_start_lba + span->sp_nblks, span->sp_… in print_span()
98 printf(" disk%02d%02d", span->sp_arm[i] >> 4, span->sp_arm[i] & 0x0f); in print_span()
/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
Dkmp_sched.cpp349 ST span; in __kmp_for_static_init() local
356 span = chunk * incr; in __kmp_for_static_init()
358 *pstride = span * nchunks; in __kmp_for_static_init()
360 *plower = *plower + (span * tid); in __kmp_for_static_init()
361 *pupper = *plower + span - incr; in __kmp_for_static_init()
366 *pstride = span * nth; in __kmp_for_static_init()
367 *plower = *plower + (span * tid); in __kmp_for_static_init()
368 *pupper = *plower + span - incr; in __kmp_for_static_init()
377 UT span = (trip_count + nth - 1) / nth; in __kmp_for_static_init() local
380 chunk = (span + chunk - 1) & ~(chunk - 1); in __kmp_for_static_init()
[all …]
/freebsd-12-stable/contrib/mandoc/
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()
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-12-stable/share/examples/
DMakefile243 ppp.conf.span-isp \
244 ppp.conf.span-isp.working \
246 ppp.linkdown.span-isp \
247 ppp.linkdown.span-isp.working \
249 ppp.linkup.span-isp \
250 ppp.linkup.span-isp.working \
252 ppp.secret.span-isp \
253 ppp.secret.span-isp.working
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/orc/
Dadt.h26 template <typename T, std::size_t Extent = dynamic_extent> class span {
41 constexpr span() noexcept = default;
42 constexpr span(T *first, size_type count) noexcept in span() function
46 constexpr span(T (&arr)[N]) noexcept : Data(&arr[0]), Size(N) {} in span() function
Dexecutor_address.h150 template <typename T> span<T> toSpan() const { in toSpan()
153 return span<T>(StartAddress.toPtr<T *>(), size().getValue() / sizeof(T)); in toSpan()
/freebsd-12-stable/contrib/libxo/doc/_static/
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-12-stable/share/examples/ppp/
Dppp.secret.span-isp1 # $FreeBSD: stable/12/share/examples/ppp/ppp.secret.span-isp 50476 1999-08-28 00:22:10Z peter $
3 # Refer to ppp.conf.span-isp for a description of what this file is for.
Dppp.secret.span-isp.working1 # $FreeBSD: stable/12/share/examples/ppp/ppp.secret.span-isp.working 50476 1999-08-28 00:22:10Z pet…
3 # This is a working example of ppp.secret.span-isp that uses ppp connections
Dppp.conf.span-isp1 # $FreeBSD: stable/12/share/examples/ppp/ppp.conf.span-isp 244040 2012-12-08 22:16:36Z eadler $
32 # There is a working example in ppp.*.span-isp.working that can be tested
77 # resulting in the vpn* profiles being called from ppp.linkup.span-isp.
93 # from ppp.linkup (see ppp.linkup.span-isp) for each link. We also remove
94 # the link from ppp.linkdown (see ppp.linkdown.span-isp). This is necessary
137 # ppp.linkup.span-isp).
181 # requires the contents of ppp.secret.span-isp.
Dppp.linkup.span-isp.working1 # $FreeBSD: stable/12/share/examples/ppp/ppp.linkup.span-isp.working 85848 2001-11-01 23:44:12Z cjc…
3 # This is a working example of ppp.linkup.span-isp that uses ppp connections
Dppp.linkup.span-isp1 # $FreeBSD: stable/12/share/examples/ppp/ppp.linkup.span-isp 85848 2001-11-01 23:44:12Z cjc $
3 # Refer to ppp.conf.span-isp for a description of what this file is for.
Dppp.linkdown.span-isp.working1 # $FreeBSD: stable/12/share/examples/ppp/ppp.linkdown.span-isp.working 88078 2001-12-17 22:05:23Z c…
3 # This is a working example of ppp.linkdown.span-isp that uses ppp connections
Dppp.linkdown.span-isp1 # $FreeBSD: stable/12/share/examples/ppp/ppp.linkdown.span-isp 88078 2001-12-17 22:05:23Z cjc $
3 # Refer to ppp.conf.span-isp for a description of what this file is for.
Dppp.conf.span-isp.working1 # $FreeBSD: stable/12/share/examples/ppp/ppp.conf.span-isp.working 138815 2004-12-13 17:54:30Z bria…
3 # This is a working example of ppp.conf.span-isp that uses ppp connections
28 # ppp.linkup.span-isp.working, you see three links. This is because inetd
/freebsd-12-stable/usr.sbin/mfiutil/
Dmfi_foreign.c172 humanize_number(size, sizeof(size), ld->span[0].num_blocks * 512, in foreign_show_cfg()
185 printf(" array %u @ ", ld->span[j].array_ref); in foreign_show_cfg()
186 humanize_number(size, sizeof(size), ld->span[j].num_blocks * 512, in foreign_show_cfg()
190 ar_list = (char *)config->array + (ld->span[j].array_ref * config->array_size); in foreign_show_cfg()
Dmfi_config.c540 ld->span[i].start_block = 0; in build_volume()
541 ld->span[i].num_blocks = ar->size; in build_volume()
542 ld->span[i].array_ref = ar->array_ref; in build_volume()
1019 ld->span[i].array_ref); in add_spare()
1181 printf(" array %u @ ", ld->span[j].array_ref); in dump_config()
1183 (uintmax_t)ld->span[j].start_block, in dump_config()
1184 (uintmax_t)ld->span[j].num_blocks); in dump_config()
/freebsd-12-stable/contrib/ntp/libparse/
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-12-stable/contrib/binutils/binutils/
Dsysdump.c88 int span = 16; in dh() local
92 for (i = 0; i < size; i += span) in dh()
94 for (j = 0; j < span; j++) in dh()
102 for (j = 0; j < span && j + i < size; j++) in dh()
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
Ddmu_diff.c145 uint64_t span = DBP_SPAN(dnp, zb->zb_level); in diff_cb() local
146 uint64_t dnobj = (zb->zb_blkid * span) >> DNODE_SHIFT; in diff_cb()
149 dnobj + (span >> DNODE_SHIFT) - 1); in diff_cb()
/freebsd-12-stable/usr.bin/ministat/
Dministat.c282 double span; member
321 pl->span = pl->max - pl->min; in AdjPlot()
322 pl->dx = pl->span / (pl->width - 1.0); in AdjPlot()
344 if (pl->span == 0) in PlotSet()
413 if (pl->span == 0) { in DumpPlot()

1234