| /src/contrib/llvm-project/libcxx/include/__type_traits/ |
| H A D | extent.h | 25 struct _LIBCPP_TEMPLATE_VIS extent : integral_constant<size_t, __array_extent(_Tp, _Dim)> {}; struct 35 struct _LIBCPP_TEMPLATE_VIS extent : public integral_constant<size_t, 0> {}; 37 struct _LIBCPP_TEMPLATE_VIS extent<_Tp[], 0> : public integral_constant<size_t, 0> {}; 39 struct _LIBCPP_TEMPLATE_VIS extent<_Tp[], _Ip> : public integral_constant<size_t, extent<_Tp, _Ip -… 41 struct _LIBCPP_TEMPLATE_VIS extent<_Tp[_Np], 0> : public integral_constant<size_t, _Np> {}; 43 struct _LIBCPP_TEMPLATE_VIS extent<_Tp[_Np], _Ip> : public integral_constant<size_t, extent<_Tp, _I… 47 inline constexpr size_t extent_v = extent<_Tp, _Ip>::value;
|
| /src/sbin/hastd/ |
| H A D | activemap.c | 98 int extent; in off2ext() local 101 extent = (offset >> amp->am_extentshift); in off2ext() 102 PJDLOG_ASSERT(extent >= 0 && extent < amp->am_nextents); in off2ext() 103 return (extent); in off2ext() 107 ext2off(const struct activemap *amp, int extent) in ext2off() argument 111 PJDLOG_ASSERT(extent >= 0 && extent < amp->am_nextents); in ext2off() 112 offset = ((off_t)extent << amp->am_extentshift); in ext2off() 201 keepdirty_find(struct activemap *amp, int extent) in keepdirty_find() argument 206 if (kd->kd_extent == extent) in keepdirty_find() 213 keepdirty_add(struct activemap *amp, int extent) in keepdirty_add() argument [all …]
|
| H A D | activemap.h | 46 bool activemap_extent_complete(struct activemap *amp, int extent);
|
| /src/contrib/llvm-project/libcxx/include/__mdspan/ |
| H A D | layout_stride.h | 84 index_type __prod = __ext.extent(0); in __required_span_size_is_representable() 86 bool __overflowed = __builtin_mul_overflow(__prod, __ext.extent(__r), &__prod); in __required_span_size_is_representable() 107 if (__ext.extent(__r) == static_cast<index_type>(0)) in __required_span_size_is_representable() 109 index_type __prod = (__ext.extent(__r) - 1); in __required_span_size_is_representable() 145 (__extents_.extent(__permute[__r]) > static_cast<index_type>(1))) in __bubble_sort_by_strides() 164 __stride *= __extents_.extent(__r); in mapping() 203 … static_cast<index_type>(__strides[__permute[__i - 1]]) * __extents_.extent(__permute[__i - 1])) 268 if ((__extents_.extent(_Pos) * ... * 1) == 0) in required_span_size() 273 (((__extents_.extent(_Pos) - static_cast<index_type>(1)) * __strides_[_Pos]) + ... + in required_span_size() 317 if (__extents_.extent(__r) == 0 && __r != __r_largest) in is_exhaustive() [all …]
|
| H A D | layout_right.h | 60 index_type __prod = __ext.extent(0); in __required_span_size_is_representable() 62 bool __overflowed = __builtin_mul_overflow(__prod, __ext.extent(__r), &__prod); in __required_span_size_is_representable() 142 __size *= __extents_.extent(__r); in required_span_size() 158 ((__res = static_cast<index_type>(__idx) + __extents_.extent(_Pos) * __res), ...); in operator() 180 __s *= __extents_.extent(__i); in stride()
|
| H A D | layout_left.h | 61 index_type __prod = __ext.extent(0); in __required_span_size_is_representable() 63 bool __overflowed = __builtin_mul_overflow(__prod, __ext.extent(__r), &__prod); in __required_span_size_is_representable() 143 __size *= __extents_.extent(__r); in required_span_size() 160 …((__res = __idx_a[extents_type::rank() - 1 - _Pos] + __extents_.extent(extents_type::rank() - 1 - … in operator() 183 __s *= __extents_.extent(__i); in stride()
|
| H A D | mdspan.h | 96 _LIBCPP_HIDE_FROM_ABI constexpr index_type extent(rank_type __r) const noexcept { in extent() function 97 return __map_.extents().extent(__r); in extent() 173 … (static_cast<index_type>(__other.extent(__r)) == static_cast<index_type>(static_extent(__r))), in requires() 221 return (__builtin_mul_overflow(__prod, extent(_Idxs), &__prod) || ... || false); in size() 225 return ((static_cast<size_type>(__map_.extents().extent(_Idxs))) * ... * size_type(1)); in size() 231 return (rank() > 0) && ((__map_.extents().extent(_Idxs) == index_type(0)) || ... || false); in empty()
|
| H A D | extents.h | 303 …_LIBCPP_HIDE_FROM_ABI constexpr index_type extent(rank_type __r) const noexcept { return __vals_._… 367 __exts.extent(_Idx)); 401 __mdspan_detail::__is_representable_as<index_type>(__other.extent(__r)), 409 …(static_cast<index_type>(__other.extent(__r)) == static_cast<index_type>(_Values::__static_value(_… 425 … if (static_cast<_CommonType>(__lhs.extent(__r)) != static_cast<_CommonType>(__rhs.extent(__r))) { 515 return (__mdspan_detail::__is_index_in_extent(__ext.extent(_Idxs), __values) && ...);
|
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ArrayBoundCheckerV2.cpp | 242 getSimplifiedOffsets(NonLoc offset, nonloc::ConcreteInt extent, in getSimplifiedOffsets() argument 248 APSIntType(extent.getValue()).convert(SIE->getRHS()); in getSimplifiedOffsets() 253 if ((extent.getValue() % constant) != 0) in getSimplifiedOffsets() 254 return std::pair<NonLoc, nonloc::ConcreteInt>(offset, extent); in getSimplifiedOffsets() 258 svalBuilder.makeIntVal(extent.getValue() / constant), in getSimplifiedOffsets() 263 svalBuilder.makeIntVal(extent.getValue() - constant), svalBuilder); in getSimplifiedOffsets() 270 return std::pair<NonLoc, nonloc::ConcreteInt>(offset, extent); in getSimplifiedOffsets()
|
| /src/sys/dev/ocs_fc/ |
| H A D | sli4.c | 2435 sli4_req_common_get_resource_extent_info_t *extent = NULL; in sli_cmd_common_get_resource_extent_info() local 2444 extent = (sli4_req_common_get_resource_extent_info_t *)((uint8_t *)buf + sli_config_off); in sli_cmd_common_get_resource_extent_info() 2446 extent->hdr.opcode = SLI4_OPC_COMMON_GET_RESOURCE_EXTENT_INFO; in sli_cmd_common_get_resource_extent_info() 2447 extent->hdr.subsystem = SLI4_SUBSYSTEM_COMMON; in sli_cmd_common_get_resource_extent_info() 2448 extent->hdr.request_length = 4; in sli_cmd_common_get_resource_extent_info() 2450 extent->resource_type = rtype; in sli_cmd_common_get_resource_extent_info() 3718 uint32_t *base = sli4->config.extent[0].base; in sli_get_config() 3729 sli4->config.extent[i].number = 1; in sli_get_config() 3730 sli4->config.extent[i].n_alloc = 0; in sli_get_config() 3731 sli4->config.extent[i].base = &base[i]; in sli_get_config() [all …]
|
| /src/usr.sbin/makefs/cd9660/ |
| H A D | cd9660_debug.c | 93 isonum_733(node->isoDirRecord->extent)); in debug_print_tree() 96 isonum_733(node->isoDirRecord->extent)); in debug_print_tree() 349 debug_dump_integer("extent", rec->extent, 733); in debug_dump_directory_record_9_1()
|
| /src/usr.sbin/bsnmpd/modules/snmp_hast/ |
| H A D | BEGEMOT-HAST-MIB.txt | 180 "Size of an extent. Extent is a block which is 182 map of dirty extents and extent is the smallest 184 of an extent is modified, entire extent will be
|
| /src/sys/fs/cd9660/ |
| H A D | cd9660_vfsops.c | 372 isomp->root_extent = isonum_733 (rootp->extent); in iso_mountfs() 489 isomp->root_extent = isonum_733 (rootp->extent); in iso_mountfs() 767 if (isonum_733(isodir->extent) + in cd9660_vget_internal() 771 isonum_733(isodir->extent) + isonum_711(isodir->ext_attr_length), in cd9660_vget_internal() 796 ip->iso_extent = isonum_733(isodir->extent); in cd9660_vget_internal()
|
| /src/stand/libsa/ |
| H A D | cd9660.c | 380 bno = isonum_733(rec.extent) + isonum_711(rec.ext_attr_length); in cd9660_open() 469 bno = isonum_733(rec.extent) + isonum_711(rec.ext_attr_length); in cd9660_open() 487 fp->f_bno = isonum_733(rec.extent) + isonum_711(rec.ext_attr_length); in cd9660_open() 625 d->d_fileno = isonum_733(ep->extent); in cd9660_readdir()
|
| H A D | cd9660read.c | 250 bno = isonum_733(rec.extent) + isonum_711(rec.ext_attr_length); in cd9660_lookup() 305 cookie = isonum_733(rec.extent) + isonum_711(rec.ext_attr_length); in cd9660_lookup()
|
| /src/crypto/openssh/ |
| H A D | aclocal.m4 | 10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
| /src/contrib/ldns/ |
| H A D | aclocal.m4 | 10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
| /src/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | adt.h | 40 static constexpr std::size_t extent = Extent; variable
|
| /src/lib/libc/stdlib/malloc/jemalloc/ |
| H A D | Makefile.inc | 4 ckh.c ctl.c div.c extent.c extent_dss.c extent_mmap.c hook.c \
|
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | span | 69 static constexpr size_type extent = Extent; 85 …constexpr explicit(extent != dynamic_extent) span(std::initializer_list<value_type> il); // Since … 246 static constexpr size_type extent = _Extent; 278 …st == _Extent, "invalid range in span's constructor (iterator, sentinel): last - first != extent"); 427 static constexpr size_type extent = dynamic_extent;
|
| /src/sys/contrib/dev/wpi/ |
| H A D | LICENSE | 20 sell ("Utilize") this software, but solely to the extent that any
|
| /src/sys/contrib/dev/iwn/ |
| H A D | LICENSE | 20 sell ("Utilize") this software, but solely to the extent that any
|
| /src/sys/contrib/dev/run/ |
| H A D | LICENSE | 20 sell ("Utilize") this software, but solely to the extent that any
|
| /src/sys/contrib/dev/qat_c2xxx/ |
| H A D | LICENSE | 19 sell ("Utilize") this software, but solely to the extent that any
|
| /src/sys/contrib/dev/qat/ |
| H A D | LICENSE | 19 sell ("Utilize") this software, but solely to the extent that any
|