Lines Matching defs:par
126 u32 par;
131 par = 0;
148 * needed for calculating rp12, rp14, rp16 and par
209 par ^= tmppar;
250 * This is present in par, because par is now
259 rp2 = (par >> 16);
262 rp3 = par & 0xffff;
266 rp3 = (par >> 16);
269 rp2 = par & 0xffff;
274 /* reduce par to 16 bits then calculate rp1 and rp0 */
275 par ^= (par >> 16);
277 rp0 = (par >> 8) & 0xff;
278 rp1 = (par & 0xff);
280 rp1 = (par >> 8) & 0xff;
281 rp0 = (par & 0xff);
284 /* finally reduce par to 8 bits */
285 par ^= (par >> 8);
286 par &= 0xff;
290 * note that par = rp4 ^ rp5 and due to the commutative property
292 * rp5 = (par ^ rp4);
297 rp5 = (par ^ rp4) & 0xff;
298 rp7 = (par ^ rp6) & 0xff;
299 rp9 = (par ^ rp8) & 0xff;
300 rp11 = (par ^ rp10) & 0xff;
301 rp13 = (par ^ rp12) & 0xff;
302 rp15 = (par ^ rp14) & 0xff;
304 rp17 = (par ^ rp16) & 0xff;
334 (invparity[par & 0xf0] << 7) |
335 (invparity[par & 0x0f] << 6) |
336 (invparity[par & 0xcc] << 5) |
337 (invparity[par & 0x33] << 4) |
338 (invparity[par & 0xaa] << 3) |
339 (invparity[par & 0x55] << 2) |
343 (invparity[par & 0xf0] << 7) |
344 (invparity[par & 0x0f] << 6) |
345 (invparity[par & 0xcc] << 5) |
346 (invparity[par & 0x33] << 4) |
347 (invparity[par & 0xaa] << 3) |
348 (invparity[par & 0x55] << 2) |