Lines Matching refs:ecc_bit
755 u8 ecc_bit[24]; in omap_compare_ecc() local
802 ecc_bit[i] = tmp2_bit[i + 2] ^ comp2_bit[i + 2]; in omap_compare_ecc()
805 ecc_bit[i + 6] = tmp0_bit[i] ^ comp0_bit[i]; in omap_compare_ecc()
808 ecc_bit[i + 14] = tmp1_bit[i] ^ comp1_bit[i]; in omap_compare_ecc()
810 ecc_bit[22] = tmp2_bit[0] ^ comp2_bit[0]; in omap_compare_ecc()
811 ecc_bit[23] = tmp2_bit[1] ^ comp2_bit[1]; in omap_compare_ecc()
814 ecc_sum += ecc_bit[i]; in omap_compare_ecc()
835 find_byte = (ecc_bit[23] << 8) + in omap_compare_ecc()
836 (ecc_bit[21] << 7) + in omap_compare_ecc()
837 (ecc_bit[19] << 6) + in omap_compare_ecc()
838 (ecc_bit[17] << 5) + in omap_compare_ecc()
839 (ecc_bit[15] << 4) + in omap_compare_ecc()
840 (ecc_bit[13] << 3) + in omap_compare_ecc()
841 (ecc_bit[11] << 2) + in omap_compare_ecc()
842 (ecc_bit[9] << 1) + in omap_compare_ecc()
843 ecc_bit[7]; in omap_compare_ecc()
845 find_bit = (ecc_bit[5] << 2) + (ecc_bit[3] << 1) + ecc_bit[1]; in omap_compare_ecc()