No. It's an Additive Lagged Fibonacci Generator (ALFG)
described by S_n ≡ S_(n-273) + S_(n-607) mod 2^31.
It's the same code used in Plan 9's rand(2).
The comments refer to D. P. Mitchell and J. A. Reeds
(Don Mitchell and Jim Reeds, respectively). Presumably,
they came up with algorithm while working at Bell Labs.
I've never found a paper describing it.
Cheers,
Anthony