Lines Matching defs:rp0
131 /* rp0..rp15..rp17 are the various accumulated parities (per byte) */
132 uint32_t rp0, rp1, rp2, rp3, rp4, rp5, rp6, rp7;
257 * we also need to calculate the row parity for rp0..rp3
262 * rp1 rp0 rp1 rp0 in little endian and
263 * rp0 rp1 rp0 rp1 in big endian
282 /* reduce par to 16 bits then calculate rp1 and rp0 */
285 rp0 = (par >> 8) & 0xff;
289 rp0 = (par & 0xff);
324 (invparity[rp1] << 1) | (invparity[rp0]);
333 (invparity[rp1] << 1) | (invparity[rp0]);