Lines Matching refs:ecc_bit
760 u8 ecc_bit[24]; in omap_compare_ecc() local
807 ecc_bit[i] = tmp2_bit[i + 2] ^ comp2_bit[i + 2]; in omap_compare_ecc()
810 ecc_bit[i + 6] = tmp0_bit[i] ^ comp0_bit[i]; in omap_compare_ecc()
813 ecc_bit[i + 14] = tmp1_bit[i] ^ comp1_bit[i]; in omap_compare_ecc()
815 ecc_bit[22] = tmp2_bit[0] ^ comp2_bit[0]; in omap_compare_ecc()
816 ecc_bit[23] = tmp2_bit[1] ^ comp2_bit[1]; in omap_compare_ecc()
819 ecc_sum += ecc_bit[i]; in omap_compare_ecc()
840 find_byte = (ecc_bit[23] << 8) + in omap_compare_ecc()
841 (ecc_bit[21] << 7) + in omap_compare_ecc()
842 (ecc_bit[19] << 6) + in omap_compare_ecc()
843 (ecc_bit[17] << 5) + in omap_compare_ecc()
844 (ecc_bit[15] << 4) + in omap_compare_ecc()
845 (ecc_bit[13] << 3) + in omap_compare_ecc()
846 (ecc_bit[11] << 2) + in omap_compare_ecc()
847 (ecc_bit[9] << 1) + in omap_compare_ecc()
848 ecc_bit[7]; in omap_compare_ecc()
850 find_bit = (ecc_bit[5] << 2) + (ecc_bit[3] << 1) + ecc_bit[1]; in omap_compare_ecc()