Lines Matching refs:parity
341 u_int32_t parity = 0x6996; in gpiodcf_mg_probe() local
374 p1 = (parity >> (minute_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe()
375 (parity >> (minute_bits >> 4) & 1); in gpiodcf_mg_probe()
377 p2 = (parity >> (hour_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe()
378 (parity >> (hour_bits >> 4) & 1); in gpiodcf_mg_probe()
380 p3 = (parity >> (day_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe()
381 (parity >> (day_bits >> 4) & 1) ^ in gpiodcf_mg_probe()
382 ((parity >> wday) & 1) ^ (parity >> (month_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe()
383 (parity >> (month_bits >> 4) & 1) ^ in gpiodcf_mg_probe()
384 (parity >> (year_bits & 0x0f) & 1) ^ in gpiodcf_mg_probe()
385 (parity >> (year_bits >> 4) & 1); in gpiodcf_mg_probe()