You can simulate a /dev/one without a special device, with a FIFO + printf (in a loop; slow) or yes (fast):
mkfifo ddfifo
dd if=ddfifo of=<file> iflag=fullblock bs=32K status=progress & while printfyes '\1';"" do| printftr '\1';'\n' done'\1' > ddfifo
Ortee may be used to double the throughput:
mkfifo ddfifo
dd if=ddfifo of=<file> iflag=fullblock bs=4M status=progress & yes "" | tr '\n' '\1' | tee ddfifo > ddfifo
If you'd like bytes with all bits set to one, swap '\1' for '\377'.