I guess you mean Ruffini's Rule.
It's also called Briot-Ruffini algorithm.
What it does?
The algorithm consists in reduce a polynomial degree in 1 unit, dividing a polynomial expression by a (x-x0) in the following way:
First, let the polynomial expression be f(x) = a1xn + a2xn-1+ ... + an-1x2 + anx1.
x0 | a1 a2 a3 ... an-1 an
___________________
a1 b c ... z 0
Note that the first coefficient under a1 is also a1 and the one under an is 0.
the values of a1, b, c, ..., z will be the coefficients of the reduced polynomial, g(x) = a1xn-1 + bxn-2+ ... + yx2 + zx1, due to f(x) = g(x) * (x-x0).
The coefficients of g(x), (b, c, ..., y and z) are calculated by multiplying the number at it's left side for x0, then sum it with the number above it. See the following way:
b = a1 * x0 + a2
c = b * x0 + a3
d = c * x0 + a4
...
z = y * x0 + an-1