This makes sense, if you take a moment to think about it logically...
FOR i = 1 TO 10.
How high does i increment to in the above snippet?
When finished, i = 10 + 1.
Since you're trying to do a FOR loop from 0 to &HFFFFFFFFFFFFFFFF~&&, you're actually counting to &HFFFFFFFFFFFFFFFF~&& + 1 -- which is going to overflow and not work as you're intending.