| /netbsd-src/sys/arch/mvme68k/mvme68k/ |
| H A D | bus_space.c | 108 _bus_space_unmap(void *cookie, bus_space_handle_t bush, bus_size_t size) in _bus_space_unmap() argument 111 if ((char *)bush >= intiobase && (char *)bush < intiolimit) in _bus_space_unmap() 114 bush = m68k_trunc_page(bush); in _bus_space_unmap() 117 _bus_dmamem_unmap(NULL, (void *) bush, size); in _bus_space_unmap() 122 _bus_space_peek_1(void *cookie, bus_space_handle_t bush, bus_size_t offset, in _bus_space_peek_1() argument 130 return do_peek(&peek1, (void *)(bush + offset), (void *)valuep); in _bus_space_peek_1() 135 _bus_space_peek_2(void *cookie, bus_space_handle_t bush, bus_size_t offset, in _bus_space_peek_2() argument 143 return do_peek(&peek2, (void *)(bush + offset), (void *)valuep); in _bus_space_peek_2() 148 _bus_space_peek_4(void *cookie, bus_space_handle_t bush, bus_size_t offset, in _bus_space_peek_4() argument 156 return do_peek(&peek4, (void *)(bush + offset), (void *)valuep); in _bus_space_peek_4() [all …]
|
| /netbsd-src/sys/arch/virt68k/virt68k/ |
| H A D | bus_space.c | 79 _bus_space_unmap(void *cookie, bus_space_handle_t bush, bus_size_t size) in _bus_space_unmap() argument 81 KASSERT((bus_addr_t)bush >= VIRT68K_IO_BASE); in _bus_space_unmap() 86 _bus_space_peek_1(void *cookie, bus_space_handle_t bush, bus_size_t offset, in _bus_space_peek_1() argument 94 return do_peek(&peek1, (void *)(bush + offset), (void *)valuep); in _bus_space_peek_1() 99 _bus_space_peek_2(void *cookie, bus_space_handle_t bush, bus_size_t offset, in _bus_space_peek_2() argument 107 return do_peek(&peek2, (void *)(bush + offset), (void *)valuep); in _bus_space_peek_2() 112 _bus_space_peek_4(void *cookie, bus_space_handle_t bush, bus_size_t offset, in _bus_space_peek_4() argument 120 return do_peek(&peek4, (void *)(bush + offset), (void *)valuep); in _bus_space_peek_4() 125 _bus_space_poke_1(void *cookie, bus_space_handle_t bush, bus_size_t offset, in _bus_space_poke_1() argument 129 return do_poke(&poke1, (void *)(bush + offset), (u_int)value); in _bus_space_poke_1() [all …]
|
| /netbsd-src/sys/arch/mvme68k/dev/ |
| H A D | zs_pcctwo.c | 110 bus_space_handle_t bush; in zsc_pcctwo_attach() local 117 bus_space_map(pa->pa_bust, pa->pa_offset, 8, 0, &bush); in zsc_pcctwo_attach() 122 zs.zs_chan_b.zc_csr = (volatile uint8_t *)bush + 1; in zsc_pcctwo_attach() 123 zs.zs_chan_b.zc_data = (volatile uint8_t *)bush + 3; in zsc_pcctwo_attach() 124 zs.zs_chan_a.zc_csr = (volatile uint8_t *)bush + 5; in zsc_pcctwo_attach() 125 zs.zs_chan_a.zc_data = (volatile uint8_t *)bush + 7; in zsc_pcctwo_attach() 169 bus_space_handle_t bush; in zsc_pcctwocninit() local 174 &bush); in zsc_pcctwocninit() 177 zs.zs_chan_b.zc_csr = (volatile uint8_t *)bush + 1; in zsc_pcctwocninit() 178 zs.zs_chan_b.zc_data = (volatile uint8_t *)bush + 3; in zsc_pcctwocninit() [all …]
|
| H A D | zs_pcc.c | 109 bus_space_handle_t bush; in zsc_pcc_attach() local 116 bus_space_map(pa->pa_bust, pa->pa_offset, 4, 0, &bush); in zsc_pcc_attach() 121 zs.zs_chan_b.zc_csr = (volatile uint8_t *)bush; in zsc_pcc_attach() 122 zs.zs_chan_b.zc_data = (volatile uint8_t *)bush + 1; in zsc_pcc_attach() 123 zs.zs_chan_a.zc_csr = (volatile uint8_t *)bush + 2; in zsc_pcc_attach() 124 zs.zs_chan_a.zc_data = (volatile uint8_t *)bush + 3; in zsc_pcc_attach() 187 bus_space_handle_t bush; in zsc_pcccninit() local 191 intiobase_phys + MAINBUS_PCC_OFFSET + PCC_ZS0_OFF, 4, 0, &bush); in zsc_pcccninit() 194 zs.zs_chan_b.zc_csr = (volatile uint8_t *)bush; in zsc_pcccninit() 195 zs.zs_chan_b.zc_data = (volatile uint8_t *)bush + 1; in zsc_pcccninit() [all …]
|
| H A D | wdsc.c | 124 bus_space_handle_t bush; in wdsc_pcc_attach() local 131 bus_space_map(pa->pa_bust, pa->pa_offset, 0x20, 0, &bush); in wdsc_pcc_attach() 136 sc->sc_sbicp = (sbic_regmap_p) bush; in wdsc_pcc_attach()
|
| /netbsd-src/sys/arch/amiga/pci/ |
| H A D | p5pb.c | 599 bus_space_handle_t bush; in p5pb_badaddr_range() local 605 bus_space_map(bust, base, len, 0, &bush); in p5pb_badaddr_range() 608 (bus_addr_t) bush, /* start VA */ in p5pb_badaddr_range() 609 (bus_addr_t) kvtop((void*) bush), /* start PA */ in p5pb_badaddr_range() 610 (bus_addr_t) bush + len, /* end VA */ in p5pb_badaddr_range() 611 (bus_addr_t) kvtop((void*) (bush + len)));/* end PA */ in p5pb_badaddr_range() 613 data = bus_space_vaddr(bust, bush); in p5pb_badaddr_range() 627 bus_space_unmap(bust, bush, len); in p5pb_badaddr_range()
|
| /netbsd-src/sys/dev/mvme/ |
| H A D | clmpcc_pcctwo.c | 180 bus_space_handle_t bush; in clmpcc_pcctwo_consiackhook() local 210 bush = (bus_space_handle_t) & (intiobase[MAINBUS_PCCTWO_OFFSET + in clmpcc_pcctwo_consiackhook() 213 foo = bus_space_read_1(&_mainbus_space_tag, bush, offset); in clmpcc_pcctwo_consiackhook()
|
| /netbsd-src/sys/arch/mips/alchemy/dev/ |
| H A D | aupcmcia.c | 608 bus_space_handle_t bush; in aupcm_io_alloc() local 622 size, align, 0, 0, &pih->addr, &bush); in aupcm_io_alloc() 625 (uint32_t)bush)); in aupcm_io_alloc() 629 pih->ihandle = (void *)bush; in aupcm_io_alloc()
|
| /netbsd-src/share/dict/ |
| H A D | web2a | 2980 axle bush 4737 bear bush 5278 benjamin bush 5767 bird-in-the-bush 5788 birds-in-the-bush 6152 blister bush 8473 buffalo bush 8811 bush baby 8812 bush basil 8813 bush bean [all …]
|
| H A D | web2 | 27876 bush
|
| /netbsd-src/games/fortune/datfiles/ |
| H A D | farber | 7 A hand in the bush is worth two anywhere else. 230 Half a loaf is better than two in the bush. 1420 She's trying to feather her own bush.
|
| H A D | limerick-o.real | 3242 Whose bush had grown hairier and hairier, 3486 Whose bush did so greatly increase 4018 But her hair and her bush didn't tally.
|
| H A D | fortunes-o.real | 1275 The man who said "A bird in the hand's worth two in the bush" has been
|
| H A D | fortunes2-o.real | 1437 bored with their daily routines: eat, fuck, sleep, hop around a bush now and 2625 A hand in a bird is worth two on 'er bush. 2627 A hand in the bush is worth two on the bird. 3045 from the top of the cliff clinging to a stunted bush with all his strength. 3260 Behind a bush he lifts his kilt and gawks at what he see's. 4422 brunette bush, n: 6834 bush, shoot more often and *always* eat what they shoot. 7251 'Cause one in the hand is worth one in the bush. 7843 my first day in the bush in Vietnam, and this fellow walked into the clearing
|
| H A D | fortunes2 | 5712 A bird in the hand is worth two in the bush. 7184 from the top of the cliff clinging to a stunted bush with all his strength. 9537 An idle mind is worth two in the bush. 11253 Be sure to evaluate the bird-hand/bush ratio.
|
| H A D | fortunes | 147 A bird in the bush usually has a friend in there with him.
|
| /netbsd-src/external/historical/nawk/dist/testdir/ |
| H A D | bib | 1582 …n a flame of fire out of the midst of a bush: and he looked, and, behold, the bush burned with fir… 1583 And Moses said, I will now turn aside, and see this great sight, why the bush is not burnt. 1584 And when the LORD saw that he turned aside to see, God called unto him out of the midst of the bush… 5827 …earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing c… 24700 And as touching the dead, that they rise: have ye not read in the book of Moses, how in the bush Go… 25191 …n by his own fruit. For of thorns men do not gather figs, nor of a bramble bush gather they grapes. 25817 Now that the dead are raised, even Moses shewed at the bush, when he calleth the Lord the God of Ab… 27147 … appeared to him in the wilderness of mount Sina an angel of the Lord in a flame of fire in a bush. 27152 … God send to be a ruler and a deliverer by the hand of the angel which appeared to him in the bush.
|
| /netbsd-src/etc/ |
| H A D | services | 22658 … Mike Bush mailto:mike.bush&allenvanguard.com
|