Home
last modified time | relevance | path

Searched refs:bsh (Results 1 – 25 of 289) sorted by relevance

12345678910>>...12

/netbsd/sys/arch/hpcmips/hpcmips/
H A Dbus_space_through.c52 bus_space_unmap(t->bs_base, bsh, size); in bs_through_bs_unmap()
78 bus_space_free(t->bs_base, bsh, size); in bs_through_bs_free()
88 return bus_space_vaddr(t->bs_base, bsh); in bs_through_bs_vaddr()
138 return bus_space_read_1(t->bs_base, bsh, offset); in bs_through_bs_r_1()
144 return bus_space_read_2(t->bs_base, bsh, offset); in bs_through_bs_r_2()
150 return bus_space_read_4(t->bs_base, bsh, offset); in bs_through_bs_r_4()
156 return bus_space_read_8(t->bs_base, bsh, offset); in bs_through_bs_r_8()
231 bus_space_write_1(t->bs_base, bsh, offset, value); in bs_through_bs_w_1()
238 bus_space_write_2(t->bs_base, bsh, offset, value); in bs_through_bs_w_2()
245 bus_space_write_4(t->bs_base, bsh, offset, value); in bs_through_bs_w_4()
[all …]
H A Dbus_space.c304 addr = MIPS_KSEG1_TO_PHYS(bsh); in __bs_unmap()
306 addr = bsh; in __bs_unmap()
311 bsh, bsh+size, t->name)); in __bs_unmap()
321 *nbshp = bsh + offset; in __bs_subregion()
364 bus_space_unmap(t, bsh, size); in __bs_free()
380 if (badaddr((void *)(bsh + offset), size)) in __bs_peek()
408 if (badaddr((void *)(bsh + offset), size)) in __bs_poke()
413 bus_space_write_1(t, bsh, offset, val); in __bs_poke()
416 bus_space_write_2(t, bsh, offset, val); in __bs_poke()
419 bus_space_write_4(t, bsh, offset, val); in __bs_poke()
[all …]
/netbsd/sys/arch/sh3/sh3/
H A Dsh3_bus_space.c52 return *(volatile uint8_t *)(bsh + offset); in bus_space_read_1()
153 uint8_t *p = (uint8_t *)(bsh + offset); in bus_space_read_region_1()
163 uint16_t *p = (uint16_t *)(bsh + offset); in bus_space_read_region_2()
173 uint32_t *p = (uint32_t *)(bsh + offset); in bus_space_read_region_4()
192 uint8_t *p = (uint8_t *)(bsh + offset); in bus_space_read_region_stream_1()
202 uint16_t *p = (uint16_t *)(bsh + offset); in bus_space_read_region_stream_2()
212 uint32_t *p = (uint32_t *)(bsh + offset); in bus_space_read_region_stream_4()
230 uint8_t *p = (uint8_t *)(bsh + offset); in bus_space_write_region_1()
240 uint16_t *p = (uint16_t *)(bsh + offset); in bus_space_write_region_2()
250 uint32_t *p = (uint32_t *)(bsh + offset); in bus_space_write_region_4()
[all …]
/netbsd/sys/arch/sh3/dev/
H A Dshpcic.c405 *nbshp = bsh + offset; in shpcic_iomem_subregion()
508 value = __shpcic_io_read_1(bsh, offset); in shpcic_io_read_1()
518 value = __shpcic_io_read_2(bsh, offset); in shpcic_io_read_2()
528 value = __shpcic_io_read_4(bsh, offset); in shpcic_io_read_4()
538 value = __shpcic_mem_read_1(bsh, offset); in shpcic_mem_read_1()
548 value = __shpcic_mem_read_2(bsh, offset); in shpcic_mem_read_2()
558 value = __shpcic_mem_read_4(bsh, offset); in shpcic_mem_read_4()
772 __shpcic_io_write_1(bsh, offset, value); in shpcic_io_write_1()
780 __shpcic_io_write_2(bsh, offset, value); in shpcic_io_write_2()
788 __shpcic_io_write_4(bsh, offset, value); in shpcic_io_write_4()
[all …]
H A Dshpcicvar.h71 void shpcic_io_read_multi_1(void *v, bus_space_handle_t bsh,
73 void shpcic_io_read_multi_2(void *v, bus_space_handle_t bsh,
75 void shpcic_io_read_multi_4(void *v, bus_space_handle_t bsh,
99 void shpcic_io_write_1(void *v, bus_space_handle_t bsh,
101 void shpcic_io_write_2(void *v, bus_space_handle_t bsh,
103 void shpcic_io_write_4(void *v, bus_space_handle_t bsh,
105 void shpcic_mem_write_1(void *v, bus_space_handle_t bsh,
107 void shpcic_mem_write_2(void *v, bus_space_handle_t bsh,
109 void shpcic_mem_write_4(void *v, bus_space_handle_t bsh,
141 void shpcic_io_set_multi_1(void *v, bus_space_handle_t bsh,
[all …]
/netbsd/sys/arch/evbsh3/t_sh7706lan/
H A Dt_sh7706lan_space.c164 if (bsh >= SH3_P2SEG_BASE && bsh <= SH3_P2SEG_END) { in t_sh7706lan_iomem_unmap()
170 va = sh3_trunc_page(bsh); in t_sh7706lan_iomem_unmap()
171 endva = sh3_round_page(bsh + size); in t_sh7706lan_iomem_unmap()
179 bpa += bsh & PGOFSET; in t_sh7706lan_iomem_unmap()
194 *nbshp = bsh + offset; in t_sh7706lan_iomem_subregion()
214 t_sh7706lan_iomem_unmap(v, bsh, size); in t_sh7706lan_iomem_free()
421 return *(volatile uint8_t *)(bsh + offset); in t_sh7706lan_iomem_read_1()
446 volatile uint8_t *p = (void *)(bsh + offset); in t_sh7706lan_iomem_read_multi_1()
485 volatile uint8_t *p = (void *)(bsh + offset); in t_sh7706lan_iomem_read_region_1()
514 *(volatile uint8_t *)(bsh + offset) = value; in t_sh7706lan_iomem_write_1()
[all …]
/netbsd/sys/rump/dev/lib/libpci/
H A Drumpdev_bus_space.c80 unsigned short addr = bsh + offset; in bus_space_read_1()
86 rv = *(volatile uint8_t *)(bsh + offset); in bus_space_read_1()
100 unsigned short addr = bsh + offset; in bus_space_read_2()
106 rv = *(volatile uint16_t *)(bsh + offset); in bus_space_read_2()
120 unsigned short addr = bsh + offset; in bus_space_read_4()
172 unsigned short addr = bsh + offset; in bus_space_write_1()
178 *(volatile uint8_t *)(bsh + offset) = v; in bus_space_write_1()
189 unsigned short addr = bsh + offset; in bus_space_write_2()
195 *(volatile uint16_t *)(bsh + offset) = v; in bus_space_write_2()
206 unsigned short addr = bsh + offset; in bus_space_write_4()
[all …]
/netbsd/sys/arch/arm/ti/
H A Dam3_platform.c74 static bus_space_handle_t bsh; in am33xx_platform_bootstrap() local
81 bus_space_unmap(bst, bsh, 0x1000); in am33xx_platform_bootstrap()
89 bus_space_unmap(bst, bsh, 0x1000); in am33xx_platform_bootstrap()
92 wdelay(bst, bsh); in am33xx_platform_bootstrap()
94 wdelay(bst, bsh); in am33xx_platform_bootstrap()
96 wdelay(bst, bsh); in am33xx_platform_bootstrap()
97 bus_space_unmap(bst, bsh, 0x1000); in am33xx_platform_bootstrap()
101 bus_space_unmap(bst, bsh, 0x1000); in am33xx_platform_bootstrap()
114 static bus_space_handle_t bsh = 0; in am33xx_platform_delay() local
119 if (bsh == 0) in am33xx_platform_delay()
[all …]
/netbsd/sys/arch/arc/include/
H A Dbus_funcs.h132 (*(bst)->bs_dispose_handle)(bst, bsh, size)
143 #define bus_space_paddr(bst, bsh, pap) \ argument
144 (*(bst)->bs_paddr)(bst, bsh, pap)
153 #define bus_space_vaddr(bst, bsh) \ argument
154 ((void *)(bsh))
234 bus_space_read_2(tag, bsh, offset)
236 bus_space_read_4(tag, bsh, offset)
238 bus_space_read_8(tag, bsh, offset)
252 bus_space_write_2(tag, bsh, offset, data)
254 bus_space_write_4(tag, bsh, offset, data)
[all …]
/netbsd/sys/arch/landisk/dev/
H A Dobio.c337 if (bsh >= SH3_P2SEG_BASE && bsh <= SH3_P2SEG_END) { in obio_iomem_unmap()
343 va = sh3_trunc_page(bsh); in obio_iomem_unmap()
344 endva = sh3_round_page(bsh + size); in obio_iomem_unmap()
352 bpa += bsh & PGOFSET; in obio_iomem_unmap()
367 *nbshp = bsh + offset; in obio_iomem_subregion()
387 obio_iomem_unmap(v, bsh, size); in obio_iomem_free()
555 return *(volatile uint8_t *)(bsh + offset); in obio_iomem_read_1()
562 return *(volatile uint16_t *)(bsh + offset); in obio_iomem_read_2()
569 return *(volatile uint32_t *)(bsh + offset); in obio_iomem_read_4()
576 volatile uint8_t *p = (void *)(bsh + offset); in obio_iomem_read_multi_1()
[all …]
/netbsd/sys/arch/evbsh3/ap_ms104_sh4/
H A Dap_ms104_sh4_space.c164 if (bsh >= SH3_P2SEG_BASE && bsh <= SH3_P2SEG_END) { in ap_ms104_sh4_iomem_unmap()
170 va = sh3_trunc_page(bsh); in ap_ms104_sh4_iomem_unmap()
171 endva = sh3_round_page(bsh + size); in ap_ms104_sh4_iomem_unmap()
179 bpa += bsh & PGOFSET; in ap_ms104_sh4_iomem_unmap()
194 *nbshp = bsh + offset; in ap_ms104_sh4_iomem_subregion()
214 ap_ms104_sh4_iomem_unmap(v, bsh, size); in ap_ms104_sh4_iomem_free()
493 return *(volatile uint8_t *)(bsh + offset); in ap_ms104_sh4_iomem_read_1()
514 volatile uint8_t *p = (void *)(bsh + offset); in ap_ms104_sh4_iomem_read_multi_1()
549 volatile uint8_t *p = (void *)(bsh + offset); in ap_ms104_sh4_iomem_read_region_1()
584 *(volatile uint8_t *)(bsh + offset) = value; in ap_ms104_sh4_iomem_write_1()
[all …]
/netbsd/sys/dev/ic/
H A Dmb86960.c119 bus_space_handle_t bsh = sc->sc_bsh; in mb86960_attach() local
153 bus_space_write_1(bst, bsh, FE_DLCR6, in mb86960_attach()
375 bus_space_handle_t bsh = sc->sc_bsh; in mb86960_stop() local
388 bus_space_write_1(bst, bsh, FE_DLCR6, in mb86960_stop()
398 bus_space_write_1(bst, bsh, FE_DLCR7, in mb86960_stop()
442 bus_space_handle_t bsh = sc->sc_bsh; in mb86960_droppacket() local
454 bus_space_handle_t bsh = sc->sc_bsh; in mb86960_init() local
485 bus_space_write_1(bst, bsh, FE_DLCR6, in mb86960_init()
490 bus_space_write_1(bst, bsh, FE_DLCR7, in mb86960_init()
614 bus_space_handle_t bsh = sc->sc_bsh; in mb86960_xmit() local
[all …]
H A Dmb86950.c215 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_stop() local
243 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_drain_fifo() local
263 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_config() local
390 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_watchdog() local
523 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_init() local
554 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_start() local
599 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_put_fifo() local
670 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_intr() local
732 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_tint() local
776 bus_space_handle_t bsh = sc->sc_bsh; in mb86950_rint() local
[all …]
H A Dsmc91cxx.c234 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_attach() local
404 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_set_media() local
451 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_mediastatus() local
482 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_init() local
614 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_start() local
678 if (bus_space_read_1(bst, bsh, in smc91cxx_start()
785 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_copy_tx_frame() local
861 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_intr() local
1052 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_read() local
1314 bus_space_handle_t bsh = sc->sc_bsh; in smc91cxx_stop() local
[all …]
/netbsd/sys/arch/mac68k/nubus/
H A Dif_ae_nubus.c86 bus_space_handle_t bsh; in ae_nubus_match() local
90 0, &bsh)) in ae_nubus_match()
131 bus_space_handle_t bsh; in ae_nubus_attach() local
138 0, &bsh)) { in ae_nubus_attach()
163 if (bus_space_subregion(bst, bsh, in ae_nubus_attach()
173 if (bus_space_subregion(bst, bsh, in ae_nubus_attach()
199 if (bus_space_subregion(bst, bsh, in ae_nubus_attach()
205 if (bus_space_subregion(bst, bsh, in ae_nubus_attach()
231 if (bus_space_subregion(bst, bsh, in ae_nubus_attach()
290 bus_space_read_1(bst, bsh, in ae_nubus_attach()
[all …]
H A Dnubus.c101 bus_space_handle_t bsh; in nubus_attach() local
134 bus_space_unmap(bst, bsh, NBMEMSIZE); in nubus_attach()
156 if (nubus_find_rsrc(bst, bsh, in nubus_attach()
172 rsrcid = nubus_read_1(bst, bsh, in nubus_attach()
196 if (nubus_find_rsrc(bst, bsh, in nubus_attach()
203 if (nubus_find_rsrc(bst, bsh, in nubus_attach()
222 if (nubus_find_rsrc(bst, bsh, in nubus_attach()
233 if (nubus_get_ind_data(bst, bsh, in nubus_attach()
250 bus_space_unmap(bst, bsh, NBMEMSIZE); in nubus_attach()
263 bus_space_handle_t bsh; in nubus_print() local
[all …]
/netbsd/sys/arch/hp300/dev/
H A Dintiovar.h68 #define WAIT(bst,bsh) \ argument
69 while (bus_space_read_1(bst,bsh,INTIO_DEV_3xx_STAT) \
71 #define DATAWAIT(bst,bsh) \ argument
72 while (!(bus_space_read_1(bst, bsh, INTIO_DEV_3xx_STAT) \
82 WAIT(bst, bsh); in intio_device_readcmd()
83 bus_space_write_1(bst, bsh, INTIO_DEV_3xx_CMD, cmd); in intio_device_readcmd()
86 DATAWAIT(bst, bsh); in intio_device_readcmd()
99 WAIT(bst, bsh); in intio_device_writecmd()
100 bus_space_write_1(bst, bsh, INTIO_DEV_3xx_CMD, cmd); in intio_device_writecmd()
102 WAIT(bst, bsh); in intio_device_writecmd()
[all …]
H A Dsti_sgc.c277 bus_space_handle_t bsh = rom->regh[2]; in sti_evrx_putcmap() local
285 while ((bus_space_read_4(bst, bsh, EVRX_MAGIC10) & in sti_evrx_putcmap()
288 bus_space_write_1(bst, bsh, EVRX_BT458_ADDR, i); in sti_evrx_putcmap()
301 bus_space_handle_t bsh = rom->regh[2]; in sti_evrx_resetramdac() local
313 bus_space_write_1(bst, bsh, EVRX_BT458_ADDR, 0x04); in sti_evrx_resetramdac()
314 bus_space_write_1(bst, bsh, EVRX_BT458_CTRL, 0xff); in sti_evrx_resetramdac()
317 bus_space_write_1(bst, bsh, EVRX_BT458_ADDR, 0x05); in sti_evrx_resetramdac()
318 bus_space_write_1(bst, bsh, EVRX_BT458_CTRL, 0x00); in sti_evrx_resetramdac()
321 bus_space_write_1(bst, bsh, EVRX_BT458_ADDR, 0x06); in sti_evrx_resetramdac()
351 bus_space_handle_t bsh = rom->regh[2]; in sti_evrx_resetcmap() local
[all …]
/netbsd/sys/arch/arm/nvidia/
H A Dtegra210_car.c871 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_utmip_init() local
1146 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_clock_get_rate_pll() local
1183 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_clock_set_rate_pll() local
1264 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_clock_set_parent_mux() local
1296 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_clock_get_parent_mux() local
1333 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_clock_get_rate_div() local
1388 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_clock_set_rate_div() local
1465 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_clock_enable_gate() local
1679 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_xusbio_enable_hw_control() local
1698 bus_space_handle_t bsh = sc->sc_bsh; in tegra210_car_xusbio_enable_hw_seq() local
[all …]
H A Dtegra_ahcisata.c249 bus_space_handle_t bsh = sc->sc_bsh; in tegra_ahcisata_init() local
279 tegra_reg_set_clear(bst, bsh, TEGRA_T_SATA0_NVOOB_REG, in tegra_ahcisata_init()
298 bus_space_write_4(bst, bsh, TEGRA_T_SATA0_INDEX_REG, in tegra_ahcisata_init()
314 bus_space_write_4(bst, bsh, TEGRA_T_SATA0_INDEX_REG, 0); in tegra_ahcisata_init()
318 tegra_reg_set_clear(bst, bsh, TEGRA_T_SATA0_CFG_SATA_REG, in tegra_ahcisata_init()
321 bus_space_write_4(bst, bsh, TEGRA_T_SATA0_BKDOOR_CC_REG, in tegra_ahcisata_init()
324 tegra_reg_set_clear(bst, bsh, TEGRA_T_SATA0_CFG_SATA_REG, in tegra_ahcisata_init()
342 tegra_reg_set_clear(bst, bsh, TEGRA_T_SATA0_CFG1_REG, in tegra_ahcisata_init()
350 bus_space_write_4(bst, bsh, TEGRA_SATA_FPCI_BAR5_REG, in tegra_ahcisata_init()
354 bus_space_write_4(bst, bsh, TEGRA_T_SATA0_CFG9_REG, in tegra_ahcisata_init()
[all …]
H A Dtegra_pmc.c122 bus_space_handle_t bsh; in tegra_pmc_reset() local
125 tegra_pmc_get_bs(&bst, &bsh); in tegra_pmc_reset()
127 cntrl = bus_space_read_4(bst, bsh, PMC_CNTRL_0_REG); in tegra_pmc_reset()
129 bus_space_write_4(bst, bsh, PMC_CNTRL_0_REG, cntrl); in tegra_pmc_reset()
140 bus_space_handle_t bsh; in tegra_pmc_power() local
145 tegra_pmc_get_bs(&bst, &bsh); in tegra_pmc_power()
172 bus_space_handle_t bsh; in tegra_pmc_remove_clamping() local
174 tegra_pmc_get_bs(&bst, &bsh); in tegra_pmc_remove_clamping()
193 bus_space_handle_t bsh; in tegra_pmc_hdmi_enable() local
195 tegra_pmc_get_bs(&bst, &bsh); in tegra_pmc_hdmi_enable()
[all …]
/netbsd/sys/arch/mac68k/dev/
H A Dif_ae.c54 bus_space_write_2(bst, bsh, ofs + i8, 0x8888); in ae_size_card_memory()
55 bus_space_write_2(bst, bsh, ofs + i4, 0x4444); in ae_size_card_memory()
56 bus_space_write_2(bst, bsh, ofs + i3, 0x3333); in ae_size_card_memory()
57 bus_space_write_2(bst, bsh, ofs + i2, 0x2222); in ae_size_card_memory()
58 bus_space_write_2(bst, bsh, ofs + i1, 0x1111); in ae_size_card_memory()
69 if (bus_space_read_2(bst, bsh, ofs + i1) == 0x1111 && in ae_size_card_memory()
70 bus_space_read_2(bst, bsh, ofs + i2) == 0x2222 && in ae_size_card_memory()
73 bus_space_read_2(bst, bsh, ofs + i8) == 0x8888) in ae_size_card_memory()
79 bus_space_read_2(bst, bsh, ofs + i4) == 0x4444) in ae_size_card_memory()
85 bus_space_read_2(bst, bsh, ofs + i2) == 0x4444)) in ae_size_card_memory()
[all …]
/netbsd/sys/arch/arc/arc/
H A Dbus_space.c140 bus_space_handle_t bsh, \
397 *bshp = bsh; in arc_bus_space_compose_handle()
402 if (bsh < MIPS_KSEG2_START) { /* KSEG1 */ in arc_bus_space_compose_handle()
418 *bshp = bsh; in arc_bus_space_compose_handle()
434 if (bsh < MIPS_KSEG0_START) /* KUSEG */ in arc_bus_space_paddr()
436 (unsigned long long) bsh); in arc_bus_space_paddr()
438 *pap = MIPS_KSEG0_TO_PHYS(bsh); in arc_bus_space_paddr()
440 *pap = MIPS_KSEG1_TO_PHYS(bsh); in arc_bus_space_paddr()
481 err = bus_space_paddr(bst, bsh, &pa); in arc_bus_space_unmap()
489 bus_space_dispose_handle(bst, bsh, size); in arc_bus_space_unmap()
[all …]
/netbsd/sys/arch/mipsco/mipsco/
H A Dbus_space.c113 bus_space_handle_t bsh = bst->bs_vbase + in mipsco_bus_space_compose_handle() local
121 *bshp = bsh; in mipsco_bus_space_compose_handle()
126 if (bsh < MIPS_KSEG2_START) { /* KSEG1 */ in mipsco_bus_space_compose_handle()
142 *bshp = bsh; in mipsco_bus_space_compose_handle()
155 if (bsh < MIPS_KSEG0_START) /* KUSEG */ in mipsco_bus_space_paddr()
158 *pap = MIPS_KSEG0_TO_PHYS(bsh); in mipsco_bus_space_paddr()
160 *pap = MIPS_KSEG1_TO_PHYS(bsh); in mipsco_bus_space_paddr()
198 err = bus_space_paddr(bst, bsh, &pa); in mipsco_bus_space_unmap()
201 bst->bs_name, (void *)bsh, err); in mipsco_bus_space_unmap()
206 bus_space_dispose_handle(bst, bsh, size); in mipsco_bus_space_unmap()
[all …]
/netbsd/sys/arch/epoc32/epoc32/
H A Dexternal_io.c137 *nbshp = bsh + offset; in external_bs_subregion()
143 external_bs_rr_1(void *cookie, bus_space_handle_t bsh, in external_bs_rr_1() argument
149 datap[i] = external_bs_r_1(cookie, bsh, offset + i); in external_bs_rr_1()
153 external_bs_rr_2(void *cookie, bus_space_handle_t bsh, in external_bs_rr_2() argument
160 external_bs_r_4(cookie, bsh, offset + (i << 1)); in external_bs_rr_2()
168 external_bs_wr_1(void *cookie, bus_space_handle_t bsh, in external_bs_wr_1() argument
174 external_bs_w_1(cookie, bsh, offset + i, datap[i]); in external_bs_wr_1()
178 external_bs_wr_2(void *cookie, bus_space_handle_t bsh, in external_bs_wr_2() argument
185 external_bs_w_4(cookie, bsh, offset + (i << 1), in external_bs_wr_2()
201 external_bs_w_1(cookie, bsh, offset + i, value); in external_bs_sr_1()
[all …]

12345678910>>...12