Lines Matching refs:bsh
39 ae_size_card_memory(bus_space_tag_t bst, bus_space_handle_t bsh, int ofs)
54 bus_space_write_2(bst, bsh, ofs + i8, 0x8888);
55 bus_space_write_2(bst, bsh, ofs + i4, 0x4444);
56 bus_space_write_2(bst, bsh, ofs + i3, 0x3333);
57 bus_space_write_2(bst, bsh, ofs + i2, 0x2222);
58 bus_space_write_2(bst, bsh, ofs + i1, 0x1111);
69 if (bus_space_read_2(bst, bsh, ofs + i1) == 0x1111 &&
70 bus_space_read_2(bst, bsh, ofs + i2) == 0x2222 &&
71 bus_space_read_2(bst, bsh, ofs + i3) == 0x3333 &&
72 bus_space_read_2(bst, bsh, ofs + i4) == 0x4444 &&
73 bus_space_read_2(bst, bsh, ofs + i8) == 0x8888)
76 if (bus_space_read_2(bst, bsh, ofs + i1) == 0x1111 &&
77 bus_space_read_2(bst, bsh, ofs + i2) == 0x2222 &&
78 bus_space_read_2(bst, bsh, ofs + i3) == 0x3333 &&
79 bus_space_read_2(bst, bsh, ofs + i4) == 0x4444)
82 if ((bus_space_read_2(bst, bsh, ofs + i1) == 0x1111 &&
83 bus_space_read_2(bst, bsh, ofs + i2) == 0x2222) ||
84 (bus_space_read_2(bst, bsh, ofs + i1) == 0x3333 &&
85 bus_space_read_2(bst, bsh, ofs + i2) == 0x4444))
88 if (bus_space_read_2(bst, bsh, ofs + i1) == 0x1111 ||
89 bus_space_read_2(bst, bsh, ofs + i1) == 0x4444)