Lines Matching refs:ecc_bit
748 u8 ecc_bit[24]; in omap_compare_ecc() local
795 ecc_bit[i] = tmp2_bit[i + 2] ^ comp2_bit[i + 2]; in omap_compare_ecc()
798 ecc_bit[i + 6] = tmp0_bit[i] ^ comp0_bit[i]; in omap_compare_ecc()
801 ecc_bit[i + 14] = tmp1_bit[i] ^ comp1_bit[i]; in omap_compare_ecc()
803 ecc_bit[22] = tmp2_bit[0] ^ comp2_bit[0]; in omap_compare_ecc()
804 ecc_bit[23] = tmp2_bit[1] ^ comp2_bit[1]; in omap_compare_ecc()
807 ecc_sum += ecc_bit[i]; in omap_compare_ecc()
828 find_byte = (ecc_bit[23] << 8) + in omap_compare_ecc()
829 (ecc_bit[21] << 7) + in omap_compare_ecc()
830 (ecc_bit[19] << 6) + in omap_compare_ecc()
831 (ecc_bit[17] << 5) + in omap_compare_ecc()
832 (ecc_bit[15] << 4) + in omap_compare_ecc()
833 (ecc_bit[13] << 3) + in omap_compare_ecc()
834 (ecc_bit[11] << 2) + in omap_compare_ecc()
835 (ecc_bit[9] << 1) + in omap_compare_ecc()
836 ecc_bit[7]; in omap_compare_ecc()
838 find_bit = (ecc_bit[5] << 2) + (ecc_bit[3] << 1) + ecc_bit[1]; in omap_compare_ecc()