Lines Matching refs:count
268 size_t count);
273 size_t count);
278 size_t count);
282 bus_size_t offset, u_int8_t *addr, size_t count) in bus_space_read_multi_1() argument
286 insb(bsh + offset, addr, count); in bus_space_read_multi_1()
293 "=D" (addr), "=c" (count) : in bus_space_read_multi_1()
294 "r" (bsh + offset), "0" (addr), "1" (count) : in bus_space_read_multi_1()
302 bus_size_t offset, u_int16_t *addr, size_t count) in bus_space_read_multi_2() argument
306 insw(bsh + offset, addr, count); in bus_space_read_multi_2()
313 "=D" (addr), "=c" (count) : in bus_space_read_multi_2()
314 "r" (bsh + offset), "0" (addr), "1" (count) : in bus_space_read_multi_2()
322 bus_size_t offset, u_int32_t *addr, size_t count) in bus_space_read_multi_4() argument
326 insl(bsh + offset, addr, count); in bus_space_read_multi_4()
333 "=D" (addr), "=c" (count) : in bus_space_read_multi_4()
334 "r" (bsh + offset), "0" (addr), "1" (count) : in bus_space_read_multi_4()
352 size_t count);
357 size_t count);
362 size_t count);
366 bus_size_t offset, u_int8_t *addr, size_t count) in bus_space_read_region_1() argument
377 "=D" (addr), "=c" (count), "=d" (_port_) : in bus_space_read_region_1()
378 "0" (addr), "1" (count), "2" (_port_) : in bus_space_read_region_1()
387 "=D" (addr), "=c" (count), "=S" (_port_) : in bus_space_read_region_1()
388 "0" (addr), "1" (count), "2" (_port_) : in bus_space_read_region_1()
396 bus_size_t offset, u_int16_t *addr, size_t count) in bus_space_read_region_2() argument
407 "=D" (addr), "=c" (count), "=d" (_port_) : in bus_space_read_region_2()
408 "0" (addr), "1" (count), "2" (_port_) : in bus_space_read_region_2()
417 "=D" (addr), "=c" (count), "=S" (_port_) : in bus_space_read_region_2()
418 "0" (addr), "1" (count), "2" (_port_) : in bus_space_read_region_2()
426 bus_size_t offset, u_int32_t *addr, size_t count) in bus_space_read_region_4() argument
437 "=D" (addr), "=c" (count), "=d" (_port_) : in bus_space_read_region_4()
438 "0" (addr), "1" (count), "2" (_port_) : in bus_space_read_region_4()
447 "=D" (addr), "=c" (count), "=S" (_port_) : in bus_space_read_region_4()
448 "0" (addr), "1" (count), "2" (_port_) : in bus_space_read_region_4()
536 size_t count);
541 size_t count);
547 size_t count);
551 bus_size_t offset, const u_int8_t *addr, size_t count) in bus_space_write_multi_1() argument
555 outsb(bsh + offset, addr, count); in bus_space_write_multi_1()
562 "=S" (addr), "=c" (count) : in bus_space_write_multi_1()
563 "r" (bsh + offset), "0" (addr), "1" (count) : in bus_space_write_multi_1()
571 bus_size_t offset, const u_int16_t *addr, size_t count) in bus_space_write_multi_2() argument
575 outsw(bsh + offset, addr, count); in bus_space_write_multi_2()
582 "=S" (addr), "=c" (count) : in bus_space_write_multi_2()
583 "r" (bsh + offset), "0" (addr), "1" (count) : in bus_space_write_multi_2()
591 bus_size_t offset, const u_int32_t *addr, size_t count) in bus_space_write_multi_4() argument
595 outsl(bsh + offset, addr, count); in bus_space_write_multi_4()
602 "=S" (addr), "=c" (count) : in bus_space_write_multi_4()
603 "r" (bsh + offset), "0" (addr), "1" (count) : in bus_space_write_multi_4()
623 size_t count);
628 size_t count);
633 size_t count);
637 bus_size_t offset, const u_int8_t *addr, size_t count) in bus_space_write_region_1() argument
648 "=d" (_port_), "=S" (addr), "=c" (count) : in bus_space_write_region_1()
649 "0" (_port_), "1" (addr), "2" (count) : in bus_space_write_region_1()
658 "=D" (_port_), "=S" (addr), "=c" (count) : in bus_space_write_region_1()
659 "0" (_port_), "1" (addr), "2" (count) : in bus_space_write_region_1()
667 bus_size_t offset, const u_int16_t *addr, size_t count) in bus_space_write_region_2() argument
678 "=d" (_port_), "=S" (addr), "=c" (count) : in bus_space_write_region_2()
679 "0" (_port_), "1" (addr), "2" (count) : in bus_space_write_region_2()
688 "=D" (_port_), "=S" (addr), "=c" (count) : in bus_space_write_region_2()
689 "0" (_port_), "1" (addr), "2" (count) : in bus_space_write_region_2()
697 bus_size_t offset, const u_int32_t *addr, size_t count) in bus_space_write_region_4() argument
708 "=d" (_port_), "=S" (addr), "=c" (count) : in bus_space_write_region_4()
709 "0" (_port_), "1" (addr), "2" (count) : in bus_space_write_region_4()
718 "=D" (_port_), "=S" (addr), "=c" (count) : in bus_space_write_region_4()
719 "0" (_port_), "1" (addr), "2" (count) : in bus_space_write_region_4()
738 u_int8_t value, size_t count);
742 u_int16_t value, size_t count);
746 u_int32_t value, size_t count);
750 bus_size_t offset, u_int8_t value, size_t count) in bus_space_set_multi_1() argument
755 while (count--) in bus_space_set_multi_1()
758 while (count--) in bus_space_set_multi_1()
764 bus_size_t offset, u_int16_t value, size_t count) in bus_space_set_multi_2() argument
769 while (count--) in bus_space_set_multi_2()
772 while (count--) in bus_space_set_multi_2()
778 bus_size_t offset, u_int32_t value, size_t count) in bus_space_set_multi_4() argument
783 while (count--) in bus_space_set_multi_4()
786 while (count--) in bus_space_set_multi_4()
802 size_t count);
806 size_t count);
810 size_t count);
814 bus_size_t offset, u_int8_t value, size_t count) in bus_space_set_region_1() argument
819 for (; count != 0; count--, addr++) in bus_space_set_region_1()
822 for (; count != 0; count--, addr++) in bus_space_set_region_1()
828 bus_size_t offset, u_int16_t value, size_t count) in bus_space_set_region_2() argument
833 for (; count != 0; count--, addr += 2) in bus_space_set_region_2()
836 for (; count != 0; count--, addr += 2) in bus_space_set_region_2()
842 bus_size_t offset, u_int32_t value, size_t count) in bus_space_set_region_4() argument
847 for (; count != 0; count--, addr += 4) in bus_space_set_region_4()
850 for (; count != 0; count--, addr += 4) in bus_space_set_region_4()
867 bus_size_t off2, size_t count);
873 bus_size_t off2, size_t count);
879 bus_size_t off2, size_t count);
884 bus_size_t off2, size_t count) in bus_space_copy_region_1() argument
892 for (; count != 0; count--, addr1++, addr2++) in bus_space_copy_region_1()
896 for (addr1 += (count - 1), addr2 += (count - 1); in bus_space_copy_region_1()
897 count != 0; count--, addr1--, addr2--) in bus_space_copy_region_1()
903 for (; count != 0; count--, addr1++, addr2++) in bus_space_copy_region_1()
908 for (addr1 += (count - 1), addr2 += (count - 1); in bus_space_copy_region_1()
909 count != 0; count--, addr1--, addr2--) in bus_space_copy_region_1()
919 bus_size_t off2, size_t count) in bus_space_copy_region_2() argument
927 for (; count != 0; count--, addr1 += 2, addr2 += 2) in bus_space_copy_region_2()
931 for (addr1 += 2 * (count - 1), addr2 += 2 * (count - 1); in bus_space_copy_region_2()
932 count != 0; count--, addr1 -= 2, addr2 -= 2) in bus_space_copy_region_2()
938 for (; count != 0; count--, addr1 += 2, addr2 += 2) in bus_space_copy_region_2()
943 for (addr1 += 2 * (count - 1), addr2 += 2 * (count - 1); in bus_space_copy_region_2()
944 count != 0; count--, addr1 -= 2, addr2 -= 2) in bus_space_copy_region_2()
954 bus_size_t off2, size_t count) in bus_space_copy_region_4() argument
962 for (; count != 0; count--, addr1 += 4, addr2 += 4) in bus_space_copy_region_4()
966 for (addr1 += 4 * (count - 1), addr2 += 4 * (count - 1); in bus_space_copy_region_4()
967 count != 0; count--, addr1 -= 4, addr2 -= 4) in bus_space_copy_region_4()
973 for (; count != 0; count--, addr1 += 4, addr2 += 4) in bus_space_copy_region_4()
978 for (addr1 += 4 * (count - 1), addr2 += 4 * (count - 1); in bus_space_copy_region_4()
979 count != 0; count--, addr1 -= 4, addr2 -= 4) in bus_space_copy_region_4()