/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | ranges_algo.h | 42 namespace ranges in _GLIBCXX_VISIBILITY() 91 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 119 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 147 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 196 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 219 return ranges::for_each(std::move(__first), std::move(__last), in _GLIBCXX_VISIBILITY() 240 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY() 253 requires indirect_binary_predicate<ranges::equal_to, in _GLIBCXX_VISIBILITY() 259 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 287 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() [all …]
|
H A D | ranges_uninitialized.h | 41 namespace ranges in _GLIBCXX_VISIBILITY() 120 ranges::destroy(std::move(_M_first), *_M_cur); in _GLIBCXX_VISIBILITY() 149 return ranges::next(__first, __last); in _GLIBCXX_VISIBILITY() 165 return (*this)(ranges::begin(__r), ranges::end(__r)); in _GLIBCXX_VISIBILITY() 181 return ranges::next(__first, __n); in _GLIBCXX_VISIBILITY() 207 return ranges::fill(__first, __last, _ValueType()); in _GLIBCXX_VISIBILITY() 223 return (*this)(ranges::begin(__r), ranges::end(__r)); in _GLIBCXX_VISIBILITY() 240 return ranges::fill_n(__first, __n, _ValueType()); in _GLIBCXX_VISIBILITY() 277 return ranges::copy_n(std::move(__ifirst), std::min(__d1, __d2), in _GLIBCXX_VISIBILITY() 298 return (*this)(ranges::begin(__inr), ranges::end(__inr), in _GLIBCXX_VISIBILITY() [all …]
|
H A D | ranges_algobase.h | 46 namespace ranges in _GLIBCXX_VISIBILITY() 77 typename _Pred = ranges::equal_to, in _GLIBCXX_VISIBILITY() 102 auto __d1 = ranges::distance(__first1, __last1); in _GLIBCXX_VISIBILITY() 103 auto __d2 = ranges::distance(__first2, __last2); in _GLIBCXX_VISIBILITY() 111 && is_same_v<_Pred, ranges::equal_to> in _GLIBCXX_VISIBILITY() 143 typename _Pred = ranges::equal_to, in _GLIBCXX_VISIBILITY() 151 return (*this)(ranges::begin(__r1), ranges::end(__r1), in _GLIBCXX_VISIBILITY() 152 ranges::begin(__r2), ranges::end(__r2), in _GLIBCXX_VISIBILITY() 223 = ranges::__copy_or_move<true>(std::move(__first).base(), in _GLIBCXX_VISIBILITY() 232 = ranges::__copy_or_move_backward<_IsMove>(std::move(__last).base(), in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | ranges_algo.h | 43 namespace ranges in _GLIBCXX_VISIBILITY() 92 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 120 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 148 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 197 return (*this)(ranges::begin(__r), ranges::end(__r), in _GLIBCXX_VISIBILITY() 220 return ranges::for_each(std::move(__first), std::move(__last), in _GLIBCXX_VISIBILITY() 243 typename _Pred = ranges::equal_to, in _GLIBCXX_VISIBILITY() 261 typename _Pred = ranges::equal_to, in _GLIBCXX_VISIBILITY() 269 return (*this)(ranges::begin(__r1), ranges::end(__r1), in _GLIBCXX_VISIBILITY() 270 ranges::begin(__r2), ranges::end(__r2), in _GLIBCXX_VISIBILITY() [all …]
|
H A D | ranges_util.h | 41 namespace ranges in _GLIBCXX_VISIBILITY() 87 noexcept(noexcept(_S_bool(ranges::begin(__t) == ranges::end(__t)))) in _GLIBCXX_VISIBILITY() 88 { return ranges::begin(__t) == ranges::end(__t); } in _GLIBCXX_VISIBILITY() 93 noexcept(noexcept(ranges::end(__t) - ranges::begin(__t))) in _GLIBCXX_VISIBILITY() 94 { return ranges::end(__t) - ranges::begin(__t); } in _GLIBCXX_VISIBILITY() 110 operator bool() noexcept(noexcept(ranges::empty(_M_derived()))) in _GLIBCXX_VISIBILITY() 111 requires requires { ranges::empty(_M_derived()); } in _GLIBCXX_VISIBILITY() 112 { return !ranges::empty(_M_derived()); } in _GLIBCXX_VISIBILITY() 115 operator bool() const noexcept(noexcept(ranges::empty(_M_derived()))) in _GLIBCXX_VISIBILITY() 116 requires requires { ranges::empty(_M_derived()); } in _GLIBCXX_VISIBILITY() [all …]
|
H A D | ranges_uninitialized.h | 41 namespace ranges in _GLIBCXX_VISIBILITY() 120 ranges::destroy(std::move(_M_first), *_M_cur); in _GLIBCXX_VISIBILITY() 149 return ranges::next(__first, __last); in _GLIBCXX_VISIBILITY() 165 return (*this)(ranges::begin(__r), ranges::end(__r)); in _GLIBCXX_VISIBILITY() 181 return ranges::next(__first, __n); in _GLIBCXX_VISIBILITY() 207 return ranges::fill(__first, __last, _ValueType()); in _GLIBCXX_VISIBILITY() 223 return (*this)(ranges::begin(__r), ranges::end(__r)); in _GLIBCXX_VISIBILITY() 240 return ranges::fill_n(__first, __n, _ValueType()); in _GLIBCXX_VISIBILITY() 277 return ranges::copy_n(std::move(__ifirst), std::min(__d1, __d2), in _GLIBCXX_VISIBILITY() 298 return (*this)(ranges::begin(__inr), ranges::end(__inr), in _GLIBCXX_VISIBILITY() [all …]
|
H A D | ranges_algobase.h | 47 namespace ranges in _GLIBCXX_VISIBILITY() 78 typename _Pred = ranges::equal_to, in _GLIBCXX_VISIBILITY() 103 auto __d1 = ranges::distance(__first1, __last1); in _GLIBCXX_VISIBILITY() 104 auto __d2 = ranges::distance(__first2, __last2); in _GLIBCXX_VISIBILITY() 112 && is_same_v<_Pred, ranges::equal_to> in _GLIBCXX_VISIBILITY() 144 typename _Pred = ranges::equal_to, in _GLIBCXX_VISIBILITY() 152 return (*this)(ranges::begin(__r1), ranges::end(__r1), in _GLIBCXX_VISIBILITY() 153 ranges::begin(__r2), ranges::end(__r2), in _GLIBCXX_VISIBILITY() 224 = ranges::__copy_or_move<true>(std::move(__first).base(), in _GLIBCXX_VISIBILITY() 233 = ranges::__copy_or_move_backward<_IsMove>(std::move(__last).base(), in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__ranges/ |
H A D | access.h | 30 namespace ranges { 40 namespace ranges::__begin { 93 namespace ranges { 99 using iterator_t = decltype(ranges::begin(declval<_Tp&>())); 103 namespace ranges::__end { 158 namespace ranges::inline __cpo { 162 namespace ranges::__cbegin { 165 requires invocable<decltype(ranges::begin), _Tp const&> 167 noexcept(noexcept(ranges::begin(_VSTD::as_const(__t)))) in operator() 169 return ranges::begin(_VSTD::as_const(__t)); in operator() [all …]
|
H A D | empty.h | 29 namespace ranges { 40 requires(_Tp&& __t) { ranges::size(_VSTD::forward<_Tp>(__t)); }; 47 bool(ranges::begin(__t) == ranges::end(__t)); 48 { ranges::begin(__t) } -> forward_iterator; 60 noexcept(noexcept(ranges::size(_VSTD::forward<_Tp>(__t)))) { in operator() 61 return ranges::size(_VSTD::forward<_Tp>(__t)) == 0; in operator() 66 noexcept(noexcept(bool(ranges::begin(__t) == ranges::end(__t)))) { in operator() 67 return ranges::begin(__t) == ranges::end(__t); in operator()
|
H A D | size.h | 30 namespace ranges { 62 { ranges::begin(__t) } -> forward_iterator; 63 { ranges::end(__t) } -> sized_sentinel_for<decltype(ranges::begin(declval<_Tp>()))>; 91 noexcept(noexcept(ranges::end(__t) - ranges::begin(__t))) { in operator() 92 return _VSTD::__to_unsigned_like(ranges::end(__t) - ranges::begin(__t)); in operator() 104 requires requires (_Tp&& __t) { ranges::size(__t); } in requires() 106 noexcept(noexcept(ranges::size(__t))) { in operator() 107 using _Signed = make_signed_t<decltype(ranges::size(__t))>; in operator() 109 return static_cast<ptrdiff_t>(ranges::size(__t)); in operator() 111 return static_cast<_Signed>(ranges::size(__t)); in operator()
|
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
H A D | stm32mp15xxaa-pinctrl.dtsi | 13 gpio-ranges = <&pinctrl 0 0 16>; 19 gpio-ranges = <&pinctrl 0 16 16>; 25 gpio-ranges = <&pinctrl 0 32 16>; 31 gpio-ranges = <&pinctrl 0 48 16>; 37 gpio-ranges = <&pinctrl 0 64 16>; 43 gpio-ranges = <&pinctrl 0 80 16>; 49 gpio-ranges = <&pinctrl 0 96 16>; 55 gpio-ranges = <&pinctrl 0 112 16>; 61 gpio-ranges = <&pinctrl 0 128 16>; 67 gpio-ranges = <&pinctrl 0 144 16>; [all …]
|
H A D | stm32mp15xxac-pinctrl.dtsi | 13 gpio-ranges = <&pinctrl 0 0 16>; 19 gpio-ranges = <&pinctrl 0 16 16>; 25 gpio-ranges = <&pinctrl 0 32 16>; 31 gpio-ranges = <&pinctrl 0 48 16>; 37 gpio-ranges = <&pinctrl 0 64 16>; 43 gpio-ranges = <&pinctrl 0 80 16>; 49 gpio-ranges = <&pinctrl 0 96 16>; 55 gpio-ranges = <&pinctrl 0 112 16>; 61 gpio-ranges = <&pinctrl 0 128 12>; 71 gpio-ranges = <&pinctrl_z 0 400 8>;
|
H A D | am33xx-l4.dtsi | 13 ranges = <0x00000000 0x44c00000 0x100000>, /* segment 0 */ 21 ranges = <0x00000000 0x00000000 0x000800>, /* ap 0 */ 31 ranges = <0x00000000 0x00100000 0x004000>, /* ap 4 */ 44 ranges = <0x00000000 0x00000000 0x4000>, 63 ranges = <0x00000000 0x00200000 0x002000>, /* ap 8 */ 102 ranges = <0x0 0x0 0x2000>; 109 ranges = <0 0 0x2000>; 126 ranges = <0x0 0x3000 0x1000>; 134 ranges = <0x0 0x5000 0x1000>; 157 ranges = <0x0 0x7000 0x1000>; [all …]
|
H A D | stm32mp15xxad-pinctrl.dtsi | 13 gpio-ranges = <&pinctrl 0 0 16>; 19 gpio-ranges = <&pinctrl 0 16 16>; 25 gpio-ranges = <&pinctrl 0 32 16>; 31 gpio-ranges = <&pinctrl 0 48 16>; 37 gpio-ranges = <&pinctrl 0 64 16>; 43 gpio-ranges = <&pinctrl 6 86 6>; 49 gpio-ranges = <&pinctrl 6 102 10>; 55 gpio-ranges = <&pinctrl 0 112 2>;
|
H A D | stm32mp15xxab-pinctrl.dtsi | 13 gpio-ranges = <&pinctrl 0 0 16>; 19 gpio-ranges = <&pinctrl 0 16 16>; 25 gpio-ranges = <&pinctrl 0 32 16>; 31 gpio-ranges = <&pinctrl 0 48 16>; 37 gpio-ranges = <&pinctrl 0 64 16>; 43 gpio-ranges = <&pinctrl 6 86 6>; 49 gpio-ranges = <&pinctrl 6 102 10>; 55 gpio-ranges = <&pinctrl 0 112 2>;
|
H A D | dra7-l4.dtsi | 12 ranges = <0x00000000 0x4a000000 0x100000>, /* segment 0 */ 20 ranges = <0x00000000 0x00000000 0x000800>, /* ap 0 */ 56 ranges = <0x0 0x2000 0x2000>; 63 ranges = <0 0 0x2000>; 70 ranges = <0 0x0 0x1400>; 145 ranges = <0x0 0x5000 0x1000>; 153 ranges = <0 0 0x2000>; 171 ranges = <0x0 0x8000 0x2000>; 178 ranges = <0 0 0x3000>; 214 ranges = <0x0 0x56000 0x1000>; [all …]
|
H A D | omap5-l4.dtsi | 12 ranges = <0x00000000 0x4a000000 0x080000>, /* segment 0 */ 24 ranges = <0x00000000 0x00000000 0x000800>, /* ap 0 */ 61 ranges = <0x0 0x2000 0x1000>; 68 ranges = <0 0 0x800>; 83 ranges = <0 0x800 0x800>; 104 ranges = <0 0x5a0 0xec>; 126 ranges = <0x0 0x4000 0x1000>; 134 ranges = <0 0 0x1000>; 152 ranges = <0x0 0x8000 0x2000>; 159 ranges = <0 0 0x2000>; [all …]
|
H A D | omap4-l4.dtsi | 13 ranges = <0x00000000 0x4a000000 0x080000>, /* segment 0 */ 25 ranges = <0x00000000 0x00000000 0x000800>, /* ap 0 */ 59 ranges = <0x0 0x2000 0x1000>; 66 ranges = <0 0 0x1000>; 95 ranges = <0x0 0x4000 0x1000>; 102 ranges = <0 0 0x2000>; 120 ranges = <0x0 0x8000 0x2000>; 127 ranges = <0 0 0x2000>; 161 ranges = <0x0 0x56000 0x1000>; 199 ranges = <0x0 0x58000 0x5000>; [all …]
|
/netbsd-src/sys/dev/pci/ |
H A D | pci_resource.c | 112 struct pci_resource_range ranges[NUM_PCI_RANGES]; member 183 struct pci_resource_range *ranges; in pci_new_bus() local 193 ranges = pr->pr_ranges; in pci_new_bus() 199 ranges = bridge->pd_bridge.ranges; in pci_new_bus() 201 memcpy(pb->pb_ranges, ranges, sizeof(pb->pb_ranges)); in pci_new_bus() 254 if (pd->pd_bridge.ranges[PCI_RANGE_IO].end) { in pci_resource_device_print() 259 pd->pd_bridge.ranges[PCI_RANGE_IO].start, in pci_resource_device_print() 260 pd->pd_bridge.ranges[PCI_RANGE_IO].end); in pci_resource_device_print() 262 if (pd->pd_bridge.ranges[PCI_RANGE_MEM].end) { in pci_resource_device_print() 267 pd->pd_bridge.ranges[PCI_RANGE_MEM].start, in pci_resource_device_print() [all …]
|
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/ |
H A D | amdgpu_dm_pp_smu.c | 549 struct pp_smu_wm_range_sets *ranges) in pp_rv_set_wm_ranges() argument 560 wm_with_clock_ranges.num_wm_dmif_sets = ranges->num_reader_wm_sets; in pp_rv_set_wm_ranges() 561 wm_with_clock_ranges.num_wm_mcif_sets = ranges->num_writer_wm_sets; in pp_rv_set_wm_ranges() 564 if (ranges->reader_wm_sets[i].wm_inst > 3) in pp_rv_set_wm_ranges() 568 ranges->reader_wm_sets[i].wm_inst; in pp_rv_set_wm_ranges() 570 ranges->reader_wm_sets[i].max_drain_clk_mhz * 1000; in pp_rv_set_wm_ranges() 572 ranges->reader_wm_sets[i].min_drain_clk_mhz * 1000; in pp_rv_set_wm_ranges() 574 ranges->reader_wm_sets[i].max_fill_clk_mhz * 1000; in pp_rv_set_wm_ranges() 576 ranges->reader_wm_sets[i].min_fill_clk_mhz * 1000; in pp_rv_set_wm_ranges() 580 if (ranges->writer_wm_sets[i].wm_inst > 3) in pp_rv_set_wm_ranges() [all …]
|
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
H A D | intel_uncore.c | 32 static int intel_fw_table_check(const struct intel_forcewake_range *ranges, in intel_fw_table_check() argument 39 for (i = 0, prev = -1; i < num_ranges; i++, ranges++) { in intel_fw_table_check() 41 if (is_watertight && (prev + 1) != (s32)ranges->start) { in intel_fw_table_check() 43 __func__, i, ranges->start, ranges->end, prev); in intel_fw_table_check() 48 if (prev >= (s32)ranges->start) { in intel_fw_table_check() 50 __func__, i, ranges->start, ranges->end, prev); in intel_fw_table_check() 55 if (ranges->start >= ranges->end) { in intel_fw_table_check() 57 __func__, i, ranges->start, ranges->end); in intel_fw_table_check() 61 prev = ranges->end; in intel_fw_table_check() 102 const struct intel_forcewake_range *ranges; in intel_uncore_mock_selftests() member [all …]
|
/netbsd-src/external/bsd/elftoolchain/dist/libdwarf/ |
H A D | dwarf_ranges.c | 36 Dwarf_Ranges **ranges, Dwarf_Signed *ret_cnt, Dwarf_Unsigned *ret_byte_cnt, in _dwarf_get_ranges() argument 49 *ranges = rl->rl_rgarray; in _dwarf_get_ranges() 59 dwarf_get_ranges(Dwarf_Debug dbg, Dwarf_Off offset, Dwarf_Ranges **ranges, in dwarf_get_ranges() argument 63 if (dbg == NULL || ranges == NULL || ret_cnt == NULL) { in dwarf_get_ranges() 74 ranges, ret_cnt, ret_byte_cnt, error)); in dwarf_get_ranges() 79 Dwarf_Ranges **ranges, Dwarf_Signed *ret_cnt, Dwarf_Unsigned *ret_byte_cnt, in dwarf_get_ranges_a() argument 83 if (dbg == NULL || die == NULL || ranges == NULL || ret_cnt == NULL) { in dwarf_get_ranges_a() 88 return (_dwarf_get_ranges(dbg, die->die_cu, offset, ranges, ret_cnt, in dwarf_get_ranges_a()
|
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/clk_mgr/dcn21/ |
H A D | amdgpu_rn_clk_mgr.c | 413 void build_watermark_ranges(struct clk_bw_params *bw_params, struct pp_smu_wm_range_sets *ranges) in build_watermark_ranges() argument 424 ranges->reader_wm_sets[num_valid_sets].wm_inst = bw_params->wm_table.entries[i].wm_inst; in build_watermark_ranges() 425 ranges->reader_wm_sets[num_valid_sets].wm_type = bw_params->wm_table.entries[i].wm_type; in build_watermark_ranges() 427 …ranges->reader_wm_sets[num_valid_sets].min_fill_clk_mhz = PP_SMU_WM_SET_RANGE_CLK_UNCONSTRAINED_MI… in build_watermark_ranges() 428 …ranges->reader_wm_sets[num_valid_sets].max_fill_clk_mhz = PP_SMU_WM_SET_RANGE_CLK_UNCONSTRAINED_MA… in build_watermark_ranges() 431 if (ranges->reader_wm_sets[num_valid_sets].wm_type == WM_TYPE_PSTATE_CHG) { in build_watermark_ranges() 433 ranges->reader_wm_sets[num_valid_sets].min_drain_clk_mhz = 0; in build_watermark_ranges() 436 …ranges->reader_wm_sets[num_valid_sets].min_drain_clk_mhz = bw_params->clk_table.entries[i - 1].dcf… in build_watermark_ranges() 438 …ranges->reader_wm_sets[num_valid_sets].max_drain_clk_mhz = bw_params->clk_table.entries[i].dcfclk_… in build_watermark_ranges() 442 …ranges->reader_wm_sets[num_valid_sets].min_fill_clk_mhz = PP_SMU_WM_SET_RANGE_CLK_UNCONSTRAINED_MI… in build_watermark_ranges() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | ranges | 1 // <ranges> -*- C++ -*- 25 /** @file include/ranges 49 * @defgroup ranges Ranges 51 * Components for dealing with ranges of elements. 57 namespace ranges 118 { return ranges::begin(_M_derived()) == ranges::end(_M_derived()); } 122 { return ranges::begin(_M_derived()) == ranges::end(_M_derived()); } 125 operator bool() requires requires { ranges::empty(_M_derived()); } 126 { return !ranges::empty(_M_derived()); } 129 operator bool() const requires requires { ranges::empty(_M_derived()); } [all …]
|
/netbsd-src/external/bsd/openldap/dist/libraries/liblunicode/ucdata/ |
H A D | ucgendat.c | 105 ac_uint4 *ranges; member 260 rlp->ranges = (ac_uint4 *) in add_range() 263 rlp->ranges = (ac_uint4 *) in add_range() 264 realloc((char *) rlp->ranges, in add_range() 274 rlp->ranges[0] = start; in add_range() 275 rlp->ranges[1] = end; in add_range() 284 if (start > rlp->ranges[j]) { in add_range() 286 rlp->ranges[j++] = start; in add_range() 287 rlp->ranges[j++] = end; in add_range() 296 i < rlp->used && start > rlp->ranges[i + 1] + 1; i += 2) ; in add_range() [all …]
|